
/* ============================================
   CSS de index-standalone.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #00D9FF;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   CSS de services-final.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   BORDURES DÉGRADÉES UNIVERSELLES
   ============================================ */

.offer-card::before,
.example-card::before,
.guide-card::before,
.project-card::before,
.pricing-card::before,
.faq-item-small::before,
.contact-method::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover::before,
.example-card:hover::before,
.guide-card:hover::before,
.project-card:hover::before,
.pricing-card:hover::before,
.faq-item-small:hover::before,
.contact-method:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

/* ============================================
   CSS de portfolio-standalone.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   GUIDES & ACTUALITÉ PAGE
   ============================================ */

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

.guide-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.guide-card:hover::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    color: #00D9FF;
}

.guide-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.guide-date,
.guide-readtime {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

.portfolio-filter {
    padding: 3rem 0;
    background: rgba(0, 217, 255, 0.02);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.4);
    color: #00D9FF;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(154, 91, 255, 0.2) 100%);
    border-color: #00D9FF;
    color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.portfolio-grid {
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}


.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.project-card:hover::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(154, 91, 255, 0.05) 100%);
}

.mock-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.discord-mock {
    color: #5865F2;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
}

.fivem-mock {
    color: #F40552;
    background: radial-gradient(circle, rgba(244, 5, 82, 0.1) 0%, transparent 70%);
}

.web-mock {
    color: #00D9FF;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.project-card:hover .mock-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.project-card:hover .view-project {
    transform: translateY(0);
}

.view-project:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.project-info {
    padding: 2rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.project-stat i {
    color: #00D9FF;
}

/* Hidden state pour le filtre */
.project-card.hidden {
    display: none;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ============================================
   BORDURES DÉGRADÉES UNIVERSELLES
   ============================================ */

.offer-card::before,
.example-card::before,
.guide-card::before,
.project-card::before,
.pricing-card::before,
.faq-item-small::before,
.contact-method::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover::before,
.example-card:hover::before,
.guide-card:hover::before,
.project-card:hover::before,
.pricing-card:hover::before,
.faq-item-small:hover::before,
.contact-method:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

/* ============================================
   CSS de boutique-standalone.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   GUIDES & ACTUALITÉ PAGE
   ============================================ */

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

.guide-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.guide-card:hover::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    color: #00D9FF;
}

.guide-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.guide-date,
.guide-readtime {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BOUTIQUE PAGE STYLES
   ============================================ */

.pricing-section {
    padding: 6rem 0;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 1rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    position: relative;
    z-index: 10;
    align-items: center;
    gap: 0.75rem;
}

.pricing-tab i {
    font-size: 1.25rem;
}

.pricing-tab:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: #00D9FF;
    transform: translateY(-3px);
}

.pricing-tab.active {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(154, 91, 255, 0.2) 100%);
    border-color: #00D9FF;
    color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}


.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.pricing-card:hover::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.pricing-card.featured {
    border-color: #00D9FF;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15);
}

.pricing-card.featured::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.pricing-card.free-card {
    border-color: #10b981;
}


.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.pricing-badge.free-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.free-card .pricing-name {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #00D9FF;
    line-height: 1;
}

.pricing-card.free-card .price-amount {
    color: #10b981;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features li i {
    margin-top: 0.25rem;
    font-size: 1rem;
}

.pricing-features li .fa-check {
    color: #00D9FF;
}

.pricing-card.free-card .pricing-features li .fa-check {
    color: #10b981;
}

.pricing-features li .fa-times {
    color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid #00D9FF;
    color: #00D9FF;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    border-color: transparent;
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tabs {
        flex-direction: column;
    }
    
    .pricing-tab {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BORDURES DÉGRADÉES UNIVERSELLES
   ============================================ */

.offer-card::before,
.example-card::before,
.guide-card::before,
.project-card::before,
.pricing-card::before,
.faq-item-small::before,
.contact-method::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover::before,
.example-card:hover::before,
.guide-card:hover::before,
.project-card:hover::before,
.pricing-card:hover::before,
.faq-item-small:hover::before,
.contact-method:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

/* ============================================
   CSS de guides-standalone.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   GUIDES & ACTUALITÉ PAGE
   ============================================ */

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

.guide-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guide-card > * {
    position: relative;
    z-index: 1;
}


.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.guide-card:hover::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    color: #00D9FF;
}

.guide-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.guide-date,
.guide-readtime {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BORDURES DÉGRADÉES UNIVERSELLES
   ============================================ */

.offer-card::before,
.example-card::before,
.guide-card::before,
.project-card::before,
.pricing-card::before,
.faq-item-small::before,
.contact-method::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover::before,
.example-card:hover::before,
.guide-card:hover::before,
.project-card:hover::before,
.pricing-card:hover::before,
.faq-item-small:hover::before,
.contact-method:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

/* ============================================
   MODAL GUIDE DÉTAIL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

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

.modal-wrapper {
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
}

.modal-content {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

/* Supprimer l'ancien ::after */

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

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border);
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00D9FF;
    color: #00D9FF;
    transform: rotate(90deg);
}

