/* ==================== VARIABLES & RESET ==================== */
:root {
    --deep-blue: #0A0A15;
    --dark-blue: #0A1A4A;
    --indigo: #3A2DCE;
    --violet: #7B54F7;
    --cyan: #00D4FF;
    --white: #FFFFFF;
    --gray-100: rgba(255, 255, 255, 0.95);
    --gray-200: rgba(255, 255, 255, 0.8);
    --gray-300: rgba(255, 255, 255, 0.6);
    --gray-400: rgba(255, 255, 255, 0.4);
    --card-bg: rgba(15, 15, 35, 0.6);
    --card-border: rgba(123, 84, 247, 0.15);
    --card-border-hover: rgba(0, 212, 255, 0.4);
    --bg-gradient: linear-gradient(135deg, #0A0A15 0%, #0A1A4A 50%, #0f0f23 100%);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--deep-blue);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== ÉTOILES CSS ==================== */
#stars-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--bg-gradient);
    pointer-events: none;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: var(--white);
    animation: twinkle 3s ease-in-out infinite alternate;
    will-change: opacity;
}

.star--cyan {
    background: var(--cyan);
    box-shadow: 0 0 4px var(--cyan);
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .star { animation: none; opacity: 0.5; }
    .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==================== LAYOUT ==================== */
.content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== FADE UP ANIMATION ==================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 21, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--card-border);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition);
}

.logo:hover { opacity: 0.85; }

.logo-image {
    height: 36px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta:hover {
    box-shadow: 0 4px 16px rgba(123, 84, 247, 0.4);
}

.nav-links .nav-client {
    border: 1px solid var(--cyan);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    color: var(--cyan);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.nav-links .nav-client::after { display: none; }

.nav-links .nav-client:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--white);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1010;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 0 auto;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn span:nth-child(1) { transform: translateY(-7px); }
.mobile-menu-btn span:nth-child(3) { transform: translateY(7px); }

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translateY(0); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translateY(0); }

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 990;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border-radius: 10px;
    padding: 0.85rem 1.8rem;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 84, 247, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(123, 84, 247, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gray-200);
    border: 1px solid var(--gray-400);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1.1rem;
}

/* ==================== SECTION COMMON ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== HERO ==================== */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.hero-badge i {
    color: var(--cyan);
    font-size: 0.75rem;
}

/* Hero code block */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-code-block {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--card-border);
}

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

.code-dot--red { background: #ff5f57; }
.code-dot--yellow { background: #febc2e; }
.code-dot--green { background: #28c840; }

.code-filename {
    margin-left: 0.8rem;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-family: monospace;
}

.code-body {
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    font-family: 'Courier New', monospace;
    color: var(--gray-200);
}

.code-keyword { color: #c678dd; }
.code-var { color: #e06c75; }
.code-prop { color: var(--cyan); }
.code-string { color: #98c379; }

.code-cursor {
    animation: blink 1s step-end infinite;
    color: var(--cyan);
}

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

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    padding: 3rem 0;
    position: relative;
}

.social-proof::before,
.social-proof::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border-hover), transparent);
}

.social-proof::before { top: 0; }
.social-proof::after { bottom: 0; }

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.proof-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 0.6rem;
}

.proof-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.service-card--featured {
    border-color: var(--card-border-hover);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: var(--white);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--cyan);
    font-size: 1.3rem;
    transition: background var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: rgba(0, 212, 255, 0.15);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.service-card > p {
    color: var(--gray-300);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--gray-200);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-features i {
    color: var(--cyan);
    font-size: 0.7rem;
}

/* ==================== VALEURS ==================== */
.valeurs {
    padding: 5rem 0;
    background: rgba(10, 26, 74, 0.15);
}

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

.valeur-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.valeur-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.08);
}

.valeur-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.3rem;
}

.valeur-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.valeur-card p {
    color: var(--gray-200);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==================== PROCESS ==================== */
.process {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    opacity: 0.3;
    z-index: 1;
}

.process-step:last-child .step-line { display: none; }

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.5;
}

/* ==================== CTA FINAL ==================== */
.cta-final {
    padding: 5rem 0;
}

