/* ===========================================
   L'artisan 2.0 - Styles
   =========================================== */

/* Variables - Thème Sobre & Minimaliste (en accord avec le logo) */
:root {
    --bg-white: #ffffff;
    --bg-light: #f0f0f0;
    --bg-dark-section: #1a1a1a;
    --bg-card: #ffffff;
    --bg-card-hover: #f5f5f5;
    --bg-dark: #1a1a1a;
    --accent-primary: #1a1a1a;
    --accent-primary-light: #e8e8e8;
    --accent-secondary: #525252;
    --accent-secondary-light: #f0f0f0;
    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --text-muted: #737373;
    --text-light: #ffffff;
    --border-subtle: #e0e0e0;
    --border-medium: #d4d4d4;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --gradient-secondary: linear-gradient(135deg, #525252 0%, #404040 100%);
    --shadow-soft: 0 1px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===========================================
   Accessibilité
   =========================================== */

/* Skip Link - visible au focus */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Focus visible amélioré */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--accent-primary);
    outline-offset: 3px;
}

/* Réduction des animations si préférence utilisateur */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ===========================================
   Navigation
   =========================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.logo-version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

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

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

.nav-links a:hover {
    color: var(--text-primary);
}

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

/* Navigation scroll effect */
nav.scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--text-primary);
    padding-left: 1.75rem;
}

.btn-contact {
    padding: 0.7rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--bg-dark);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
}

.desktop-only {
    display: block;
}

/* Menu Mobile (CSS only avec checkbox) */
.menu-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation hamburger -> X */
.menu-checkbox:checked + .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-checkbox:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked + .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay - Caché par défaut */
.mobile-menu {
    display: none;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--text-secondary);
}

.mobile-menu .mobile-cta {
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background: var(--bg-dark);
    color: #ffffff;
    border-radius: 50px;
    font-size: 1rem;
}

.mobile-menu .mobile-cta:hover {
    background: #333333;
}

.mobile-menu-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.menu-checkbox:checked ~ .mobile-menu .mobile-menu-title {
    opacity: 0.6;
    transform: translateY(0);
    transition-delay: 0s;
}

.mobile-menu-divider {
    width: 60px;
    height: 1px;
    background: var(--border-subtle);
    margin: 1.5rem 0;
    opacity: 0;
}

.menu-checkbox:checked ~ .mobile-menu .mobile-menu-divider {
    opacity: 1;
    transition: opacity 0.3s ease 0.35s;
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 3rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Section Illustrations */
.section-illustration {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.section-illustration.left {
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
}

.section-illustration.right {
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
}

.hero .section-illustration.left {
    left: -10%;
}

.hero .section-illustration.right {
    right: -5%;
}

#contact .section-illustration.left {
    left: 5%;
}

#contact .section-illustration.right {
    right: 5%;
}

.hero-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    background: var(--accent-primary-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 0.01em;
}

.hero-baseline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-baseline::before,
.hero-baseline::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--border-medium);
}

