/* ═══════════════════════════════════════════
   YOANN RABET — DIRECTEUR RETAIL
   5 Visual Themes + Animations
   ═══════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    transition: background-color 0.6s ease, color 0.6s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Reveal Animations ────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Switcher Panel ───────────────────────── */
.switcher-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px 14px;
    border-radius: 16px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.switcher-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sw-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif;
    margin-right: 2px;
    white-space: nowrap;
}
.sw-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.12);
    margin: 0 12px;
}
.sw-btns {
    display: flex;
    gap: 4px;
}
.sw-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 9px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}
.sw-btn:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: scale(1.08);
}
.sw-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.08);
}

/* ── Hero ─────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg-img {
    transform: scale(1.12);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 40px;
}
.hero-photo-wrapper {
    margin-bottom: 28px;
}
.hero-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.hero-photo:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-name {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}
.hero-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 300;
}
.hero-tag-sep { opacity: 0.4; }
.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 0.88rem;
}
.hero-location {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-availability {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
.hero-surtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 12px;
}
.hero-impact {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.65);
}
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta:hover {
    transform: translateY(-2px);
}
.hero-cta svg {
    transition: transform 0.3s ease;
}
.hero-cta:hover svg {
    transform: translateX(4px);
}
.hero-cta-secondary {
    font-size: 0.88rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 48px;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ── Main Nav ─────────────────────────────── */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: opacity 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover { opacity: 0.8; }

/* Mobile burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span {
    width: 22px;
    height: 1.5px;
    transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu a {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.mobile-menu a:hover { opacity: 0.6; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
}

/* ── Hero Quote ───────────────────────────── */
.hero-quote {
    margin-top: 48px;
    padding: 28px 40px;
    max-width: 750px;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.65;
    text-align: center;
    color: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-style: italic;
}
.hero-quote-mark {
    font-style: normal;
    font-weight: 700;
    font-size: 1.2em;
}
.v5 .hero-quote-mark { color: #ff6b4a; }
.v1 .hero-quote-mark { color: #c9a84c; }
.v3 .hero-quote-mark { color: #a78bfa; }

@media (max-width: 480px) {
    .hero-quote { padding: 20px 16px; margin-top: 28px; }
}

/* ── Sections ─────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.section-header {
    margin-bottom: 56px;
}
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ── About ─────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}
.about-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
}
.about-img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-wrapper:hover img {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .about-grid, .vision-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-img-wrapper img { height: 260px; }
    .vision-image { display: none; }
    .vision-grid { grid-template-columns: 1fr !important; }
    .vision-text { order: 1; width: 100%; }
    .vision-conviction { margin-top: 24px; padding: 24px; width: 100%; }
    .vision-lead { font-size: 1.05rem; }
}

/* ── Vision ────────────────────────────────── */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 8px;
    opacity: 0.6;
}
.section-subtitle-light {
    color: rgba(255,255,255,0.6);
    opacity: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
}
.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
.vision-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.vision-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.vision-conviction {
    margin-top: 32px;
    padding: 28px;
    border-radius: 14px;
    position: relative;
}
.conviction-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.conviction-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0 !important;
}

/* ── Offre ─────────────────────────────────── */
.offre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.offre-card {
    padding: 36px 28px;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}
.offre-card:hover {
    transform: translateY(-6px);
}
.offre-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.offre-card:hover .offre-icon {
    transform: scale(1.08) rotate(-3deg);
}
.offre-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    width: fit-content;
}
.offre-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.offre-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}
.offre-livrable {
    padding-top: 16px;
    border-top: 1px solid rgba(128,128,128,0.15);
    font-size: 0.82rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.livrable-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.offre-note {
    font-size: 0.88rem;
    text-align: center;
    font-style: italic;
    opacity: 0.6;
}

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

/* ── Parcours (compact) ───────────────────── */
.parcours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.parcours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.parcours-list li {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
}
.parcours-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid;
}
.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