.cta-card {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(58, 45, 206, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 15, 0.95);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 0.8rem;
}

.footer-logo .logo-image {
    height: 32px;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.88rem;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--gray-300);
    font-size: 0.95rem;
    transition: all var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.82rem;
}

/* ==================== PAGE CONTACT ==================== */
.contact-page {
    padding: 4rem 0 6rem;
}

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

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--gray-300);
}

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

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

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--cyan);
    font-size: 1.2rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-card a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover { text-decoration: underline; }

.contact-card p {
    color: var(--gray-300);
    margin: 0.3rem 0;
    font-size: 0.92rem;
}

.contact-why {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.contact-why h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.contact-why ul { list-style: none; }

.contact-why li {
    color: var(--gray-200);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
}

.contact-why i {
    color: var(--cyan);
    margin-top: 0.2rem;
}

.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

#contact-form { max-width: 100%; }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    color: var(--gray-200);
    font-weight: 500;
    font-size: 0.9rem;
}

.required { color: #ff6b6b; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300D4FF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--deep-blue);
    color: var(--white);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: transform var(--transition), box-shadow var(--transition);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 84, 247, 0.4);
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.92rem;
}

.form-message.success {
    background: rgba(0, 255, 65, 0.08);
    color: #00FF41;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.form-message.error {
    background: rgba(255, 0, 68, 0.08);
    color: #FF0044;
    border: 1px solid rgba(255, 0, 68, 0.2);
}

/* ==================== PAGE TARIFS ==================== */
.tarifs-page { padding: 4rem 0 6rem; }

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

.tarifs-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.tarifs-header p {
    font-size: 1.1rem;
    color: var(--gray-300);
}

.section-package { margin-bottom: 4rem; }

.section-package .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.section-package .section-subtitle { text-align: left; }

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--card-border-hover);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: var(--white);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.pricing-description {
    color: var(--gray-300);
    font-size: 0.9rem;
}

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

.pricing-features li {
    color: var(--gray-200);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.pricing-features .fa-check { color: var(--cyan); }
.pricing-features .fa-times { color: var(--gray-400); }

.pricing-button {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 84, 247, 0.4);
}