.hero-description .highlight {
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(26, 26, 26, 0.15) 60%);
    padding: 0 0.25rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero h1 .highlight {
    color: var(--text-primary);
    position: relative;
    display: inline;
    background: linear-gradient(to top, #e0e0e0 40%, transparent 40%);
    padding: 0 0.1em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Hero bolt icon */
.hero-bolt {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-bolt svg {
    opacity: 0.5;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

/* Buttons */
.btn-primary {
    padding: 1rem 2.25rem;
    background: var(--bg-dark);
    border: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 85, 69, 0.25);
}

.btn-secondary {
    padding: 1rem 2.25rem;
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: var(--bg-white);
}

/* ===========================================
   Sections
   =========================================== */
section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* About / Qui suis-je Section */
.about-section {
    background: var(--bg-light);
    max-width: none;
    padding: 5rem 3rem;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-illustration {
    flex-shrink: 0;
}

.about-illustration svg {
    opacity: 0.9;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    margin-top: 0.75rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.highlight-icon {
    font-size: 1.25rem;
}

.highlight-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

.section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Experience Badges */
.experience-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.experience-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ===========================================
   About / À propos Section
   =========================================== */
.about-full-section {
    position: relative;
    background: var(--bg-dark-section);
    padding: 6rem 3rem;
    max-width: none;
}

.about-full-section .section-tag {
    color: #a0a0a0;
}

.about-full-section .section-title,
.about-full-section .section-description {
    color: var(--text-light);
}

.about-full-section .section-description strong {
    color: #ffffff;
}

.about-full-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Subsections */
.about-subsection {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-align: center;
}

/* Approach Cards in About */
.about-full-section .approach-card {
    background: #252525;
    border-color: #333333;
}

.about-full-section .approach-card:hover {
    background: #2a2a2a;
    border-color: #444444;
}

.about-full-section .approach-card h4,
.about-full-section .approach-card h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-full-section .approach-card p {
    color: #b0b0b0;
}

.about-full-section .approach-icon svg path,
.about-full-section .approach-icon svg line,
.about-full-section .approach-icon svg circle,
.about-full-section .approach-icon svg rect {
    stroke: #ffffff;
}

.about-full-section .approach-icon svg circle[fill="#1a1a1a"] {
    fill: #ffffff;
}

/* Values in About */
.values-subsection {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #333333;
}

.about-full-section .value-item {
    background: #252525;
    border-color: #333333;
}

.about-full-section .value-item:hover {
    background: #2a2a2a;
    border-color: #444444;
}

.about-full-section .value-content h4 {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-full-section .value-content p {
    color: #b0b0b0;
    margin: 0;
}

.about-full-section .value-tag {
    background: #333333;
    color: #a0a0a0;
}

.about-full-section .value-icon svg path,
.about-full-section .value-icon svg line,
.about-full-section .value-icon svg circle {
    stroke: #ffffff;
}

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

.approach-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.approach-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.approach-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===========================================
   Services Section (Fond blanc)
   =========================================== */
#services {
    background: var(--bg-white);
    padding: 6rem 3rem;
    max-width: none;
    position: relative;
    overflow: hidden;
}

#services > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
}

.service-card::after {
    content: '→';
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
    color: var(--accent-primary);
    transform: translateX(4px);
}

.service-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* Values Container */
.values-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.value-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item:hover .value-icon {
    transform: scale(1.05);
}

.value-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.value-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    background: var(--accent-secondary-light);
    color: var(--accent-secondary);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.value-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===========================================
   Quote Section
   =========================================== */
.quote-section {
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    background: var(--bg-light);
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 85, 69, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.quote {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-primary);
}

.quote .code-style {
    color: var(--accent-primary);
}

.quote .comment {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===========================================
   Contact Section
   =========================================== */
#contact {
    background: var(--bg-light);
    padding: 5rem 2rem;
    max-width: none;
    position: relative;
    overflow: hidden;
}

.contact-simple {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

a.contact-card {
    cursor: pointer;
}

a.contact-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-4px);
}

.contact-card svg {
    color: var(--text-secondary);
}

.contact-card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===========================================
   Footer
   =========================================== */
footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-social[aria-label="LinkedIn"]:hover {
    color: #0077b5;
}

.footer-social[aria-label="Instagram"]:hover {
    color: #E4405F;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   Responsive
   =========================================== */

/* Tablette */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    #contact {
        margin: 1.5rem;
        padding: 3rem;
    }

}

/* Mobile */
@media (max-width: 768px) {
    /* About section mobile */
    .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-illustration svg {
        width: 200px;
        height: 200px;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-highlights {
        justify-content: center;
    }

    .about-highlight {
        padding: 0.6rem 1rem;
    }

    .highlight-text {
        font-size: 0.85rem;
    }

    /* Masquer toutes les illustrations en mobile */
    .section-illustration {
        display: none !important;
    }

    /* Navigation */
    nav {
        padding: 0.875rem 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 5rem;
        gap: 0.75rem;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .mobile-menu a {
        font-size: 1.1rem;
        font-weight: 500;
        color: #1a1a1a;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a:active {
        background: #f5f5f5;
    }

    .mobile-menu .mobile-cta {
        margin-top: 1.5rem;
        padding: 1rem 2.5rem;
        background: #1a1a1a;
        color: #ffffff;
        border-radius: 50px;
        font-weight: 600;
    }

    .mobile-menu .mobile-cta:hover,
    .mobile-menu .mobile-cta:active {
        background: #333;
    }

    .mobile-menu-title {
        font-size: 0.7rem !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #888;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .mobile-menu-divider {
        width: 40px;
        height: 1px;
        background: #e0e0e0;
        margin: 1.5rem 0;
    }

    .menu-checkbox:checked ~ .mobile-menu {
        transform: translateX(0);
    }

    /* Hamburger → X animation */
    .menu-checkbox:checked ~ .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-checkbox:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-checkbox:checked ~ .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Nav dropdown hidden on mobile */
    .nav-dropdown-menu {
        display: none !important;
    }

    .menu-toggle {
        z-index: 10000;
    }

    .menu-toggle span {
        transition: all 0.3s ease;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo-version {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 32px;
    }

    .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-baseline {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }

    .hero-baseline::before,
    .hero-baseline::after {
        width: 25px;
    }

    .hero-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 2;
        letter-spacing: 0.02em;
    }

    .hero-bolt {
        margin-bottom: 1.5rem;
    }

    .hero-bolt svg {
        width: 44px;
        height: 44px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px; /* Touch target */
    }

    /* Sections */
    section {
        padding: 3rem 1.25rem;
    }

    #approche,
    #valeurs {
        padding: 3rem 1.25rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-tag {
        font-size: 0.8rem;
    }

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

    .section-description {
        font-size: 1rem;
        line-height: 1.9;
    }

    .experience-badges {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .experience-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Plus d'espacement mobile */
    section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

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

    p {
        line-height: 1.9;
        margin-bottom: 1.5rem;
    }

    h2 {
        margin-bottom: 1.5rem;
    }

    h3 {
        margin-bottom: 1rem;
    }

    .hero-baseline {
        margin-top: 2rem;
    }

    /* Approach Cards */
    .approach-card {
        padding: 1.75rem;
    }

    .approach-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .approach-card h3 {
        font-size: 1.15rem;
    }

    .approach-card p {
        font-size: 0.95rem;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .service-number {
        font-size: 1.75rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    /* Values */
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-content h3,
    .value-content h4 {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 1.15rem;
    }

    .value-content p {
        font-size: 0.95rem;
    }

    /* About full section mobile */
    .about-full-section {
        padding: 3rem 1.25rem;
    }

    .about-subsection {
        margin-top: 3rem;
    }

    .values-subsection {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .subsection-title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Quote */
    .quote-section {
        padding: 3rem 1.25rem;
    }

    .quote {
        font-size: 1.25rem;
    }

    /* Contact */
    #contact {
        padding: 3rem 1.25rem;
    }

    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
        min-height: 100px;
    }

    .contact-card svg {
        width: 28px;
        height: 28px;
    }

    .contact-card-value {
        font-size: 0.9rem;
        word-break: break-all;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-logo img {
        height: 24px;
    }

    .footer-logo span {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* ===========================================
   Pages Prestations - Design amélioré
   =========================================== */
.prestation-hero {
    padding: 10rem 3rem 5rem;
    max-width: none;
    margin: 0;
    background: var(--bg-dark-section);
    position: relative;
    overflow: hidden;
}

.prestation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(80, 80, 80, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.prestation-hero .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.prestation-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.prestation-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.prestation-content {
    padding: 5rem 3rem 6rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
}

.prestation-details {
    display: block;
}

.prestation-icon-large {
    display: none;
}

.prestation-text {
    flex: 1;
}

.prestation-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.prestation-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bg-dark);
    border-radius: 2px;
}

.prestation-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
}

.prestation-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

/* Liste des prestations en cards */
.prestation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.prestation-list li {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.prestation-list li:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.prestation-list li:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.prestation-list li strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prestation-list li strong svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

.prestation-list li span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA amélioré */
.prestation-cta {
    margin-top: 4rem;
    padding: 3.5rem;
    background: var(--bg-dark);
    border: none;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prestation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.prestation-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    position: relative;
}

.prestation-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
}

.prestation-cta .btn-primary {
    background: #ffffff;
    color: var(--bg-dark);
    font-weight: 600;
}

.prestation-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Service card clickable */
a.service-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.service-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

/* Avantages section on prestation pages */
.prestation-avantages {
    margin-top: 4rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.prestation-avantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.prestation-avantages h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.avantage-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.avantage-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.avantage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avantage-icon svg {
    width: 32px;
    height: 32px;
}

.avantage-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.avantage-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Étapes / Process section */
.prestation-process {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

.prestation-process h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--bg-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--bg-dark);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Prestations */
@media (max-width: 768px) {
    .prestation-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .prestation-hero h1 {
        font-size: 1.75rem;
    }

    .prestation-intro {
        font-size: 1.05rem;
    }

    .prestation-content {
        padding: 3rem 1.25rem 4rem;
    }

    .prestation-text h2 {
        font-size: 1.35rem;
    }

    .prestation-text h3 {
        font-size: 1.15rem;
        margin-top: 2.5rem;
    }

    .prestation-list {
        grid-template-columns: 1fr;
    }

    .prestation-cta {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
        border-radius: 16px;
    }

    .prestation-cta h3 {
        font-size: 1.35rem;
    }

    .prestation-avantages {
        padding: 2.5rem 1.25rem;
        margin-top: 3rem;
        border-radius: 16px;
    }

    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .avantage-item {
        padding: 1.25rem;
    }

    .prestation-process {
        margin-top: 3rem;
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

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

    .process-step {
        gap: 1rem;
    }
}

/* Très petit mobile */
@media (max-width: 375px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .logo-version {
        font-size: 0.8rem;
    }

    .logo-img {
        height: 28px;
    }

    .btn-contact {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 4.5rem 1rem 2rem;
    }


    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-tag {
        font-size: 0.75rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    #approche,
    #valeurs {
        padding: 2.5rem 1rem;
    }

    #contact {
        margin: 0.75rem;
        padding: 1.5rem 1.25rem;
    }
}

/* Service badge coming soon */
.service-badge.coming-soon {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    border: 1px solid var(--border-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    vertical-align: middle;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .service-badge.coming-soon {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        width: fit-content;
    }
}

/* Prestation badge coming soon */
.prestation-badge.coming-soon {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
    margin-left: 0.75rem;
}

/* Prestation notice */
.prestation-notice {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