/* ── Timeline ─────────────────────────────── */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.timeline-item {
    position: relative;
    padding-left: 40px;
}
.timeline-line {
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: -40px;
    width: 1px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-dot {
    position: absolute;
    left: 4px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
}
.timeline-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.timeline-card:hover {
    transform: translateY(-4px);
}
.tc-image {
    height: 200px;
    overflow: hidden;
}
.tc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.timeline-card:hover .tc-image img {
    transform: scale(1.08);
}
.tc-body {
    padding: 28px;
}
.tc-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tc-date {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tc-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.tc-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.tc-company {
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 14px;
}
.tc-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.tc-metrics {
    display: flex;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.tc-metric {
    display: flex;
    flex-direction: column;
}
.tc-metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.tc-metric-label {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tc-tags span {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease;
}
.tc-tags span:hover {
    transform: translateY(-1px);
}

/* ── Skills ────────────────────────────────── */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.skill-card {
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.skill-card:hover {
    transform: translateY(-6px);
}
.skill-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.skill-card:hover .skill-icon {
    transform: scale(1.08) rotate(-3deg);
}
.skill-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.skill-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
}
.skill-bar {
    height: 3px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.skill-fill {
    height: 100%;
    border-radius: 2px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.skill-card.visible .skill-fill,
.skill-card.in-view .skill-fill {
    width: var(--fill-width, 0%);
}

@media (max-width: 900px) {
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .skills-grid { grid-template-columns: 1fr; }
}

/* ── Stats / Chiffres ─────────────────────── */
.section-dark {
    position: relative;
    overflow: hidden;
}
.section-bg-image {
    position: absolute;
    inset: 0;
}
.section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-card:hover {
    transform: translateY(-6px);
}
.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    display: inline;
}
.stat-plus, .stat-unit {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
}
.stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── Testimonial ──────────────────────────── */
.testimonial {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-deco {
    font-size: 8rem;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.08;
    pointer-events: none;
}
.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.testimonial-author:hover img {
    transform: scale(1.08);
}
.testimonial-author div {
    text-align: left;
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.testimonial-author span {
    font-size: 0.82rem;
    font-weight: 400;
}

/* ── Contact ──────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.contact-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.contact-subtext {
    font-size: 0.9rem !important;
}
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-btn:hover {
    transform: translateY(-3px);
}
.contact-btn svg {
    flex-shrink: 0;
}

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

/* ── Footer ───────────────────────────────── */
.footer {
    padding: 28px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-logo {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-right a {
    transition: opacity 0.3s;
}
.footer-right a:hover { opacity: 0.6; }


/* ═══════════════════════════════════════════
   V1 — DARK LUXURY
   Navy, gold, Playfair Display
   ═══════════════════════════════════════════ */

.v1 {
    font-family: 'Inter', sans-serif;
    background: #0a0e1a;
    color: #e8e6e1;
}

/* Hero */
.v1 .hero-overlay {
    background: linear-gradient(180deg, rgba(10,14,26,0.7) 0%, rgba(10,14,26,0.85) 50%, rgba(10,14,26,0.95) 100%);
}
.v1 .hero-name {
    font-family: 'Playfair Display', serif;
    color: #fff;
}
.v1 .hero-title {
    color: #c9a84c;
}
.v1 .hero-tags { color: rgba(255,255,255,0.6); }
.v1 .hero-meta { color: rgba(255,255,255,0.5); }
.v1 .hero-cta {
    background: #c9a84c;
    color: #0a0e1a;
}
.v1 .hero-cta:hover {
    background: #dbb95d;
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}
.v1 .hero-photo { border-color: rgba(201,168,76,0.4); }
.v1 .scroll-line { background: rgba(255,255,255,0.1); }
.v1 .scroll-line::after { background: #c9a84c; }

/* Nav */
.v1 .main-nav {
    background: rgba(10,14,26,0.85);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.v1 .nav-logo { color: #c9a84c; }
.v1 .nav-links a { color: rgba(255,255,255,0.7); }
.v1 .nav-links a::after { background: #c9a84c; }
.v1 .nav-burger span { background: #e8e6e1; }
.v1 .mobile-menu { background: rgba(10,14,26,0.95); }
.v1 .mobile-menu a { color: #e8e6e1; }

/* Sections */
.v1 .section { background: #0a0e1a; }
.v1 .section-alt { background: #0d1224; }
.v1 .section-label { color: #c9a84c; }
.v1 .section-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
}
.v1 .section-label-light { color: #c9a84c; }
.v1 .section-title-light {
    font-family: 'Playfair Display', serif;
    color: #fff;
}

/* About / Vision */
.v1 .about-text p, .v1 .vision-text p { color: rgba(232,230,225,0.7); }
.v1 .about-lead, .v1 .vision-lead { color: rgba(232,230,225,0.85); }
.v1 .about-highlight svg { color: #c9a84c; }
.v1 .about-highlight { color: rgba(255,255,255,0.8); }
.v1 .about-img-wrapper {
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(201,168,76,0.15);
}
.v1 .section-subtitle { color: rgba(201,168,76,0.7); }
.v1 .vision-conviction { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.12); }
.v1 .conviction-label { color: #c9a84c; }
.v1 .hero-surtitle { color: #c9a84c; }
.v1 .hero-subtitle { color: rgba(255,255,255,0.6); }
.v1 .hero-cta-secondary { border-color: rgba(201,168,76,0.3); color: #c9a84c; }
.v1 .hero-cta-secondary:hover { border-color: #c9a84c; }

/* Offre */
.v1 .offre-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.v1 .offre-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: rgba(201,168,76,0.2); }
.v1 .offre-card-featured { border-color: rgba(201,168,76,0.2); }
.v1 .offre-icon { background: rgba(201,168,76,0.1); color: #c9a84c; }
.v1 .offre-card h3 { color: #fff; }
.v1 .offre-card p { color: rgba(255,255,255,0.55); }
.v1 .offre-badge { background: rgba(201,168,76,0.12); color: #c9a84c; }
.v1 .offre-badge-highlight { background: #c9a84c; color: #0a0e1a; }
.v1 .livrable-label { color: #c9a84c; }
.v1 .offre-livrable { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.06); }
.v1 .offre-note { color: rgba(255,255,255,0.4); }

/* Parcours */
.v1 .parcours-list li { color: rgba(232,230,225,0.75); }
.v1 .parcours-list li::before { border-color: #c9a84c; }
.v1 .section-alt .stat-number, .v1 .section-alt .stat-plus, .v1 .section-alt .stat-unit { color: #c9a84c; }
.v1 .section-alt .stat-label { color: rgba(232,230,225,0.5); }
.v1 .section-alt .stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1); }

/* Timeline */
.v1 .timeline-line { background: rgba(201,168,76,0.15); }
.v1 .timeline-dot {
    border-color: #c9a84c;
    background: #0a0e1a;
}
.v1 .timeline-item:hover .timeline-dot {
    background: #c9a84c;
    box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.v1 .timeline-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.v1 .timeline-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(201,168,76,0.2);
}
.v1 .tc-date { color: #c9a84c; }
.v1 .tc-badge {
    background: rgba(201,168,76,0.12);
    color: #c9a84c;
}
.v1 .tc-badge-highlight {
    background: #c9a84c;
    color: #0a0e1a;
}
.v1 .tc-title { color: #fff; }
.v1 .tc-company { color: rgba(201,168,76,0.7); }
.v1 .tc-desc { color: rgba(255,255,255,0.6); }
.v1 .tc-metric-value { color: #c9a84c; }
.v1 .tc-metric-label { color: rgba(255,255,255,0.4); }
.v1 .tc-tags span {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Skills */
.v1 .skill-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.v1 .skill-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    border-color: rgba(201,168,76,0.2);
}
.v1 .skill-icon {
    background: rgba(201,168,76,0.1);
    color: #c9a84c;
}
.v1 .skill-card h3 { color: #fff; }
.v1 .skill-card p { color: rgba(255,255,255,0.55); }
.v1 .skill-bar { background: rgba(255,255,255,0.06); }
.v1 .skill-fill { background: linear-gradient(90deg, #c9a84c, #dbb95d); }

/* Stats */
.v1 .section-bg-overlay {
    background: linear-gradient(180deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.95) 100%);
}
.v1 .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.1);
}
.v1 .stat-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.v1 .stat-number, .v1 .stat-plus, .v1 .stat-unit { color: #c9a84c; }
.v1 .stat-label { color: rgba(255,255,255,0.6); }

/* Testimonial */
.v1 .testimonial-deco { color: #c9a84c; }
.v1 .testimonial-text { color: rgba(255,255,255,0.8); }
.v1 .testimonial-author strong { color: #fff; }
.v1 .testimonial-author span { color: rgba(255,255,255,0.5); }

/* Contact */
.v1 .contact-text p { color: rgba(255,255,255,0.7); }
.v1 .contact-subtext { color: rgba(255,255,255,0.4) !important; }
.v1 .contact-btn-primary {
    background: #c9a84c;
    color: #0a0e1a;
}
.v1 .contact-btn-primary:hover {
    box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.v1 .contact-btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #e8e6e1;
    border: 1px solid rgba(255,255,255,0.1);
}
.v1 .contact-btn-secondary:hover {
    border-color: rgba(201,168,76,0.3);
}

/* Footer */
.v1 .footer {
    background: #070a14;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
}
.v1 .footer-logo { color: #c9a84c; }


/* ═══════════════════════════════════════════
   V2 — CLEAN MINIMAL
   White, subtle gray, Inter
   ═══════════════════════════════════════════ */

.v2 {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #1a1a1a;
}

.v2 .hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(250,250,250,0.8) 60%, rgba(250,250,250,1) 100%);
}
.v2 .hero-name {
    color: #111;
}
.v2 .hero-title { color: #555; }
.v2 .hero-tags { color: #888; }
.v2 .hero-meta { color: #888; }
.v2 .hero-photo { border-color: rgba(0,0,0,0.08); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.v2 .hero-cta {
    background: #111;
    color: #fff;
}
.v2 .hero-cta:hover {
    background: #333;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.v2 .scroll-line { background: rgba(0,0,0,0.08); }
.v2 .scroll-line::after { background: #111; }

.v2 .main-nav {
    background: rgba(250,250,250,0.85);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.v2 .nav-logo { color: #111; }
.v2 .nav-links a { color: #555; }
.v2 .nav-links a::after { background: #111; }
.v2 .nav-burger span { background: #333; }
.v2 .mobile-menu { background: rgba(250,250,250,0.97); }
.v2 .mobile-menu a { color: #111; }

.v2 .section { background: #fafafa; }
.v2 .section-alt { background: #f4f4f4; }
.v2 .section-label { color: #999; }
.v2 .section-title { color: #111; }
.v2 .section-label-light { color: rgba(255,255,255,0.6); }
.v2 .section-title-light { color: #fff; }

.v2 .about-text p, .v2 .vision-text p { color: #555; }
.v2 .about-lead, .v2 .vision-lead { color: #333; }
.v2 .about-highlight svg { color: #111; }
.v2 .about-highlight { color: #333; }
.v2 .about-img-wrapper { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.v2 .section-subtitle { color: #888; }
.v2 .vision-conviction { background: #f0f0f0; border: 1px solid #e5e5e5; }
.v2 .conviction-label { color: #111; }
.v2 .hero-surtitle { color: #888; }
.v2 .hero-subtitle { color: #666; }
.v2 .hero-cta-secondary { border-color: #ddd; color: #555; }
.v2 .hero-cta-secondary:hover { border-color: #111; color: #111; }
.v2 .offre-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); }
.v2 .offre-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.v2 .offre-card-featured { border-color: #111; }
.v2 .offre-icon { background: #f5f5f5; color: #333; }
.v2 .offre-card h3 { color: #111; }
.v2 .offre-card p { color: #666; }
.v2 .offre-badge { background: #f0f0f0; color: #555; }
.v2 .offre-badge-highlight { background: #111; color: #fff; }
.v2 .livrable-label { color: #111; }
.v2 .offre-livrable { color: #777; }
.v2 .offre-note { color: #999; }
.v2 .parcours-list li { color: #555; }
.v2 .parcours-list li::before { border-color: #111; }
.v2 .section-alt .stat-number, .v2 .section-alt .stat-plus, .v2 .section-alt .stat-unit { color: #111; }
.v2 .section-alt .stat-label { color: #888; }
.v2 .section-alt .stat-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); }

.v2 .timeline-line { background: rgba(0,0,0,0.08); }
.v2 .timeline-dot { border-color: #111; background: #fafafa; }
.v2 .timeline-item:hover .timeline-dot { background: #111; }
.v2 .timeline-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.v2 .timeline-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.v2 .tc-date { color: #999; }
.v2 .tc-badge { background: #f0f0f0; color: #555; }
.v2 .tc-badge-highlight { background: #111; color: #fff; }
.v2 .tc-title { color: #111; }
.v2 .tc-company { color: #777; }
.v2 .tc-desc { color: #555; }
.v2 .tc-metric-value { color: #111; }
.v2 .tc-metric-label { color: #999; }
.v2 .tc-tags span { background: #f5f5f5; color: #666; border: 1px solid #eee; }

.v2 .skill-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); }
.v2 .skill-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.v2 .skill-icon { background: #f5f5f5; color: #333; }
.v2 .skill-card h3 { color: #111; }
.v2 .skill-card p { color: #666; }
.v2 .skill-bar { background: #eee; }
.v2 .skill-fill { background: #111; }

.v2 .section-bg-overlay { background: rgba(17,17,17,0.88); }
.v2 .stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.v2 .stat-card:hover { border-color: rgba(255,255,255,0.2); }
.v2 .stat-number, .v2 .stat-plus, .v2 .stat-unit { color: #fff; }
.v2 .stat-label { color: rgba(255,255,255,0.6); }

.v2 .testimonial-deco { color: #111; }
.v2 .testimonial-text { color: #333; }
.v2 .testimonial-author strong { color: #111; }
.v2 .testimonial-author span { color: #888; }

.v2 .contact-text p { color: #555; }
.v2 .contact-subtext { color: #999 !important; }
.v2 .contact-btn-primary { background: #111; color: #fff; }
.v2 .contact-btn-primary:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.v2 .contact-btn-secondary { background: #fff; color: #111; border: 1px solid #ddd; }
.v2 .contact-btn-secondary:hover { border-color: #111; }

.v2 .footer { background: #fff; border-top: 1px solid #eee; color: #999; }
.v2 .footer-logo { color: #111; }


/* ═══════════════════════════════════════════
   V3 — MODERN GRADIENT
   Deep purple, blue, Space Grotesk, glass
   ═══════════════════════════════════════════ */

.v3 {
    font-family: 'Space Grotesk', sans-serif;
    background: #0f0b1e;
    color: #e0ddf5;
}

.v3 .hero-overlay {
    background: linear-gradient(180deg, rgba(15,11,30,0.5) 0%, rgba(15,11,30,0.8) 50%, rgba(15,11,30,0.95) 100%);
}
.v3 .hero-name {
    background: linear-gradient(135deg, #a78bfa, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v3 .hero-title { color: rgba(167,139,250,0.7); }
.v3 .hero-tags { color: rgba(224,221,245,0.5); }
.v3 .hero-meta { color: rgba(224,221,245,0.5); }
.v3 .hero-photo { border-color: rgba(167,139,250,0.3); }
.v3 .hero-cta {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    color: #fff;
}
.v3 .hero-cta:hover {
    box-shadow: 0 12px 40px rgba(167,139,250,0.35);
}
.v3 .scroll-line { background: rgba(167,139,250,0.15); }
.v3 .scroll-line::after { background: linear-gradient(180deg, #a78bfa, #60a5fa); }

.v3 .main-nav {
    background: rgba(15,11,30,0.8);
    border-bottom: 1px solid rgba(167,139,250,0.08);
}
.v3 .nav-logo {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v3 .nav-links a { color: rgba(224,221,245,0.6); }
.v3 .nav-links a::after { background: linear-gradient(90deg, #a78bfa, #60a5fa); }
.v3 .nav-burger span { background: #e0ddf5; }
.v3 .mobile-menu { background: rgba(15,11,30,0.95); }
.v3 .mobile-menu a { color: #e0ddf5; }

.v3 .section { background: #0f0b1e; }
.v3 .section-alt { background: #130e28; }
.v3 .section-label {
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v3 .section-title { color: #fff; }
.v3 .section-label-light { color: rgba(167,139,250,0.8); }
.v3 .section-title-light { color: #fff; }

.v3 .about-text p, .v3 .vision-text p { color: rgba(224,221,245,0.6); }
.v3 .about-lead, .v3 .vision-lead { color: rgba(224,221,245,0.8); }
.v3 .about-highlight svg { color: #a78bfa; }
.v3 .about-highlight { color: rgba(224,221,245,0.8); }
.v3 .about-img-wrapper { box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 1px solid rgba(167,139,250,0.1); border-radius: 20px; }
.v3 .section-subtitle { color: rgba(167,139,250,0.5); }
.v3 .vision-conviction { background: rgba(167,139,250,0.06); border: 1px solid rgba(167,139,250,0.1); }
.v3 .conviction-label { color: #a78bfa; }
.v3 .hero-surtitle { color: rgba(167,139,250,0.7); }
.v3 .hero-subtitle { color: rgba(224,221,245,0.5); }
.v3 .hero-cta-secondary { border-color: rgba(167,139,250,0.25); color: rgba(224,221,245,0.7); }
.v3 .hero-cta-secondary:hover { border-color: #a78bfa; color: #fff; }
.v3 .offre-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(167,139,250,0.08); backdrop-filter: blur(10px); border-radius: 20px; }
.v3 .offre-card:hover { box-shadow: 0 16px 48px rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.2); }
.v3 .offre-card-featured { border-color: rgba(167,139,250,0.25); }
.v3 .offre-icon { background: rgba(167,139,250,0.1); color: #a78bfa; }
.v3 .offre-card h3 { color: #fff; }
.v3 .offre-card p { color: rgba(224,221,245,0.5); }
.v3 .offre-badge { background: rgba(167,139,250,0.12); color: #a78bfa; }
.v3 .offre-badge-highlight { background: linear-gradient(135deg, #a78bfa, #60a5fa); color: #fff; }
.v3 .livrable-label { color: #a78bfa; }
.v3 .offre-livrable { color: rgba(224,221,245,0.4); }
.v3 .offre-note { color: rgba(224,221,245,0.35); }
.v3 .parcours-list li { color: rgba(224,221,245,0.65); }
.v3 .parcours-list li::before { border-color: #a78bfa; }
.v3 .section-alt .stat-number, .v3 .section-alt .stat-plus, .v3 .section-alt .stat-unit { background: linear-gradient(135deg, #a78bfa, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.v3 .section-alt .stat-label { color: rgba(224,221,245,0.45); }
.v3 .section-alt .stat-card { background: rgba(167,139,250,0.06); border: 1px solid rgba(167,139,250,0.1); }

.v3 .timeline-line { background: linear-gradient(180deg, rgba(167,139,250,0.2), rgba(96,165,250,0.2)); }
.v3 .timeline-dot { border-color: #a78bfa; background: #0f0b1e; }
.v3 .timeline-item:hover .timeline-dot {
    background: #a78bfa;
    box-shadow: 0 0 24px rgba(167,139,250,0.4);
}
.v3 .timeline-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(167,139,250,0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}
.v3 .timeline-card:hover {
    box-shadow: 0 20px 60px rgba(167,139,250,0.12);
    border-color: rgba(167,139,250,0.2);
}
.v3 .tc-date { color: #a78bfa; }
.v3 .tc-badge { background: rgba(167,139,250,0.12); color: #a78bfa; }
.v3 .tc-badge-highlight { background: linear-gradient(135deg, #a78bfa, #60a5fa); color: #fff; }
.v3 .tc-title { color: #fff; }
.v3 .tc-company { color: rgba(167,139,250,0.6); }
.v3 .tc-desc { color: rgba(224,221,245,0.55); }
.v3 .tc-metric-value {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v3 .tc-metric-label { color: rgba(224,221,245,0.4); }
.v3 .tc-tags span { background: rgba(167,139,250,0.08); color: rgba(224,221,245,0.6); border: 1px solid rgba(167,139,250,0.12); }

.v3 .skill-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(167,139,250,0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}
.v3 .skill-card:hover {
    box-shadow: 0 16px 48px rgba(167,139,250,0.12);
    border-color: rgba(167,139,250,0.2);
}
.v3 .skill-icon { background: rgba(167,139,250,0.1); color: #a78bfa; }
.v3 .skill-card h3 { color: #fff; }
.v3 .skill-card p { color: rgba(224,221,245,0.5); }
.v3 .skill-bar { background: rgba(167,139,250,0.08); }
.v3 .skill-fill { background: linear-gradient(90deg, #a78bfa, #60a5fa); }

.v3 .section-bg-overlay { background: rgba(15,11,30,0.92); }
.v3 .stat-card {
    background: rgba(167,139,250,0.06);
    border: 1px solid rgba(167,139,250,0.1);
    backdrop-filter: blur(10px);
}
.v3 .stat-card:hover {
    border-color: rgba(167,139,250,0.3);
    box-shadow: 0 12px 40px rgba(167,139,250,0.15);
}
.v3 .stat-number, .v3 .stat-plus, .v3 .stat-unit {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v3 .stat-label { color: rgba(224,221,245,0.5); }

.v3 .testimonial-deco { color: #a78bfa; }
.v3 .testimonial-text { color: rgba(224,221,245,0.8); }
.v3 .testimonial-author strong { color: #fff; }
.v3 .testimonial-author span { color: rgba(224,221,245,0.5); }

.v3 .contact-text p { color: rgba(224,221,245,0.7); }
.v3 .contact-subtext { color: rgba(224,221,245,0.4) !important; }
.v3 .contact-btn-primary { background: linear-gradient(135deg, #a78bfa, #60a5fa); color: #fff; }
.v3 .contact-btn-primary:hover { box-shadow: 0 12px 40px rgba(167,139,250,0.35); }
.v3 .contact-btn-secondary { background: rgba(167,139,250,0.06); color: #e0ddf5; border: 1px solid rgba(167,139,250,0.15); }
.v3 .contact-btn-secondary:hover { border-color: rgba(167,139,250,0.4); }

.v3 .footer { background: #0a071a; border-top: 1px solid rgba(167,139,250,0.06); color: rgba(224,221,245,0.3); }
.v3 .footer-logo {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ═══════════════════════════════════════════
   V4 — WARM ELEGANT
   Beige, terracotta, Cormorant Garamond
   ═══════════════════════════════════════════ */

.v4 {
    font-family: 'DM Sans', sans-serif;
    background: #f7f3ee;
    color: #3d3428;
}

.v4 .hero-overlay {
    background: linear-gradient(180deg, rgba(247,243,238,0.2) 0%, rgba(247,243,238,0.7) 50%, rgba(247,243,238,1) 100%);
}
.v4 .hero-name {
    font-family: 'Cormorant Garamond', serif;
    color: #3d3428;
    font-weight: 600;
}
.v4 .hero-title { color: #b5644a; letter-spacing: 0.2em; }
.v4 .hero-tags { color: #8a7c6b; }
.v4 .hero-meta { color: #8a7c6b; }
.v4 .hero-photo { border-color: rgba(181,100,74,0.25); }
.v4 .hero-cta {
    background: #b5644a;
    color: #fff;
}
.v4 .hero-cta:hover {
    background: #c47358;
    box-shadow: 0 12px 40px rgba(181,100,74,0.25);
}
.v4 .scroll-line { background: rgba(61,52,40,0.1); }
.v4 .scroll-line::after { background: #b5644a; }

.v4 .main-nav {
    background: rgba(247,243,238,0.88);
    border-bottom: 1px solid rgba(61,52,40,0.06);
}
.v4 .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    color: #b5644a;
    font-size: 1.4rem;
}
.v4 .nav-links a { color: #6b6054; }
.v4 .nav-links a::after { background: #b5644a; }
.v4 .nav-burger span { background: #3d3428; }
.v4 .mobile-menu { background: rgba(247,243,238,0.97); }
.v4 .mobile-menu a { color: #3d3428; }

.v4 .section { background: #f7f3ee; }
.v4 .section-alt { background: #f0ebe3; }
.v4 .section-label { color: #b5644a; }
.v4 .section-title {
    font-family: 'Cormorant Garamond', serif;
    color: #3d3428;
    font-weight: 600;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.v4 .section-label-light { color: rgba(255,255,255,0.6); }
.v4 .section-title-light {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-weight: 600;
}

.v4 .about-text p, .v4 .vision-text p { color: #6b6054; }
.v4 .about-lead, .v4 .vision-lead { color: #4a4034; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
.v4 .about-highlight svg { color: #b5644a; }
.v4 .about-highlight { color: #4a4034; }
.v4 .about-img-wrapper { box-shadow: 0 20px 60px rgba(61,52,40,0.1); border-radius: 20px; }
.v4 .section-subtitle { color: #b5644a; }
.v4 .vision-conviction { background: #fff; border: 1px solid rgba(61,52,40,0.06); }
.v4 .conviction-label { color: #b5644a; }
.v4 .hero-surtitle { color: #8a7c6b; }
.v4 .hero-subtitle { color: #6b6054; }
.v4 .hero-cta-secondary { border-color: rgba(61,52,40,0.2); color: #6b6054; }
.v4 .hero-cta-secondary:hover { border-color: #b5644a; color: #b5644a; }
.v4 .offre-card { background: #fff; border: 1px solid rgba(61,52,40,0.06); border-radius: 20px; }
.v4 .offre-card:hover { box-shadow: 0 16px 48px rgba(61,52,40,0.08); }
.v4 .offre-card-featured { border-color: rgba(181,100,74,0.2); }
.v4 .offre-icon { background: rgba(181,100,74,0.08); color: #b5644a; }
.v4 .offre-card h3 { color: #3d3428; }
.v4 .offre-card p { color: #6b6054; }
.v4 .offre-badge { background: rgba(181,100,74,0.08); color: #b5644a; }
.v4 .offre-badge-highlight { background: #b5644a; color: #fff; }
.v4 .livrable-label { color: #b5644a; }
.v4 .offre-livrable { color: #8a7c6b; }
.v4 .offre-note { color: #8a7c6b; }
.v4 .parcours-list li { color: #6b6054; }
.v4 .parcours-list li::before { border-color: #b5644a; }
.v4 .section-alt .stat-number, .v4 .section-alt .stat-plus, .v4 .section-alt .stat-unit { color: #b5644a; }
.v4 .section-alt .stat-label { color: #8a7c6b; }
.v4 .section-alt .stat-card { background: #fff; border: 1px solid rgba(61,52,40,0.06); }

.v4 .timeline-line { background: rgba(181,100,74,0.15); }
.v4 .timeline-dot { border-color: #b5644a; background: #f7f3ee; }
.v4 .timeline-item:hover .timeline-dot { background: #b5644a; }
.v4 .timeline-card {
    background: #fff;
    border: 1px solid rgba(61,52,40,0.06);
    border-radius: 20px;
}
.v4 .timeline-card:hover { box-shadow: 0 20px 60px rgba(61,52,40,0.08); }
.v4 .tc-date { color: #b5644a; }
.v4 .tc-badge { background: rgba(181,100,74,0.08); color: #b5644a; }
.v4 .tc-badge-highlight { background: #b5644a; color: #fff; }
.v4 .tc-title { color: #3d3428; }
.v4 .tc-company { color: #b5644a; }
.v4 .tc-desc { color: #6b6054; }
.v4 .tc-metric-value { color: #b5644a; }
.v4 .tc-metric-label { color: #8a7c6b; }
.v4 .tc-tags span { background: #f7f3ee; color: #6b6054; border: 1px solid rgba(61,52,40,0.08); }

.v4 .skill-card { background: #fff; border: 1px solid rgba(61,52,40,0.06); border-radius: 20px; }
.v4 .skill-card:hover { box-shadow: 0 16px 48px rgba(61,52,40,0.08); }
.v4 .skill-icon { background: rgba(181,100,74,0.08); color: #b5644a; }
.v4 .skill-card h3 { color: #3d3428; }
.v4 .skill-card p { color: #6b6054; }
.v4 .skill-bar { background: rgba(181,100,74,0.08); }
.v4 .skill-fill { background: linear-gradient(90deg, #b5644a, #d4907a); }

.v4 .section-bg-overlay { background: rgba(61,52,40,0.88); }
.v4 .stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.v4 .stat-card:hover { border-color: rgba(181,100,74,0.4); }
.v4 .stat-number, .v4 .stat-plus, .v4 .stat-unit { color: #d4907a; }
.v4 .stat-label { color: rgba(255,255,255,0.6); }

.v4 .testimonial-deco { color: #b5644a; }
.v4 .testimonial-text {
    color: #4a4034;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
}
.v4 .testimonial-author strong { color: #3d3428; }
.v4 .testimonial-author span { color: #8a7c6b; }

.v4 .contact-text p { color: #6b6054; }
.v4 .contact-subtext { color: #8a7c6b !important; }
.v4 .contact-btn-primary { background: #b5644a; color: #fff; }
.v4 .contact-btn-primary:hover { box-shadow: 0 12px 40px rgba(181,100,74,0.25); }
.v4 .contact-btn-secondary { background: #fff; color: #3d3428; border: 1px solid rgba(61,52,40,0.12); }
.v4 .contact-btn-secondary:hover { border-color: #b5644a; }

.v4 .footer { background: #ede8e0; border-top: 1px solid rgba(61,52,40,0.06); color: #8a7c6b; }
.v4 .footer-logo { font-family: 'Cormorant Garamond', serif; color: #b5644a; font-size: 1.2rem; }


/* ═══════════════════════════════════════════
   V5 — BOLD CONTEMPORARY
   Black & white, coral accent, Sora
   ═══════════════════════════════════════════ */

.v5 {
    font-family: 'Sora', sans-serif;
    background: #fff;
    color: #111;
}

.v5 .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.9) 100%);
}
.v5 .hero-name {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.v5 .hero-title {
    color: #ff6b4a;
    font-weight: 600;
    letter-spacing: 0.25em;
}
.v5 .hero-tags { color: rgba(255,255,255,0.5); }
.v5 .hero-meta { color: rgba(255,255,255,0.5); }
.v5 .hero-photo { border-color: rgba(255,107,74,0.4); }
.v5 .hero-cta {
    background: #ff6b4a;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
    padding: 16px 40px;
}
.v5 .hero-cta:hover {
    background: #ff8266;
    box-shadow: 0 12px 40px rgba(255,107,74,0.35);
}
.v5 .scroll-line { background: rgba(255,255,255,0.15); }
.v5 .scroll-line::after { background: #ff6b4a; }

.v5 .main-nav {
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.v5 .nav-logo { color: #ff6b4a; font-weight: 900; }
.v5 .nav-links a { color: #555; font-weight: 600; }
.v5 .nav-links a::after { background: #ff6b4a; }
.v5 .nav-burger span { background: #111; }
.v5 .mobile-menu { background: rgba(255,255,255,0.97); }
.v5 .mobile-menu a { color: #111; }

.v5 .section { background: #fff; }
.v5 .section-alt { background: #f8f8f8; }
.v5 .section-label { color: #ff6b4a; font-weight: 700; }
.v5 .section-title {
    color: #111;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.v5 .section-label-light { color: #ff6b4a; }
.v5 .section-title-light { color: #fff; font-weight: 800; letter-spacing: -0.03em; }

.v5 .about-text p, .v5 .vision-text p { color: #555; }
.v5 .about-lead, .v5 .vision-lead { color: #222; font-weight: 500; }
.v5 .about-highlight svg { color: #ff6b4a; }
.v5 .about-highlight { color: #222; font-weight: 600; }
.v5 .about-img-wrapper { box-shadow: 0 20px 60px rgba(0,0,0,0.1); border-radius: 12px; }
.v5 .section-subtitle { color: #ff6b4a; }
.v5 .vision-conviction { background: #f8f8f8; border: 2px solid #f0f0f0; }
.v5 .conviction-label { color: #ff6b4a; }
.v5 .hero-surtitle { color: rgba(255,255,255,0.6); }
.v5 .hero-subtitle { color: rgba(255,255,255,0.5); }
.v5 .hero-impact { color: rgba(255,255,255,0.65); opacity: 1; }
.v5 .hero-cta-secondary { border-color: rgba(255,107,74,0.3); color: rgba(255,255,255,0.7); }
.v5 .hero-cta-secondary:hover { border-color: #ff6b4a; color: #fff; }
.v5 .offre-card { background: #fff; border: 2px solid #f0f0f0; border-radius: 12px; }
.v5 .offre-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: rgba(255,107,74,0.2); }
.v5 .offre-card-featured { border-color: rgba(255,107,74,0.3); }
.v5 .offre-icon { background: #111; color: #fff; border-radius: 10px; }
.v5 .offre-card h3 { color: #111; font-weight: 700; }
.v5 .offre-card p { color: #666; }
.v5 .offre-badge { background: #111; color: #fff; font-weight: 700; border-radius: 6px; }
.v5 .offre-badge-highlight { background: #ff6b4a; color: #fff; border-radius: 6px; }
.v5 .livrable-label { color: #ff6b4a; }
.v5 .offre-livrable { color: #777; }
.v5 .offre-note { color: #999; }
.v5 .parcours-list li { color: #555; }
.v5 .parcours-list li::before { border-color: #ff6b4a; }
.v5 .section-alt .stat-number, .v5 .section-alt .stat-plus, .v5 .section-alt .stat-unit { color: #ff6b4a; }
.v5 .section-alt .stat-label { color: #888; }
.v5 .section-alt .stat-card { background: #fff; border: 2px solid #f0f0f0; }

.v5 .timeline-line { background: rgba(255,107,74,0.15); }
.v5 .timeline-dot { border-color: #ff6b4a; background: #fff; }
.v5 .timeline-item:hover .timeline-dot {
    background: #ff6b4a;
    box-shadow: 0 0 20px rgba(255,107,74,0.3);
}
.v5 .timeline-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
}
.v5 .timeline-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: rgba(255,107,74,0.2);
}
.v5 .tc-date { color: #ff6b4a; font-weight: 700; }
.v5 .tc-badge { background: #111; color: #fff; font-weight: 700; border-radius: 6px; }
.v5 .tc-badge-highlight { background: #ff6b4a; color: #fff; border-radius: 6px; }
.v5 .tc-title { color: #111; font-weight: 700; }
.v5 .tc-company { color: #ff6b4a; font-weight: 600; }
.v5 .tc-desc { color: #555; }
.v5 .tc-metric-value { color: #ff6b4a; font-weight: 800; }
.v5 .tc-metric-label { color: #999; font-weight: 600; }
.v5 .tc-tags span {
    background: #f5f5f5;
    color: #555;
    border: none;
    font-weight: 600;
    border-radius: 6px;
}

.v5 .skill-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
}
.v5 .skill-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: rgba(255,107,74,0.2);
}
.v5 .skill-icon {
    background: #111;
    color: #fff;
    border-radius: 10px;
}
.v5 .skill-card h3 { color: #111; font-weight: 700; }
.v5 .skill-card p { color: #666; }
.v5 .skill-bar { background: #f0f0f0; }
.v5 .skill-fill { background: linear-gradient(90deg, #ff6b4a, #ff9a85); }

.v5 .section-bg-overlay { background: rgba(0,0,0,0.85); }
.v5 .stat-card {
    background: rgba(255,107,74,0.06);
    border: 2px solid rgba(255,107,74,0.1);
    border-radius: 12px;
}
.v5 .stat-card:hover {
    border-color: rgba(255,107,74,0.3);
    box-shadow: 0 12px 40px rgba(255,107,74,0.15);
}
.v5 .stat-number, .v5 .stat-plus, .v5 .stat-unit { color: #ff6b4a; }
.v5 .stat-label { color: rgba(255,255,255,0.6); font-weight: 600; }

.v5 .testimonial-deco { color: #ff6b4a; }
.v5 .testimonial-text { color: #333; font-weight: 400; }
.v5 .testimonial-author strong { color: #111; }
.v5 .testimonial-author span { color: #888; }

.v5 .contact-text p { color: #555; }
.v5 .contact-subtext { color: #999 !important; }
.v5 .contact-btn-primary {
    background: #ff6b4a;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}
.v5 .contact-btn-primary:hover { box-shadow: 0 12px 40px rgba(255,107,74,0.35); }
.v5 .contact-btn-secondary {
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}
.v5 .contact-btn-secondary:hover {
    background: #333;
}

.v5 .footer { background: #111; color: rgba(255,255,255,0.4); }
.v5 .footer-logo { color: #ff6b4a; }
.v5 .footer-right a { color: rgba(255,255,255,0.4); }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 36px; }
    .switcher-panel {
        top: auto;
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: column;
        gap: 0;
        padding: 10px 14px;
    }
    .sw-divider {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    .hero-content { padding-top: 90px; padding-bottom: 40px; }
    .hero-name { font-size: 2.5rem; }
    .hero-tags { font-size: 0.78rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .tc-image { height: 160px; }
    .tc-metrics { gap: 16px; }
    .timeline { gap: 24px; }
    .timeline-item { padding-left: 28px; }
    .timeline-dot { left: 2px; }
    .timeline-line { left: 9px; }
    .about-grid { gap: 36px; }
    .about-lead { font-size: 1.1rem; }
    .about-highlights { gap: 10px; }
    .testimonial { padding: 0 8px; }
    .testimonial-text { font-size: 1.05rem; }
    .contact-actions { gap: 12px; }
    .contact-btn { padding: 16px 24px; font-size: 0.88rem; }
    .footer-inner { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
    .section { padding: 56px 0; }
    .hero-photo { width: 100px; height: 100px; }
    .stat-card { padding: 24px 16px; }
    .tc-body { padding: 20px; }
    .hero-tags { flex-direction: column; gap: 4px; }
    .hero-tag-sep { display: none; }
    .hero-meta { flex-direction: column; gap: 10px; }
    .container { padding: 0 16px; }
    .skill-card { padding: 24px; }
    .tc-image { height: 130px; }
}


/* ═══════════════════════════════════════════
   FORME 1 — CLASSIQUE (default, no overrides needed)
   Vertical centered, standard layout
   ═══════════════════════════════════════════ */
/* Forme 1 is the base layout — all existing styles apply */


/* ═══════════════════════════════════════════
   FORME 2 — EDITORIAL / SPLIT
   Hero split, alternating timeline, horizontal skills
   ═══════════════════════════════════════════ */

/* Hero: Split layout — text left, photo right */
.forme-2 .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.forme-2 .hero-bg {
    grid-column: 2;
    grid-row: 1;
    position: relative;
}
.forme-2 .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}
.forme-2 .hero:hover .hero-bg-img {
    transform: scale(1.04);
}
.forme-2 .hero-overlay {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    background: linear-gradient(90deg, var(--hero-overlay-start, rgba(10,14,26,1)) 0%, var(--hero-overlay-end, rgba(10,14,26,0.3)) 100%) !important;
}
.forme-2 .hero-content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 80px 60px;
    z-index: 3;
}
.forme-2 .hero-photo {
    width: 90px;
    height: 90px;
    margin: 0;
}
.forme-2 .hero-tags {
    justify-content: flex-start;
}
.forme-2 .hero-meta {
    justify-content: flex-start;
}
.forme-2 .scroll-indicator {
    grid-column: 1;
    position: absolute;
    bottom: 32px;
    left: 60px;
    transform: none;
}

/* Nav: left-aligned logo, right links */
.forme-2 .nav-inner {
    max-width: 1240px;
}

/* Vision: reversed — large image left, text right */
.forme-2 .vision-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
}
.forme-2 .vision-image {
    order: -1;
}
.forme-2 .about-img-wrapper img {
    height: 440px;
}

/* Offre: horizontal cards */
.forme-2 .offre-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}
.forme-2 .offre-icon { margin-bottom: 0; grid-row: 1 / 4; }

/* Parcours: full width */
.forme-2 .parcours-grid {
    grid-template-columns: 1fr 1fr;
}
.forme-2 .stats-grid-compact { gap: 0; }
.forme-2 .stats-grid-compact .stat-card {
    border-radius: 0;
    border-right: 1px solid rgba(128,128,128,0.1);
}
.forme-2 .stats-grid-compact .stat-card:last-child { border-right: none; }

/* Timeline: alternating left/right */
.forme-2 .timeline {
    position: relative;
    gap: 0;
}
.forme-2 .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
}
.forme-2 .timeline-item {
    padding-left: 0;
    width: 50%;
    padding-right: 40px;
    text-align: right;
    margin-bottom: 40px;
}
.forme-2 .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
}
.forme-2 .timeline-line {
    display: none;
}
.forme-2 .timeline-dot {
    left: auto;
    right: -8px;
    top: 30px;
}
.forme-2 .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}
.forme-2 .timeline-card {
    display: flex;
    flex-direction: column;
}
.forme-2 .tc-image {
    height: 180px;
}
.forme-2 .tc-top {
    justify-content: flex-end;
}
.forme-2 .timeline-item:nth-child(even) .tc-top {
    justify-content: flex-start;
}
.forme-2 .tc-tags {
    justify-content: flex-end;
}
.forme-2 .timeline-item:nth-child(even) .tc-tags {
    justify-content: flex-start;
}

/* Skills: horizontal 2-col with larger cards */
.forme-2 .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.forme-2 .skill-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 32px;
}
.forme-2 .skill-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}
.forme-2 .skill-card h3 {
    margin-bottom: 6px;
}

/* Stats: horizontal inline */
.forme-2 .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.forme-2 .stat-card {
    border-radius: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
}
.forme-2 .stat-card:last-child {
    border-right: none;
}

/* Testimonial: left-aligned with accent border */
.forme-2 .testimonial {
    text-align: left;
    max-width: 800px;
    padding-left: 40px;
    border-left: 3px solid;
}
.forme-2 .testimonial-deco {
    display: none;
}
.forme-2 .testimonial-author {
    justify-content: flex-start;
}

/* Contact: single column centered */
.forme-2 .contact-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.forme-2 .contact-actions {
    flex-direction: row;
    justify-content: center;
}

/* Forme 2 theme line color inheritance */
.v1.forme-2 .timeline::before { background: rgba(201,168,76,0.15); }
.v1.forme-2 .testimonial { border-color: #c9a84c; }
.v1.forme-2 .hero-content { background: #0a0e1a; }

.v2.forme-2 .timeline::before { background: rgba(0,0,0,0.08); }
.v2.forme-2 .testimonial { border-color: #111; }
.v2.forme-2 .hero-content { background: #fafafa; }
.v2.forme-2 .hero-overlay { background: linear-gradient(90deg, rgba(250,250,250,1) 0%, rgba(250,250,250,0.2) 100%) !important; }

.v3.forme-2 .timeline::before { background: linear-gradient(180deg, rgba(167,139,250,0.2), rgba(96,165,250,0.2)); }
.v3.forme-2 .testimonial { border-color: #a78bfa; }
.v3.forme-2 .hero-content { background: #0f0b1e; }

.v4.forme-2 .timeline::before { background: rgba(181,100,74,0.15); }
.v4.forme-2 .testimonial { border-color: #b5644a; }
.v4.forme-2 .hero-content { background: #f7f3ee; }
.v4.forme-2 .hero-overlay { background: linear-gradient(90deg, rgba(247,243,238,1) 0%, rgba(247,243,238,0.2) 100%) !important; }

.v5.forme-2 .timeline::before { background: rgba(255,107,74,0.15); }
.v5.forme-2 .testimonial { border-color: #ff6b4a; }
.v5.forme-2 .hero-content { background: #000; }
.v5.forme-2 .hero-name { color: #fff; -webkit-text-fill-color: #fff; }


/* Forme 2 responsive */
@media (max-width: 900px) {
    .forme-2 .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .forme-2 .hero-bg {
        grid-column: 1;
        position: absolute;
        inset: 0;
    }
    .forme-2 .hero-overlay {
        grid-column: 1;
        position: absolute;
        inset: 0;
        background: inherit !important;
    }
    .forme-2 .hero-content {
        grid-column: 1;
        align-items: center;
        text-align: center;
        padding: 80px 24px;
    }
    .forme-2 .hero-tags { justify-content: center; }
    .forme-2 .hero-meta { justify-content: center; }
    .forme-2 .scroll-indicator { left: 50%; transform: translateX(-50%); }
    .forme-2 .about-grid, .forme-2 .vision-grid { grid-template-columns: 1fr; }
    .forme-2 .about-image, .forme-2 .vision-image { order: 0; }
    .forme-2 .offre-card { display: flex; flex-direction: column; }
    .forme-2 .offre-icon { margin-bottom: 20px; }
    .forme-2 .parcours-grid { grid-template-columns: 1fr; }
    .forme-2 .timeline::before { left: 11px; }
    .forme-2 .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
        text-align: left;
        margin-left: 0;
    }
    .forme-2 .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 40px;
    }
    .forme-2 .timeline-dot {
        left: 4px;
        right: auto;
    }
    .forme-2 .timeline-item:nth-child(even) .timeline-dot {
        left: 4px;
    }
    .forme-2 .tc-top, .forme-2 .timeline-item:nth-child(even) .tc-top { justify-content: flex-start; }
    .forme-2 .tc-tags, .forme-2 .timeline-item:nth-child(even) .tc-tags { justify-content: flex-start; }
    .forme-2 .skills-grid { grid-template-columns: 1fr; }
    .forme-2 .skill-card { flex-direction: column; }
    .forme-2 .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .forme-2 .stat-card { border-right: none; }
    .forme-2 .contact-actions { flex-direction: column; }
    .forme-2 .testimonial { padding-left: 24px; }
    .forme-2 .about-img-wrapper img { height: 300px; }
}

@media (max-width: 480px) {
    .forme-2 .hero-content { padding: 60px 16px; }
    .forme-2 .timeline-item,
    .forme-2 .timeline-item:nth-child(even) { padding-left: 28px; }
    .forme-2 .timeline-dot,
    .forme-2 .timeline-item:nth-child(even) .timeline-dot { left: 2px; }
    .forme-2 .timeline::before { left: 9px; }
    .forme-2 .about-img-wrapper img { height: 220px; }
}


/* ═══════════════════════════════════════════
   FORME 3 — BENTO / ASYMMETRIC
   Minimal hero, bento grid skills, card grid timeline
   ═══════════════════════════════════════════ */

/* Hero: tall and typographic, photo smaller and offset */
.forme-3 .hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}
.forme-3 .hero-content {
    text-align: left;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 24px;
}
.forme-3 .hero-photo-wrapper {
    display: flex;
    justify-content: flex-start;
}
.forme-3 .hero-photo {
    width: 80px;
    height: 80px;
    margin: 0;
}
.forme-3 .hero-name {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}
.forme-3 .hero-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.3em;
    margin-bottom: 28px;
}
.forme-3 .hero-tags {
    justify-content: flex-start;
    margin-bottom: 28px;
}
.forme-3 .hero-meta {
    justify-content: flex-start;
    margin-bottom: 36px;
}
.forme-3 .hero-cta {
    border-radius: 0;
    padding: 16px 48px;
}
.forme-3 .scroll-indicator {
    left: 24px;
    transform: none;
}

/* Section headers: bigger and bolder */
.forme-3 .section-header {
    margin-bottom: 64px;
}
.forme-3 .section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
}

/* Vision: full width, no image, typographic */
.forme-3 .about-grid, .forme-3 .vision-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    gap: 32px;
}
.forme-3 .about-image, .forme-3 .vision-image {
    display: none;
}
.forme-3 .about-lead, .forme-3 .vision-lead {
    font-size: 1.5rem;
    line-height: 1.6;
}
.forme-3 .about-highlights {
    flex-direction: row;
    gap: 32px;
}

/* Offre: bento-like */
.forme-3 .offre-grid {
    grid-template-columns: 1fr 1fr;
}
.forme-3 .offre-card:nth-child(2) {
    grid-row: 1 / 3;
    grid-column: 2;
}

/* Parcours: big numbers */
.forme-3 .parcours-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
}
.forme-3 .stats-grid-compact {
    grid-template-columns: repeat(4, 1fr);
}
.forme-3 .stats-grid-compact .stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.forme-3 .about-highlights {
    flex-wrap: wrap;
}

/* Timeline: card grid 2-col */
.forme-3 .timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.forme-3 .timeline-item {
    padding-left: 0;
}
.forme-3 .timeline-line,
.forme-3 .timeline-dot {
    display: none;
}
.forme-3 .timeline-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.forme-3 .timeline-item:first-child {
    grid-column: 1 / -1;
}
.forme-3 .timeline-item:first-child .timeline-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.forme-3 .timeline-item:first-child .tc-image {
    height: 100%;
    min-height: 280px;
}
.forme-3 .tc-image {
    height: 160px;
}

/* Skills: bento grid with mixed sizes */
.forme-3 .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}
.forme-3 .skill-card:nth-child(1) {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}
.forme-3 .skill-card:nth-child(1) .skill-icon {
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    grid-row: 1 / 3;
}
.forme-3 .skill-card:nth-child(4) {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}
.forme-3 .skill-card:nth-child(4) .skill-icon {
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    grid-row: 1 / 3;
}

/* Stats: large staggered numbers */
.forme-3 .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.forme-3 .stat-card {
    padding: 48px 20px;
}
.forme-3 .stat-card:nth-child(even) {
    transform: translateY(24px);
}
.forme-3 .stat-card:nth-child(even):hover {
    transform: translateY(18px);
}
.forme-3 .stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

/* Testimonial: large quote, card-like */
.forme-3 .testimonial {
    max-width: 900px;
    padding: 56px;
    border-radius: 24px;
    position: relative;
}
.forme-3 .testimonial-text {
    font-size: 1.4rem;
    line-height: 1.75;
}
.forme-3 .testimonial-deco {
    font-size: 10rem;
    top: -20px;
    left: 40px;
    transform: none;
}

/* Contact: asymmetric */
.forme-3 .contact-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
}
.forme-3 .contact-text p {
    font-size: 1.25rem;
}
.forme-3 .contact-btn {
    border-radius: 0;
}

/* Forme 3 theme-specific */
.v1.forme-3 .testimonial { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1); }
.v2.forme-3 .testimonial { background: #fff; border: 1px solid rgba(0,0,0,0.06); }
.v3.forme-3 .testimonial { background: rgba(167,139,250,0.04); border: 1px solid rgba(167,139,250,0.08); }
.v4.forme-3 .testimonial { background: #fff; border: 1px solid rgba(61,52,40,0.06); }
.v5.forme-3 .testimonial { background: #f8f8f8; border: 2px solid #f0f0f0; }

/* Forme 3 responsive */
@media (max-width: 900px) {
    .forme-3 .timeline {
        grid-template-columns: 1fr;
    }
    .forme-3 .timeline-item:first-child {
        grid-column: 1;
    }
    .forme-3 .timeline-item:first-child .timeline-card {
        display: flex;
        flex-direction: column;
    }
    .forme-3 .timeline-item:first-child .tc-image {
        height: 200px;
        min-height: auto;
    }
    .forme-3 .skills-grid {
        grid-template-columns: 1fr;
    }
    .forme-3 .skill-card:nth-child(1),
    .forme-3 .skill-card:nth-child(4) {
        grid-column: 1;
        display: block;
    }
    .forme-3 .skill-card:nth-child(1) .skill-icon,
    .forme-3 .skill-card:nth-child(4) .skill-icon {
        margin-bottom: 20px;
    }
    .forme-3 .stat-card:nth-child(even) {
        transform: none;
    }
    .forme-3 .testimonial {
        padding: 32px;
    }
    .forme-3 .contact-grid {
        grid-template-columns: 1fr;
    }
    .forme-3 .hero-name {
        font-size: 3rem;
    }
    .forme-3 .section-header { margin-bottom: 40px; }
    .forme-3 .about-lead { font-size: 1.2rem; }
    .forme-3 .about-highlights { flex-direction: column; gap: 10px; }
    .forme-3 .contact-text p { font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .forme-3 .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .forme-3 .hero-name { font-size: 2.4rem; }
    .forme-3 .hero { padding-bottom: 60px; }
    .forme-3 .testimonial { padding: 24px; }
    .forme-3 .testimonial-text { font-size: 1.05rem; }
    .forme-3 .testimonial-deco { font-size: 6rem; top: -10px; left: 20px; }
    .forme-3 .stat-number { font-size: 2.5rem; }
}