.pricing-savings {
    display: inline-block;
    background: linear-gradient(135deg, #FF0044, #FF6B6B);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.pricing-price { margin-bottom: 0.5rem; }

.pricing-cta-note {
    font-size: 0.88rem;
    color: var(--gray-300);
    text-align: center;
    margin-top: 0.8rem;
    font-style: italic;
}

.special-offer {
    background: rgba(0, 255, 65, 0.06);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: var(--radius);
    padding: 0.8rem;
    margin-top: 0.8rem;
    text-align: center;
}

.special-offer h4 {
    color: #00FF41;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

/* Development packages */
.development-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.dev-package {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
}

.dev-package.featured {
    border-color: var(--card-border-hover);
}

.dev-package:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.package-header {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--card-border);
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.package-price { color: var(--gray-300); }
.package-price .price { font-size: 1.8rem; }

.package-content h4 {
    color: var(--cyan);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.package-content ul { list-style: none; }

.package-content li {
    color: var(--gray-200);
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.package-content li:before {
    content: "•";
    color: var(--cyan);
    position: absolute;
    left: 0;
}

/* Additional services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.service-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.service-price {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-item ul {
    list-style: none;
    text-align: left;
}

.service-item li {
    color: var(--gray-200);
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.85rem;
}

.service-item li:before {
    content: "✓";
    color: var(--cyan);
    position: absolute;
    left: 0;
}

.tarifs-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(58, 45, 206, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.tarifs-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.tarifs-cta p {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.premium-offer { position: relative; overflow: hidden; }

.premium-badge {
    position: absolute;
    right: -35px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: white;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* ==================== PAGE PORTFOLIO ==================== */
.portfolio-page { padding: 4rem 0 6rem; }

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.portfolio-header p {
    font-size: 1.1rem;
    color: var(--gray-300);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--gray-300);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    color: var(--white);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.portfolio-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 21, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tech {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-tech span {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid var(--cyan);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--cyan);
}

.portfolio-content { padding: 1.2rem; }

.portfolio-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.portfolio-content p {
    color: var(--gray-300);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.portfolio-stats {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.6rem;
}

.portfolio-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--gray-400);
}

.portfolio-stats i { color: var(--cyan); }

.clients-section { margin-bottom: 4rem; }

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

.client-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.client-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.client-logo {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--cyan);
    font-size: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.client-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.client-card > p {
    color: var(--gray-300);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.client-service {
    display: inline-block;
    background: rgba(123, 84, 247, 0.15);
    color: var(--violet);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.hosting-clients { margin-bottom: 4rem; }

.hosting-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--cyan);
    font-size: 1.2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    color: var(--gray-300);
    font-size: 0.85rem;
}

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

.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    font-size: 3rem;
    color: rgba(123, 84, 247, 0.15);
    font-family: serif;
}

.testimonial p {
    color: var(--gray-200);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
}

.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { color: var(--white); font-size: 1rem; }
.testimonial-author span { color: var(--gray-400); font-size: 0.82rem; }

.portfolio-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(58, 45, 206, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}

.portfolio-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.portfolio-cta p {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== PAGE À PROPOS ==================== */
.about-page { padding: 4rem 0 6rem; }

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

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-header p {
    font-size: 1.1rem;
    color: var(--gray-300);
}

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

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.story-content p {
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

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

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

.story-stat h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat p {
    color: var(--gray-400);
    font-size: 0.82rem;
    margin: 0;
}

.story-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image img,
.story-image .story-image-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.vision-section { margin-bottom: 4rem; }

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

.vision-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.vision-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.vision-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--cyan);
    font-size: 1.3rem;
}

.vision-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.vision-card p {
    color: var(--gray-300);
    line-height: 1.5;
    font-size: 0.9rem;
}

.team-section { margin-bottom: 4rem; }

.team-member {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    align-items: center;
}

.member-photo { text-align: center; }

.photo-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.member-role {
    color: var(--cyan);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.member-bio {
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.member-skills span {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--cyan);
}

.member-social {
    display: flex;
    gap: 0.6rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--gray-300);
    text-decoration: none;
    transition: all var(--transition);
}

.member-social a:hover {
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.why-choose { margin-bottom: 4rem; }

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

.reason-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
}

.reason-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.reason-number {
    position: absolute;
    top: -16px;
    left: 16px;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.reason-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--white);
    padding-top: 0.6rem;
}

.reason-card p {
    color: var(--gray-300);
    line-height: 1.5;
    font-size: 0.9rem;
}

.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(58, 45, 206, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.about-cta p {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== TARIFS LATER ==================== */
.coming-soon-section {
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon-content {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.coming-soon-content:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coming-soon-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1.2rem;
}

.coming-soon-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.coming-soon-subtitle {
    font-size: 1.1rem;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    color: var(--cyan);
    font-weight: 500;
    font-size: 0.9rem;
}

.services-preview { margin-bottom: 3rem; }

.services-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

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

.preview-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}

.preview-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.preview-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--cyan);
    font-size: 1.3rem;
}

.preview-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.preview-card > p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.preview-features { list-style: none; }

.preview-features li {
    color: var(--gray-200);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.preview-features i {
    color: var(--cyan);
    font-size: 0.75rem;
}

/* Direct contact */
.direct-contact { margin-bottom: 3rem; }

.contact-promo {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-promo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-promo h3 i { color: var(--cyan); }

.contact-promo > p {
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.contact-options--3cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Option cards (vertical, cliquables) */
.contact-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-option-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.option-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--cyan);
    font-size: 1.4rem;
    transition: background var(--transition);
}

.contact-option-card:hover .option-card-icon {
    background: rgba(0, 212, 255, 0.15);
}

.contact-option-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex: 1;
}

.option-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cyan);
    transition: gap var(--transition);
}

.contact-option-card:hover .option-card-link {
    gap: 0.7rem;
}

.contact-option {
    background: rgba(10, 26, 74, 0.2);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.2rem;
    transition: all var(--transition);
}

.contact-option:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
}

.option-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: var(--cyan);
    font-size: 1.1rem;
}

.option-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.option-content p {
    color: var(--gray-300);
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.option-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all var(--transition);
}