.modal-title-group {
    flex: 1;
}

.modal-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.modal-section p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-section ul {
    list-style: none;
    margin-left: 0;
}

.modal-section li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.modal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00D9FF;
}

.modal-code {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.875rem;
    color: var(--text);
    overflow-x: auto;
    margin: 1rem 0;
}

.guide-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* ============================================
   CSS de contact-standalone.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   GUIDES & ACTUALITÉ PAGE
   ============================================ */

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

.guide-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.guide-card:hover::before {
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    color: #00D9FF;
}

.guide-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.guide-date,
.guide-readtime {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: var(--dark-light);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(154, 91, 255, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.5rem;
}

.method-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.method-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.method-content p a {
    color: #00D9FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content p a:hover {
    color: #9A5BFF;
}

.method-time {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.contact-company {
    margin-bottom: 2.5rem;
}

.contact-company h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.company-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.company-details li i {
    color: #00D9FF;
    width: 20px;
}

.social-contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-light);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    position: relative;
    overflow: visible; /* Important pour voir les coins */
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
   /* border-radius: var(--radius-xl);*/
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 3 57 L 3 3 L 57 3' stroke='rgba(0,217,255,1)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 57 3 L 57 57 L 3 57' stroke='rgba(154,91,255,1)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 3 3 L 57 3 L 57 57' stroke='rgba(154,91,255,1)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 57 57 L 3 57 L 3 3' stroke='rgba(0,217,255,1)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-position: top left, bottom right, top right, bottom left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* S'assurer que le contenu du formulaire est au-dessus */
.contact-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D9FF;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #00D9FF;
}

.btn-block {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* FAQ Contact */
.faq-contact {
    padding: 6rem 0;
    background: rgba(0, 217, 255, 0.02);
}

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

.faq-item-small {
    padding: 2rem;
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.faq-item-small:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item-small h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.faq-item-small p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    font-size: 2.5rem;
    color: #00D9FF;
}

.trust-badge span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .faq-grid-small {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BORDURES DÉGRADÉES UNIVERSELLES
   ============================================ */

.offer-card::before,
.example-card::before,
.guide-card::before,
.project-card::before,
.pricing-card::before,
.faq-item-small::before,
.contact-method::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.offer-card:hover::before,
.example-card:hover::before,
.guide-card:hover::before,
.project-card:hover::before,
.pricing-card:hover::before,
.faq-item-small:hover::before,
.contact-method:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

/* ============================================
   CSS de faq-standalone.html
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #00d9ff;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --gradient-primary: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-1: linear-gradient(50deg, rgba(0, 217, 255, 1) 0%, rgba(154, 91, 255, 1) 100%);
    --gradient-2: linear-gradient(50deg, rgba(154, 91, 255, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --gradient-3: linear-gradient(50deg, rgba(16, 185, 129, 1) 0%, rgba(0, 217, 255, 1) 100%);
    --gradient-4: linear-gradient(50deg, rgba(245, 158, 11, 1) 0%, rgba(236, 72, 153, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    color: var(--text);
}

.logo-dev {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-nav-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-nav-secondary:hover {
    background: var(--dark-lighter);
    color: var(--text);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 2px solid transparent;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1), rgba(0, 217, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes border-rotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* SECTIONS */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-2xl);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* WHAT WE OFFER */
.what-we-offer {
    background: var(--dark-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* WORKFLOW */
.workflow {
    background: var(--dark);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left {
    position: sticky;
    top: 120px;
}

.workflow-image-placeholder {
    width: 100%;
    height: 700px;
    background: var(--dark-lighter);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.placeholder-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 90px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
}

.step-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    transition: var(--transition);
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes blob-morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.workflow-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.step-icon-wrapper.gradient-1 { background: var(--gradient-1); }
.step-icon-wrapper.gradient-2 { background: var(--gradient-2); }
.step-icon-wrapper.gradient-3 { background: var(--gradient-3); }
.step-icon-wrapper.gradient-4 { background: var(--gradient-4); }

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES DETAILED */
.services-detailed {
    background: var(--dark-light);
}

.service-category {
    margin-bottom: 5rem;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
}

.category-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.category-icon.fivem {
    background: linear-gradient(135deg, #f40552 0%, #ff6b35 100%);
}

.category-icon.web {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
    border-color: rgba(154, 91, 255, 0.3);
}

.example-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.example-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* TECHNOLOGIES */
.technologies {
    background: var(--dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 1)
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-content {
        grid-template-columns: 1fr;
    }
    .workflow-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
    }
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .workflow-image-placeholder {
        height: 400px;
    }
    
    .placeholder-text {
        font-size: 2rem;
    }
}
/* ============================================
   NOS SERVICES (Layout côte-à-côte)
   ============================================ */

.our-services-section {
    padding: 8rem 0;
    background: var(--dark);
}

.our-services-section .section-title {
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-detailed-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-detailed-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 1.25rem;
}

.feature-detailed-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-detailed-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Code Preview Window */
.code-preview-window {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.code-preview-window:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.code-preview-header {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(154, 91, 255, 0.1) 100%);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #ef4444;
}

.code-dot.yellow {
    background: #f59e0b;
}

.code-dot.green {
    background: #10b981;
}

.code-filename {
    font-size: 0.875rem;
    color: #00D9FF;
    margin-left: auto;
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-weight: 600;
}

.code-preview-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(154, 91, 255, 0.03) 100%);
}

.code-preview-body pre {
    margin: 0;
}

.code-preview-body code {
    font-family: 'Fira Code', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* Code Syntax Highlighting avec couleurs cyan/violet */
.code-keyword {
    color: #9A5BFF;
    font-weight: 600;
}

.code-function {
    color: #00D9FF;
    font-weight: 500;
}

.code-string {
    color: #a8e6cf;
}

.code-number {
    color: #ffd97d;
}

.code-comment {
    color: #64748b;
    font-style: italic;
}

.code-tag {
    color: #9A5BFF;
}

.code-attr {
    color: #00D9FF;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 4rem 0;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .code-preview-body {
        padding: 1rem;
    }
    
    .code-preview-body code {
        font-size: 0.75rem;
    }
}

/* ============================================
   TYPING ANIMATION FOR CODE
   ============================================ */

.code-preview-body code {
    display: block;
    white-space: pre;
}

.code-line {
    opacity: 0;
    animation: typeLine 0.05s forwards;
}

@keyframes typeLine {
    to {
        opacity: 1;
    }
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00D9FF;
    animation: blink 0.7s infinite;
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Page Header amélioré */
.page-header {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse-header 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

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

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: #00D9FF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
    padding: 6rem 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 0.75rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.faq-category-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: #00D9FF;
    transform: translateY(-3px);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(154, 91, 255, 0.2) 100%);
    border-color: #00D9FF;
    color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.faq-item {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.faq-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    color: #00D9FF;
}

.faq-icon {
    font-size: 1.25rem;
    color: #00D9FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer-content ul {
    list-style: none;
    margin: 1rem 0;
}

.faq-answer-content li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-answer-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00D9FF;
}

.faq-answer-content a {
    color: #00D9FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer-content a:hover {
    color: #9A5BFF;
}

/* Contact CTA dans FAQ */
.faq-cta {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem;
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
}

.faq-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00D9FF 0%, #9A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
    }
    
    .faq-category-btn {
        width: 100%;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Bordures dégradées universelles */
.offer-card::before,
.example-card::before,
.guide-card::before,
.project-card::before,
.pricing-card::before,
.faq-item-small::before,
.contact-method::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.offer-card:hover::before,
.example-card:hover::before,
.guide-card:hover::before,
.project-card:hover::before,
.pricing-card:hover::before,
.faq-item-small:hover::before,
.contact-method:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 1), rgba(154, 91, 255, 1));
}