.option-button:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-1px);
}

.contact-assurance {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.contact-assurance h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-assurance h4 i { color: var(--cyan); }
.contact-assurance ul { list-style: none; }

.contact-assurance li {
    color: var(--gray-200);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-assurance li i {
    color: #00FF41;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.main-cta {
    background: linear-gradient(135deg, rgba(58, 45, 206, 0.15) 0%, rgba(0, 212, 255, 0.06) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.cta-content > p {
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 420px;
    margin: 0 auto 1.5rem;
}

.cta-button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 84, 247, 0.4);
}

.cta-button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    color: var(--gray-200);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

.contact-info p {
    color: var(--gray-300);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--cyan);
    text-decoration: none;
}

.contact-info a:hover { text-decoration: underline; }

/* ==================== 404 PAGE ==================== */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* ==================== PAGES LÉGALES (mentions, privacy, cgv) ==================== */
.legal-section {
    padding: 4rem 0 6rem;
}

.legal-section > .container > h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
}

.legal-content > p:first-child {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-content h2::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--cyan), var(--violet));
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin: 1.5rem 0 0.6rem;
}

.legal-content p {
    color: var(--gray-200);
    line-height: 1.75;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--white);
    font-weight: 600;
}

.legal-content em {
    color: var(--gray-400);
}

.legal-content ul {
    list-style: none;
    margin: 0.5rem 0 1.2rem;
    padding: 0;
}

.legal-content li {
    color: var(--gray-200);
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    padding-left: 1.4rem;
    position: relative;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}

.legal-content li strong {
    color: var(--gray-100);
}

/* Table privacy */
.legal-content table,
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.85rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.legal-content table thead,
.privacy-table thead {
    background: rgba(0, 212, 255, 0.08);
}

.legal-content table th,
.privacy-table th {
    color: var(--cyan);
    font-weight: 600;
    text-align: left;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-content table td,
.privacy-table td {
    color: var(--gray-200);
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--card-border);
    vertical-align: top;
}

.legal-content table tr:last-child td,
.privacy-table tr:last-child td {
    border-bottom: none;
}

.legal-content table tr:hover td,
.privacy-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive legal */
@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem 1.2rem;
    }

    .legal-section > .container > h1 {
        font-size: 1.8rem;
    }

    .legal-content h2 {
        font-size: 1.05rem;
    }

    .legal-content table,
    .privacy-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Compat legacy class */
.legal-page {
    padding: 4rem 0 6rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
}

.legal-page h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--cyan);
}

.legal-page p,
.legal-page li {
    color: var(--gray-200);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-subtitle { margin: 0 auto 2rem; }

    .hero-ctas { justify-content: center; }

    .hero-badges { justify-content: center; }

    .hero-visual { order: -1; }

    .hero-code-block { max-width: 400px; }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step-line { display: none; }

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

    .about-story {
        grid-template-columns: 1fr;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(8, 8, 20, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition);
        z-index: 1000;
        border-left: 1px solid var(--card-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
    }

    .nav-links a::after { display: none; }

    .nav-links .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-overlay {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0 3rem;
    }

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

    .hero-code-block {
        max-width: 100%;
    }

    .code-body {
        font-size: 0.78rem;
        padding: 1rem;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .valeur-card {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .development-packages,
    .portfolio-grid,
    .vision-cards,
    .reasons-grid,
    .clients-grid,
    .hosting-stats {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .story-image { height: 300px; }

    .photo-placeholder {
        width: 160px;
        height: 160px;
        font-size: 3rem;
    }

    .coming-soon-content h2 { font-size: 1.8rem; }
    .preview-grid { grid-template-columns: 1fr; }
    .contact-options,
    .contact-options--3cols { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.95rem; }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

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

    .proof-number { font-size: 1.8rem; }

    .logo-image {
        height: 30px;
    }

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

    .contact-header h1,
    .tarifs-header h1,
    .portfolio-header h1,
    .about-header h1 {
        font-size: 1.8rem;
    }

    .story-image { height: 220px; }

    .coming-soon-content { padding: 2rem 1rem; }
    .main-cta { padding: 2rem 1rem; }

    .portfolio-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}
