/* ============================================
   PREMEYE STUDIO — Stylesheet principal
   Design dark cinématique avec accents dorés
   ============================================ */

/* 1. Variables CSS
   ============================================ */
:root {
    --color-bg: #1a1410;
    --color-dark: #281E15;
    --color-dark-alt: #0C0D0D;
    --color-card: #1E1E2A;
    --color-gold: #B19F7D;
    --color-cream: #E1DACD;
    --color-gray: #CBCACA;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --font-main: 'Montserrat', sans-serif;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --container-max: 1400px;
    --header-height: 96px;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-weight: 400;
    background-color: var(--color-bg);
    color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; background: none; }

/* 3. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 900;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-cream), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--color-gold); }
.text-muted { color: rgba(225, 218, 205, 0.4); }
.text-cream { color: var(--color-cream); }
.text-gray { color: var(--color-gray); }
.text-white { color: var(--color-white); }
.text-upper { text-transform: uppercase; }
.font-semibold { font-weight: 600; }
.font-black { font-weight: 900; }

/* 4. Layout
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section-dark { background-color: var(--color-dark-alt); }
.section-bg { background-color: var(--color-bg); }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* 5. Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: background-color var(--transition), border-color var(--transition), backdrop-filter var(--transition), transform 0.3s ease;
    border-bottom: 1px solid transparent;
}
.nav.nav-hidden {
    transform: translateY(-100%);
}

.nav.scrolled {
    background-color: rgba(40, 30, 21, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(177, 159, 125, 0.3);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--color-cream);
    font-weight: 600;
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--color-gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: none; }

.nav-hamburger {
    color: var(--color-cream);
    transition: color var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-hamburger:hover { color: var(--color-gold); }

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-cta { display: flex; }
    .nav-hamburger { display: none; }
    .nav-logo img { height: 48px; }
}

/* Hide CTA button on devis page */
.page-devis .nav-cta { visibility: hidden; pointer-events: none; }
.page-devis .mobile-menu-cta { display: none !important; }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 50;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}
.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(177, 159, 125, 0.2);
}
.mobile-menu-header img { height: 40px; width: auto; }

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.mobile-menu-nav a {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-cream);
    transition: color var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.mobile-menu.open .mobile-menu-nav a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, color var(--transition);
}
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.2s, 0.2s, 0s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.3s, 0.3s, 0s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.4s, 0.4s, 0s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.5s, 0.5s, 0s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.6s, 0.6s, 0s; }
.mobile-menu-nav a:hover { color: var(--color-gold); }

.mobile-menu-cta {
    padding: 2rem 1.5rem;
}

/* 6. Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
}
.btn-primary::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.35rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
    transition: transform var(--transition);
}
.btn-primary:hover {
    background: rgba(177, 159, 125, 0.9);
}
.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid rgba(177, 159, 125, 0.4);
}
.btn-outline:hover {
    background: rgba(177, 159, 125, 0.1);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}
.btn-full { width: 100%; }

/* 7. Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
    background: var(--color-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-bg-layer {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
}
.hero-bg-layer:nth-child(1) {
    opacity: 0.8;
    animation: bg-drift-1 20s ease-in-out infinite alternate;
}
.hero-bg-layer:nth-child(2) {
    opacity: 0.6;
    animation: bg-drift-2 25s ease-in-out infinite alternate;
}
.hero-bg-layer:nth-child(3) {
    opacity: 1;
    animation: bg-drift-3 30s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(177, 159, 125, 0.1);
    border: 1px solid rgba(177, 159, 125, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}
.hero-badge svg { color: var(--color-gold); }
.hero-badge span {
    font-size: 0.875rem;
    color: var(--color-cream);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: var(--color-cream);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 span { display: block; color: var(--color-gold); }

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.hero-scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(177, 159, 125, 0.4);
    border-radius: var(--radius-full);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    animation: scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: scroll-dot 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-buttons { flex-direction: row; }
    .hero-scroll { display: block; }
}

/* 8. Section Headers
   ============================================ */
.section-header {
    margin-bottom: 4rem;
}
.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 3.5rem);
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.1;
}
.section-title-xl {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

/* 9. Services / Offres Accordion
   ============================================ */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.services-tags span {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-size: 0.875rem;
}

.accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
.accordion-header h3 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition);
}
.accordion-item.active .accordion-header h3,
.accordion-header:hover h3 {
    color: var(--color-white);
}
.accordion-header .dot {
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    margin-left: 1rem;
    display: none;
    transform: scale(0);
    transition: transform 0.3s ease;
}
.accordion-item.active .dot {
    display: inline-block;
    transform: scale(1);
}
.accordion-icon {
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition), transform var(--transition);
    flex-shrink: 0;
}
.accordion-item.active .accordion-icon {
    color: var(--color-gold);
    transform: rotate(45deg);
}
.accordion-header:hover .accordion-icon { color: rgba(255, 255, 255, 0.5); }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-body {
    max-height: 200px;
}
.accordion-body-inner {
    padding-bottom: 2rem;
    padding-right: 4rem;
}
.accordion-body p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 42rem;
}

/* 10. Portfolio Grid
   ============================================ */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.portfolio-filter-btn {
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(177, 159, 125, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    min-height: 44px;
}
.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.portfolio-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
@media (hover: hover) {
    .portfolio-card:hover > img { transform: scale(1.05); }
}

/* Logo overlay on portfolio cards */
.portfolio-card-logo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(177, 159, 125, 0.25);
    transition: opacity 0.3s ease;
}
@media (hover: hover) {
    .portfolio-card:hover .portfolio-card-logo-overlay {
        opacity: 0;
    }
}
.portfolio-card-logo {
    max-width: 30%;
    max-height: 40%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.portfolio-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3) 50%, transparent);
}

.portfolio-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transition: all var(--transition);
}
/* Mobile : infos toujours visibles */
.portfolio-card-info {
    transform: translateY(0);
    opacity: 1;
}
/* Desktop : animation au hover */
@media (hover: hover) {
    .portfolio-card-info {
        transform: translateY(1rem);
        opacity: 0;
    }
    .portfolio-card:hover .portfolio-card-info {
        transform: translateY(0);
        opacity: 1;
    }
}
.portfolio-card-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}
.portfolio-card-info .cat-tag {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-weight: 600;
}
.portfolio-card-arrow {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 0.75rem;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
}
.portfolio-card-arrow svg { width: 20px; height: 20px; color: var(--color-white); }

/* 11. About Section
   ============================================ */
.about-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) { .about-block { grid-template-columns: repeat(2, 1fr); } }

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-points { display: flex; flex-direction: column; gap: 2rem; }
.about-points h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.75rem; }
.about-points p { font-size: 1.125rem; color: rgba(255,255,255,0.4); }

/* About Story — narrative layout */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-story { grid-template-columns: 3fr 2fr; }
    .about-story-reverse { grid-template-columns: 2fr 3fr; }
    .about-story-reverse .about-story-content { order: 2; }
    .about-story-reverse .about-story-img { order: 1; }
}
.about-story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
/* Page About — no uppercase on any title */
.page-about h1,
.page-about h2,
.page-about h3,
.page-about .section-title,
.page-about .page-header h1 {
    text-transform: none;
}

.about-story-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.about-story-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-story-content p:last-child { margin-bottom: 0; }

/* About Manifesto — centered text block */
.about-manifesto {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}
.about-manifesto h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.about-manifesto p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-manifesto p:last-child { margin-bottom: 0; }

/* 12. Testimonials Carousel
   ============================================ */
.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .testimonials-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.carousel-arrows {
    display: flex;
    gap: 1rem;
}
.carousel-arrow {
    padding: 0.75rem;
    border-radius: 50%;
    background: var(--color-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    transition: background var(--transition);
}
.carousel-arrow:hover { background: rgba(255,255,255,0.1); }
.carousel-arrow:disabled { opacity: 0.5; cursor: not-allowed; }
.carousel-arrow svg { width: 20px; height: 20px; }

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 1rem;
}
.carousel-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex-shrink: 0;
    width: calc(100% - 3rem);
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .testimonial-card { width: calc(50% - 1rem); }
}

.testimonial-card-inner {
    background: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-avatar {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.testimonial-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}
.testimonial-avatar .name { font-weight: 700; color: var(--color-white); }
.testimonial-avatar .role { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.testimonial-card-inner blockquote {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-style: italic;
}

/* 13. Stats Section
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
    background: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
}
.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.stat-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.5rem; }
.stat-card p { color: rgba(255,255,255,0.4); }

/* 14. CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.cta-bg-layer {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    background-size: cover;
    background-position: center;
}
.cta-bg-layer:nth-child(1) { opacity: 0.7; animation: cta-drift-1 22s ease-in-out infinite alternate; }
.cta-bg-layer:nth-child(2) { opacity: 0.5; animation: cta-drift-2 28s ease-in-out infinite alternate; }
.cta-bg-layer:nth-child(3) { opacity: 1; animation: cta-drift-3 35s ease-in-out infinite alternate; }

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}
.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* 15. Footer
   ============================================ */
.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(177, 159, 125, 0.2);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--color-cream); }

.footer-section h4 {
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.footer-section ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-section a {
    color: var(--color-cream);
    transition: color var(--transition);
}
.footer-section a:hover { color: var(--color-gold); }

.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: var(--color-cream);
    transition: color var(--transition);
}
.footer-social a:hover { color: var(--color-gold); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(177, 159, 125, 0.2);
    text-align: center;
    color: var(--color-gray);
}
.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #999;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal a:hover {
    color: var(--color-gold);
}

/* Legal pages */
.legal-page {
    padding: 12rem 0 4rem;
    min-height: 60vh;
}
.legal-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}
.legal-intro {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2rem;
}
.legal-section {
    margin-bottom: 2rem;
}
.legal-section h2 {
    font-size: 1.1rem;
    color: var(--color-cream);
    margin-bottom: 0.6rem;
    font-weight: 600;
}
.legal-section p,
.legal-section li {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
}
.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}
.legal-section a {
    color: var(--color-gold);
    text-decoration: underline;
}
.legal-section a:hover {
    color: #d4c4a0;
}

/* Results page resources */
.results-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.results-resource-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(177, 159, 125, 0.08);
    border: 1px solid rgba(177, 159, 125, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}
.results-resource-card:hover {
    background: rgba(177, 159, 125, 0.15);
    border-color: var(--color-gold);
}
.results-resource-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.results-resource-card div {
    flex: 1;
}
.results-resource-card strong {
    display: block;
    color: var(--color-cream);
    font-size: 0.9rem;
}
.results-resource-card span {
    color: var(--color-gray);
    font-size: 0.8rem;
}
.results-resource-card svg {
    color: var(--color-gold);
    flex-shrink: 0;
    opacity: 0.5;
}

/* 16. Forms
   ============================================ */
.form-card {
    background: var(--color-dark);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(177, 159, 125, 0.2);
    box-shadow: 0 25px 50px rgba(177, 159, 125, 0.05);
}

.form-checkboxes { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.25rem; }
.form-checkbox {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1rem; border-radius: var(--radius);
    border: 1px solid rgba(177, 159, 125, 0.3);
    cursor: pointer; transition: border-color var(--transition), background var(--transition);
    font-size: 0.9rem; color: var(--color-cream);
    min-height: 44px;
}
.form-checkbox:hover { border-color: var(--color-gold); }
.form-checkbox input[type="checkbox"] { accent-color: var(--color-gold); width: 1.25rem; height: 1.25rem; min-width: 1.25rem; cursor: pointer; }
.form-checkbox input[type="checkbox"]:checked + span { color: var(--color-gold); }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-dark);
    border: 1px solid rgba(177, 159, 125, 0.3);
    border-radius: var(--radius);
    color: var(--color-cream);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control::placeholder { color: rgba(177, 159, 125, 0.6); }
.form-control:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(177, 159, 125, 0.15);
}

textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
    cursor: pointer;
    background-color: var(--color-cream);
    color: var(--color-dark);
}
select.form-control option {
    background-color: var(--color-cream);
    color: var(--color-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-success {
    background: rgba(177, 159, 125, 0.1);
    border: 1px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: var(--radius);
    color: var(--color-cream);
    text-align: center;
    margin-bottom: 2rem;
}
.form-error {
    background: rgba(200, 50, 50, 0.1);
    border: 1px solid rgba(200, 50, 50, 0.4);
    padding: 1rem;
    border-radius: var(--radius);
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

/* 17. Contact Page
   ============================================ */

/* Hero */
.contact-hero {
    padding-top: 10rem;
    padding-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-bg) 100%);
}
.contact-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}
.contact-title {
    font-size: clamp(3rem, 8vw, 5rem);
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}
.contact-title span { color: var(--color-gold); }
.contact-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Services hero — titre plus compact */
.services-hero .contact-hero-inner { max-width: 900px; }
.services-hero .contact-title { font-size: clamp(2rem, 5vw, 3.2rem); }

/* Grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 4rem;
    }
}

/* Booking embed */
.contact-booking-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(177, 159, 125, 0.15);
}
.contact-booking-header svg {
    color: var(--color-gold);
    flex-shrink: 0;
}
.contact-booking-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.15rem;
}
.contact-booking-header p {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 400;
}

/* lemcal embed */
.lemcal-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(177, 159, 125, 0.2);
    background: rgba(255, 255, 255, 0.03);
}
.lemcal-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Contact cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(177, 159, 125, 0.12);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.contact-card:hover {
    border-color: rgba(177, 159, 125, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(177, 159, 125, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}
.contact-card-icon--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.contact-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}
.contact-card-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-cream);
    transition: color var(--transition);
}
.contact-card-link:hover {
    color: var(--color-gold);
}
.contact-card-text {
    font-size: 1rem;
    color: var(--color-cream);
}

/* Social links block */
.contact-social-block {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(177, 159, 125, 0.12);
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
}
.contact-social-block h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 1rem;
}
.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (min-width: 1024px) {
    .contact-social-links {
        flex-direction: row;
    }
    .contact-social-btn {
        flex: 1;
        justify-content: center;
    }
}
.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: rgba(177, 159, 125, 0.08);
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}
.contact-social-btn:hover {
    background: rgba(177, 159, 125, 0.18);
    color: var(--color-gold);
}
.contact-social-btn svg {
    flex-shrink: 0;
}

/* Devis CTA card */
.contact-devis-card {
    margin-top: 0.5rem;
}
.contact-devis-card-inner {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(177, 159, 125, 0.12) 0%, rgba(177, 159, 125, 0.04) 100%);
    border: 1px solid rgba(177, 159, 125, 0.2);
}
.contact-devis-card-inner h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.contact-devis-card-inner p {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Legacy support (deprecated) */
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h3 {
    text-transform: uppercase;
    font-size: 0.875rem;
    color: var(--color-gray);
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-info-block p {
    font-size: 1.125rem;
    color: var(--color-cream);
}
.contact-socials {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}
.contact-socials a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray);
    transition: color var(--transition);
}
.contact-socials a:hover { color: var(--color-gold); }

/* 18. Production Detail Page
   ============================================ */
.production-header {
    padding-top: 12rem;
    padding-bottom: 4rem;
    text-align: center;
}
.production-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-cream);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.production-header p {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 56rem;
    margin: 0 auto;
}

.production-media {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(177, 159, 125, 0.2);
    box-shadow: 0 25px 50px rgba(177, 159, 125, 0.1);
    margin-bottom: 4rem;
    position: relative;
}
.production-media img,
.production-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.production-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background var(--transition);
    cursor: pointer;
}
.production-play-btn:hover { background: rgba(0,0,0,0.5); }
.production-play-btn .play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(177, 159, 125, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.production-play-btn:hover .play-circle { transform: scale(1.1); }
.production-play-btn svg { color: var(--color-dark); width: 32px; height: 32px; }

/* Production Blocks */
.production-block {
    margin-bottom: 3rem;
}
.production-block-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(177, 159, 125, 0.2);
    box-shadow: 0 25px 50px rgba(177, 159, 125, 0.1);
    margin-bottom: 1.5rem;
}
.production-block-media img {
    width: 100%;
    height: auto;
    display: block;
}
.production-block-video {
    aspect-ratio: 16/9;
}
.production-block-video iframe,
.production-block-video video {
    width: 100%;
    height: 100%;
    display: block;
}
.production-block-text {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}
/* Layout: text-above */
.production-block.layout-text-above {
    display: flex;
    flex-direction: column;
}
.production-block.layout-text-above .production-block-text {
    order: -1;
    margin-bottom: 1.5rem;
}
.production-block.layout-text-above .production-block-media {
    margin-bottom: 0;
}
/* Layout: text-left */
.production-block.layout-text-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.production-block.layout-text-left .production-block-text {
    flex: 1;
    order: -1;
    max-width: none;
}
.production-block.layout-text-left .production-block-media {
    flex: 1;
    margin-bottom: 0;
}
/* Layout: text-right */
.production-block.layout-text-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.production-block.layout-text-right .production-block-text {
    flex: 1;
    max-width: none;
}
.production-block.layout-text-right .production-block-media {
    flex: 1;
    margin-bottom: 0;
}
/* Responsive: side-by-side → stacked on mobile */
@media (max-width: 768px) {
    .production-block.layout-text-left,
    .production-block.layout-text-right {
        flex-direction: column;
    }
    .production-block.layout-text-left .production-block-text,
    .production-block.layout-text-right .production-block-text {
        order: 0;
    }
}
.production-block-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-gold);
    margin-bottom: 1rem;
}
.production-block-text h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}
.production-block-text h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}
.production-block-text p {
    font-size: 1.125rem;
    color: var(--color-cream);
    line-height: 1.8;
}

/* Production block grid (packshots) */
.production-block-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}
.production-block-grid-item {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}
.production-block-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 767px) {
    .production-block-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.production-challenge {
    background: var(--color-dark);
    border-top: 1px solid rgba(177, 159, 125, 0.2);
    border-bottom: 1px solid rgba(177, 159, 125, 0.2);
    padding: 4rem 0;
}
.production-challenge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 768px) { .production-challenge-grid { grid-template-columns: repeat(2, 1fr); } }
.production-challenge h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}
.production-challenge p { font-size: 1.125rem; color: var(--color-cream); }

.production-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem 0;
}
@media (min-width: 768px) { .production-gallery { grid-template-columns: repeat(2, 1fr); } }
.production-gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(177, 159, 125, 0.2);
}
.production-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.production-cta {
    padding: 6rem 0;
    text-align: center;
}
.production-cta h2 { color: var(--color-cream); margin-bottom: 1rem; }
.production-cta p { color: var(--color-gray); margin-bottom: 2rem; font-size: 1.125rem; }

/* Related productions */
.related-title { margin-bottom: 2rem; }

/* ============================================
   Case Study — production.php (cs-*)
   ============================================ */

/* --- Page background --- */
main.cs {
    background: #251C14;
}

/* --- Hero --- */
.cs-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #251C14;
}
.cs-hero__bg {
    position: absolute;
    inset: 0;
    will-change: transform;
    overflow: hidden;
}
.cs-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.cs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(37, 28, 20, 0.95) 0%,
        rgba(37, 28, 20, 0.85) 40%,
        rgba(37, 28, 20, 0.6) 70%,
        rgba(37, 28, 20, 0.45) 100%
    );
}
.cs-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9rem 0 1.5rem;
}
.cs-hero__cat {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}
.cs-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--color-cream);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.cs-hero__client {
    font-size: 1.125rem;
    color: var(--color-gray);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.cs-hero__client-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(0.88) sepia(0.15) saturate(0.3) hue-rotate(15deg);
}
.cs-hero__logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(0.85);
}
.cs-hero__scroll {
    display: flex;
    justify-content: center;
}
.cs-hero__mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(177,159,125,0.4);
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}
.cs-hero__mouse-dot {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 4px;
    animation: cs-scrollDot 2s ease-in-out infinite;
}
@keyframes cs-scrollDot {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(12px); }
}
@media (max-width: 768px) {
    .cs-hero__content { padding: 3.5rem 0 1rem; }
    .cs-hero__scroll { display: none; }
}

/* --- Section commune --- */
.cs-section {
    padding: 5rem 0;
    background: #251C14;
}
.cs-section__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-cream);
    margin-bottom: 2rem;
    text-align: center;
}

/* --- Contexte (inside hero, overlaps into next section) --- */
.cs-context {
    position: relative;
    z-index: 3;
    width: 50%;
    margin: 1rem auto -3rem;
}
.cs-context__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #E1DACD;
    border: none;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(225, 218, 205, 0.15);
}
@media (max-width: 1024px) {
    .cs-context { width: 70%; }
}
@media (max-width: 768px) {
    .cs-context { width: 90%; }
}
.cs-context__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3a2a1a;
    margin-bottom: 1rem;
}
.cs-context__text p {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #3a2d20;
    margin-bottom: 1rem;
}
.cs-context__text p:last-child { margin-bottom: 0; }
.cs-context__footer {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(37,28,20,0.1);
    margin-top: 0.5rem;
}
.cs-context__footer .cs-meta-item {
    flex: 1;
    text-align: center;
}
.cs-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.cs-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}
.cs-meta-value {
    font-size: 1rem;
    color: var(--color-cream);
    font-weight: 400;
}
.cs-context__footer .cs-meta-label {
    color: #251C14;
}
.cs-context__footer .cs-meta-value {
    color: #251C14;
    font-weight: 600;
}

/* --- Dark sections (vidéo → packshots) --- */
.cs-video,
.cs-packshots {
    background: #0C0D0D;
}
.cs-story {
    background: #251C14;
}

/* --- Storytelling (Défi / Approche / Résultat) --- */
.cs-story {
    border-bottom: 1px solid rgba(177, 159, 125, 0.15);
}
.cs-story__block {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(177, 159, 125, 0.1);
}
.cs-story__block:last-child { border-bottom: none; }
.cs-story__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(177, 159, 125, 0.12);
    border: 1px solid rgba(177, 159, 125, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}
.cs-story__icon svg { width: 22px; height: 22px; }
.cs-story__content { flex: 1; }
.cs-story__label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}
.cs-story__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-cream);
}
@media (max-width: 768px) {
    .cs-story__block { flex-direction: column; gap: 1rem; }
}

/* --- Process carousel (sous Notre Approche) --- */
.cs-process-images {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}
.cs-process-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cs-process-group__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    text-align: center;
}
.cs-process-carousel {
    position: relative;
    height: 350px;
}
.cs-process-carousel__viewport {
    overflow: hidden;
    height: 100%;
    border-radius: 1rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.cs-process-carousel__track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
    align-items: center;
}
.cs-process-carousel__img {
    flex: 0 0 auto;
    height: 90%;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    padding: 0 0.5rem;
    border-radius: 1rem;
}
.cs-process-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
.cs-process-carousel__btn svg { width: 14px; height: 14px; }
.cs-process-carousel:hover .cs-process-carousel__btn { opacity: 1; }
.cs-process-carousel__prev { left: 0.5rem; }
.cs-process-carousel__next { right: 0.5rem; }

/* Process lightbox */
.cs-process-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
}
.cs-process-lightbox.active { display: flex; }
.cs-process-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
}
.cs-process-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cs-process-images { flex-direction: column; align-items: center; }
    .cs-process-carousel { height: 250px; }
    .cs-process-carousel__btn { opacity: 1; }
}

/* --- Vidéo embed --- */
.cs-video__wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(177, 159, 125, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.cs-video__play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.3s ease;
}
.cs-video__play-overlay.hidden { opacity: 0; pointer-events: none; }
.cs-video__play-overlay:hover { background: rgba(0, 0, 0, 0.5); }
.cs-video__play-overlay:hover .play-circle { transform: scale(1.1); }
.cs-video__play-overlay .play-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.cs-video__play-overlay svg { color: var(--color-dark); width: 36px; height: 36px; }
.cs-video__wrapper iframe,
.cs-video__wrapper video {
    width: 100%;
    height: 100%;
    display: block;
}
.cs-video__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* --- Packshots --- */
.cs-packshots__header {
    text-align: center;
    margin-bottom: 2rem;
}
.cs-packshots__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray);
    max-width: 48rem;
    margin: 0 auto;
}
.cs-packshots__grid {
    display: grid;
    gap: 1rem;
}
.cs-packshots__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}
.cs-packshots__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0, 0.15, 1);
}
.cs-packshots__item:hover img {
    transform: scale(1.06);
}
.cs-packshots__zoom {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(40, 30, 21, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s, transform 0.3s;
}
.cs-packshots__zoom svg { width: 16px; height: 16px; }
.cs-packshots__item:hover .cs-packshots__zoom {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 767px) {
    .cs-packshots__grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- Témoignage client enrichi --- */
.cs-testimonial__card {
    margin: 0 auto;
    text-align: center;
}
.cs-testimonial__quote {
    position: relative;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    line-height: 1.7;
    color: var(--color-cream);
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--color-gold);
    text-align: left;
    margin-bottom: 2rem;
    background: rgba(177, 159, 125, 0.04);
    border-radius: 0 12px 12px 0;
}
.cs-testimonial__guillemet {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}
.cs-testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.cs-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(177, 159, 125, 0.2);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    object-fit: cover;
}
.cs-testimonial__name {
    font-weight: 600;
    color: var(--color-cream);
    font-size: 1rem;
}
.cs-testimonial__role {
    color: var(--color-gray);
    font-size: 0.875rem;
}
.cs-testimonial__video-section {
    margin-top: 2rem;
}
.cs-testimonial__intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

/* --- Related productions marquee --- */
.cs-related {
    background: #281E15;
    overflow: hidden;
}
.cs-related__marquee {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.cs-related__track {
    display: flex;
    gap: 1.5rem;
    animation: cs-related-scroll 30s linear infinite;
    width: max-content;
}
.cs-related__card.portfolio-card {
    flex-shrink: 0;
    width: 380px;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 4/3;
}
.cs-related__card.portfolio-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cs-related__card.portfolio-card:hover > img { transform: scale(1.05); }
@keyframes cs-related-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}
.cs-related__link {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.cs-related__link:hover { text-decoration: underline; }
@media (max-width: 640px) {
    .cs-related__card.portfolio-card { width: 280px; }
}
@media (prefers-reduced-motion: reduce) {
    .cs-related__track { animation: none; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .cs-related__card.portfolio-card[aria-hidden="true"] { display: none; }
}

/* --- CTA --- */
.cs-cta {
    text-align: center;
    padding: 6rem 0;
    background: var(--color-cream);
}
.cs-cta__title {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    color: #281E15;
    margin-bottom: 1rem;
}
.cs-cta__text {
    color: #5a4a3a;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.cs-cta .btn-primary {
    background: #281E15;
    color: var(--color-cream);
}
.cs-cta .btn-primary:hover {
    background: #3a2d20;
}

/* --- Lightbox --- */
.cs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 8, 5, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.cs-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.cs-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.25, 0, 0.15, 1);
}
.cs-lightbox.active .cs-lightbox__img {
    transform: scale(1);
}
.cs-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(177, 159, 125, 0.15);
    border: 1px solid rgba(177, 159, 125, 0.3);
    border-radius: 50%;
    color: var(--color-cream);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cs-lightbox__close:hover { background: rgba(177, 159, 125, 0.3); }
.cs-lightbox__prev,
.cs-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(177, 159, 125, 0.1);
    border: 1px solid rgba(177, 159, 125, 0.25);
    border-radius: 50%;
    color: var(--color-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.cs-lightbox__prev { left: 1.5rem; }
.cs-lightbox__next { right: 1.5rem; }
.cs-lightbox__prev:hover,
.cs-lightbox__next:hover {
    background: rgba(177, 159, 125, 0.25);
}
.cs-lightbox__prev svg,
.cs-lightbox__next svg { width: 20px; height: 20px; }
.cs-lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 600;
    letter-spacing: 0.1em;
}
@media (max-width: 768px) {
    .cs-lightbox__prev,
    .cs-lightbox__next { width: 40px; height: 40px; }
    .cs-lightbox__prev { left: 0.75rem; }
    .cs-lightbox__next { right: 0.75rem; }
}

/* 19. Offres Page
   ============================================ */
.offres-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .offres-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offres-grid { grid-template-columns: repeat(3, 1fr); } }

.offre-card {
    background: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color var(--transition), transform var(--transition);
}
.offre-card:hover {
    border-color: rgba(177, 159, 125, 0.3);
    transform: translateY(-4px);
}
.offre-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(177, 159, 125, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}
.offre-card h3 { font-size: 1.25rem; color: var(--color-white); margin-bottom: 1rem; font-weight: 700; }
.offre-card p { color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Process steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    counter-reset: step;
}
@media (min-width: 768px) { .process-steps { flex-direction: row; } }

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    counter-increment: step;
}
.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 900;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1.125rem; color: var(--color-white); margin-bottom: 0.5rem; font-weight: 700; }
.process-step p { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

/* 20. Video Modal
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.video-modal.open { display: flex; }

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    cursor: pointer;
}
.video-modal-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-black);
}
.video-modal-content iframe,
.video-modal-content video {
    width: 100%;
    height: 100%;
    border: none;
}
.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    color: var(--color-white);
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: background var(--transition);
}
.video-modal-close:hover { background: rgba(0,0,0,0.8); }

/* 21. Hero Proof Strip
   ============================================ */
.hero-proof-strip {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.hero-proof-strip img {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    object-fit: cover;
    border: 2px solid rgba(177,159,125,0.4);
    transition: transform 0.3s, border-color 0.3s;
}
.hero-proof-strip img:hover {
    transform: scale(1.1);
    border-color: var(--color-gold);
}
@media (min-width: 768px) {
    .hero-proof-strip img { width: 80px; height: 80px; }
}

/* 22. Before/After Slider
   ============================================ */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .ba-grid { grid-template-columns: repeat(3, 1fr); }
}
.ba-slider-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}
.ba-img-before, .ba-img-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-img-after {
    clip-path: inset(0 50% 0 0);
}
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--color-gold);
    transform: translateX(-50%);
    z-index: 2;
}
.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ba-handle-circle svg {
    width: 12px;
    height: 12px;
    color: var(--color-dark);
}
.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    color: var(--color-cream);
    z-index: 3;
    pointer-events: none;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* 23. AI Gallery
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.gallery-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-size: 0.85rem;
    color: var(--color-cream);
    font-weight: 600;
}

/* 24. Value Props
   ============================================ */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}
.value-prop {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.value-prop-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(177,159,125,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}
.value-prop-icon svg {
    width: 22px;
    height: 22px;
}
.value-prop h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}
.value-prop p {
    font-size: 1rem;
    color: var(--color-gray);
    opacity: 0.7;
    line-height: 1.5;
}

/* 25. Process Steps
   ============================================ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
}
@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        gap: 0;
    }
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}
.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}
.process-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--color-gray);
    opacity: 0.6;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        left: calc(50% + 32px);
        right: calc(-50% + 32px);
        height: 2px;
        background: rgba(177,159,125,0.3);
        z-index: 1;
    }
}

/* 26. Legacy Services
   ============================================ */
.legacy-services {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.legacy-services .section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* 27. Animations
   ============================================ */
@keyframes bg-drift-1 {
    0% { transform: translate(-5%, -5%) scale(1.1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}
@keyframes bg-drift-2 {
    0% { transform: translate(5%, 5%) scale(1.2); }
    100% { transform: translate(-5%, -5%) scale(1.2); }
}
@keyframes bg-drift-3 {
    0% { transform: translate(0%, 10%) scale(1.05); }
    100% { transform: translate(0%, -10%) scale(1.05); }
}

@keyframes cta-drift-1 {
    0% { transform: translate(-5%, 5%) scale(1.15); }
    100% { transform: translate(5%, -5%) scale(1.15); }
}
@keyframes cta-drift-2 {
    0% { transform: translate(5%, -5%) scale(1.25); }
    100% { transform: translate(-5%, 5%) scale(1.25); }
}
@keyframes cta-drift-3 {
    0% { transform: translate(2%, -8%) scale(1.1); }
    100% { transform: translate(-2%, 8%) scale(1.1); }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}
@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* 22. Page Header (inner pages)
   ============================================ */
.page-header {
    padding-top: 10rem;
    padding-bottom: 4rem;
}
.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-cream);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 40rem;
}

/* 23. A-propos specifics
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid .value-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 1rem);
        margin: 0 auto;
    }
}

.value-card {
    background: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}
.value-card h3 { font-size: 1.25rem; color: var(--color-gold); margin-bottom: 0.75rem; font-weight: 700; }
.value-card p { color: rgba(255,255,255,0.5); }

/* Value cards light theme (page about) */
.page-about .values-grid .value-card {
    background: var(--color-white);
    border: 1px solid rgba(255,255,255,0.1);
}
.page-about .values-grid .value-card p { color: rgba(40,30,21,0.6); }

/* 24. Responsive utilities
   ============================================ */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 768px) { .hide-desktop { display: none; } }

/* 25. Misc
   ============================================ */
.aspect-video { aspect-ratio: 16/9; }
.rounded-2xl { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }

/* ============================================
   26. INFINITE STUDIO — Landing Page
   ============================================ */

/* --- Hero --- */
.is-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.is-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.is-hero-bg .is-placeholder {
    width: 100%;
    height: 100%;
}
.is-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.7) 50%, rgba(26,20,16,0.95) 100%);
}
.is-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}
.is-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.15;
    margin: 1.25rem 0 1.5rem;
}
.is-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.is-hero-proof {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: rgba(203,202,202,0.6);
    letter-spacing: 0.02em;
}

/* --- Stats Bar --- */
.is-stats-bar {
    background: var(--color-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(177,159,125,0.15);
    border-bottom: 1px solid rgba(177,159,125,0.15);
}
.is-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .is-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.is-stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1.2;
}
.is-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 0.35rem;
}

/* --- Problem Section --- */
.is-problem { max-width: 720px; }
.is-problem-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.25rem;
}
.is-problem-punch {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-cream) !important;
    margin-top: 1.5rem;
}
.is-problem-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 3rem;
}
@media (min-width: 600px) {
    .is-problem-list { grid-template-columns: 1fr 1fr; }
}
.is-frustration-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(177,159,125,0.05);
    border: 1px solid rgba(177,159,125,0.12);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--color-cream);
}
.is-frustration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(177,159,125,0.1);
    border-radius: var(--radius);
    color: var(--color-gold);
}
.is-frustration-icon svg { width: 18px; height: 18px; }

/* --- Solution Section --- */
.is-solution-section {
    background: rgba(177,159,125,0.03);
}
.is-solution {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.is-solution p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-top: 1rem;
}

/* --- Section Subtitle (shared) --- */
.is-section-sub {
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
    text-align: center;
}

/* --- Timeline / Steps --- */
.is-timeline {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}
.is-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(177,159,125,0.15));
}
.is-step {
    display: flex;
    gap: 1.25rem;
    position: relative;
}
.is-step-number {
    position: absolute;
    left: -2.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.is-step-content {
    background: rgba(177,159,125,0.04);
    border: 1px solid rgba(177,159,125,0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    flex: 1;
}
.is-step-timing {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    background: rgba(177,159,125,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}
.is-step-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}
.is-step-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
}
@media (min-width: 768px) {
    .is-timeline { padding-left: 3.5rem; }
    .is-timeline::before { left: 22px; }
    .is-step-number {
        left: -3.5rem;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* --- Hit / Pillars --- */
.is-hit-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-cream);
    text-align: center;
    max-width: 750px;
    margin: 1rem auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}
.is-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .is-pillars { grid-template-columns: repeat(3, 1fr); }
}
.is-pillar {
    background: rgba(177,159,125,0.04);
    border: 1px solid rgba(177,159,125,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s;
}
.is-pillar:hover { border-color: rgba(177,159,125,0.3); }
.is-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(177,159,125,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-gold);
}
.is-pillar-icon svg { width: 22px; height: 22px; }
.is-pillar h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}
.is-pillar p {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* --- Before / After --- */
.is-before-after {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .is-before-after { grid-template-columns: repeat(3, 1fr); }
}
.is-ba-img { aspect-ratio: 4/5; border-radius: var(--radius); }
.is-ba-caption {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-gray);
    font-style: italic;
    margin-top: 1.5rem;
}

/* --- Comparison Table --- */
.is-compare {
    max-width: 800px;
    margin: 2.5rem auto 0;
    overflow-x: auto;
}
.is-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}
.is-compare-table th,
.is-compare-table td {
    padding: 0.875rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(177,159,125,0.1);
}
.is-compare-table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray);
    font-weight: 600;
    padding-bottom: 1rem;
}
.is-compare-table thead th.is-highlight-col {
    color: var(--color-gold);
}
.is-compare-label {
    font-weight: 600;
    color: var(--color-cream);
    white-space: nowrap;
}
.is-highlight-col {
    color: var(--color-gold);
    font-weight: 600;
    background: rgba(177,159,125,0.04);
}
.is-roi-highlight-row td {
    border-top: 2px solid var(--color-gold);
    font-size: 1rem;
}
.is-roi-conclusion {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--color-cream);
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    line-height: 1.7;
    font-weight: 600;
}

/* --- Gallery --- */
.is-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .is-gallery { grid-template-columns: repeat(3, 1fr); }
}
.is-gallery-item {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    transition: transform 0.3s;
}
.is-gallery-item:hover { transform: scale(1.03); }

/* --- Testimonials --- */
.is-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .is-testimonials { grid-template-columns: repeat(3, 1fr); }
}
.is-testimonial-card {
    background: rgba(177,159,125,0.04);
    border: 1px solid rgba(177,159,125,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
}
.is-testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    font-size: 0.6rem;
}
.is-testimonial-card blockquote {
    font-size: 0.9rem;
    color: var(--color-cream);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.is-testimonial-card cite {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-style: normal;
}
.is-testimonial-card cite strong { color: var(--color-cream); }

/* --- Bonuses --- */
.is-bonuses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.is-bonus-card {
    background: rgba(177,159,125,0.04);
    border: 1px solid rgba(177,159,125,0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.3s;
}
.is-bonus-card:hover { border-color: rgba(177,159,125,0.3); }
.is-bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.is-bonus-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-cream);
}
.is-bonus-value {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-gold);
    white-space: nowrap;
}
.is-bonus-value del {
    color: var(--color-gray);
    font-weight: 400;
    margin-right: 0.35rem;
}
.is-bonus-card p {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.6;
}
.is-bonus-total {
    text-align: center;
    font-size: 1.05rem;
    color: var(--color-gold);
    margin-top: 2rem;
}

/* --- Pricing Card --- */
.is-pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(177,159,125,0.05);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
}
.is-pricing-amount {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin: 1.25rem 0 0.5rem;
}
.is-pricing-amount span {
    font-size: 0.4em;
    font-weight: 400;
    color: var(--color-gray);
    vertical-align: super;
}
.is-pricing-sub {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}
.is-pricing-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}
.is-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--color-cream);
    border-bottom: 1px solid rgba(177,159,125,0.08);
    line-height: 1.5;
}
.is-pricing-list li svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}
.is-pricing-note {
    font-size: 0.8rem;
    color: rgba(203,202,202,0.6);
    margin-top: 0.75rem;
}

/* --- Guarantees --- */
.is-guarantees {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .is-guarantees { grid-template-columns: 1fr 1fr; }
}
.is-guarantee-card {
    background: rgba(177,159,125,0.04);
    border: 1px solid rgba(177,159,125,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
}
.is-guarantee-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(177,159,125,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-gold);
}
.is-guarantee-icon svg { width: 20px; height: 20px; }
.is-guarantee-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}
.is-guarantee-card p {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* --- Founder --- */
.is-founder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .is-founder { grid-template-columns: 280px 1fr; }
}
.is-founder-text p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-top: 1rem;
}
.is-founder-sign {
    font-weight: 600;
    color: var(--color-gold) !important;
    font-style: italic;
    margin-top: 1.5rem !important;
}

/* --- FAQ Accordion --- */
.is-faq {
    max-width: 740px;
    margin: 2.5rem auto 0;
}
.is-faq-item {
    border-bottom: 1px solid rgba(177,159,125,0.12);
}
.is-faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-cream);
    transition: color 0.2s;
}
.is-faq-question:hover { color: var(--color-gold); }
.is-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.3s;
}
.is-faq-item.active .is-faq-icon { transform: rotate(45deg); }
.is-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.is-faq-item.active .is-faq-answer {
    max-height: 300px;
}
.is-faq-answer p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* --- CTA Final --- */
.is-cta-final {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-bg) 100%);
}

/* --- Placeholder (for all visuals) --- */
.is-placeholder {
    background: linear-gradient(135deg, rgba(177,159,125,0.08) 0%, rgba(177,159,125,0.02) 100%);
    border: 1px dashed rgba(177,159,125,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(177,159,125,0.4);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- ROI Table tweak --- */
.is-roi-table { margin-top: 2rem; }

/* ============================================
   26b. PROMPT STUDIO — Specific Styles
   ============================================ */

/* --- Before/After paired layout --- */
.ps-before-after {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ps-before-after-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.ps-label-before,
.ps-label-after {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.5rem 0;
}

.ps-label-before {
    color: var(--color-gray);
}

.ps-label-after {
    color: var(--color-gold);
}

.ps-ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ps-ba-img {
    aspect-ratio: 4/5;
    border-radius: 0.5rem;
}

/* --- Upsell card --- */
.ps-upsell {
    background: rgba(177, 159, 125, 0.08);
    border: 2px solid var(--color-gold);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ps-upsell-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-cream);
    margin: 1rem 0;
}

.ps-upsell-text {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ps-upsell-text strong {
    color: var(--color-gold);
}

.ps-upsell-highlight {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.ps-upsell-note {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* ============================================
   27. SERVICES — Pricing Tiers (Lemlist-style)
   ============================================ */

/* --- Tiers Grid --- */
.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .pricing-tiers {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: stretch;
    }
}
.pricing-tiers--duo { max-width: 56rem; }
@media (min-width: 768px) {
    .pricing-tiers--duo { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
@media (min-width: 1024px) {
    .pricing-tiers--duo { grid-template-columns: 1fr 1fr; }
}

/* --- Tier Card (base) --- */
.pricing-tier {
    position: relative;
    background: rgba(177,159,125,0.03);
    border: 1px solid rgba(177,159,125,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-tier:hover {
    border-color: rgba(177,159,125,0.3);
}

/* --- Featured Tier (middle) --- */
.pricing-tier-featured {
    border: 2px solid var(--color-gold);
    background: linear-gradient(180deg, rgba(177,159,125,0.07) 0%, rgba(26,20,16,1) 100%);
}
@media (min-width: 1024px) {
    .pricing-tier-featured {
        transform: scale(1.03);
        box-shadow: 0 12px 48px rgba(177,159,125,0.15);
        padding: 2.5rem 2rem 2.5rem;
    }
}

/* --- Badge "Populaire" --- */
.pricing-tier-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-gold);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* --- Tier Header --- */
.pricing-tier-header {
    margin-bottom: 1.5rem;
}
.pricing-tier-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: none;
    line-height: 1.2;
}
.pricing-tier-desc {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* --- Price --- */
.pricing-tier-price {
    margin-bottom: 1.25rem;
}
.pricing-tier-amount {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}
.pricing-tier-custom {
    font-size: 1.75rem;
    font-weight: 800;
}
.pricing-tier-period {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 0.35rem;
}

/* --- CTA button --- */
.pricing-tier-cta {
    margin-bottom: 1.75rem;
}
.pricing-tier-btn {
    width: 100%;
}

/* --- Divider --- */
.pricing-tier-divider {
    height: 1px;
    background: rgba(177,159,125,0.12);
    margin-bottom: 1.5rem;
}

/* --- "Tout de X, plus :" label --- */
.pricing-tier-includes {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(203,202,202,0.5);
    margin-bottom: 0.75rem;
}

/* --- Features List --- */
.pricing-tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    flex: 1;
}
.pricing-tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-cream);
    line-height: 1.5;
}

/* --- Dot bullet (like Lemlist) --- */
.pricing-tier-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    margin-top: 0.35rem;
}

/* --- "Découvrir tous les détails" link --- */
.pricing-tier-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: auto;
    padding-top: 0.5rem;
    transition: gap 0.3s ease;
}
.pricing-tier-link:hover {
    gap: 0.75rem;
}
.pricing-tier-link svg {
    width: 14px;
    height: 14px;
}

/* --- Client Logos Bar --- */
.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
}
.client-logo {
    width: 100%;
    height: 48px;
    object-fit: contain;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.client-logo:hover {
    opacity: 0.7;
}
@media (max-width: 767px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }
    .client-logo {
        height: 32px;
    }
}
@media (min-width: 768px) {
    .client-logos {
        gap: 2.5rem;
    }
    .client-logo {
        height: 56px;
    }
}

/* ============================================
   27b. SERVICES HUB — Two-service layout
   ============================================ */

/* Hero */
.sv-hero {
    padding: 7rem 0 4rem;
    text-align: center;
    background: var(--color-dark);
}
.sv-hero__inner { max-width: 48rem; margin: 0 auto; }
.sv-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--color-cream);
    margin: 1rem 0;
}
.sv-hero__sub {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 32rem;
    margin: 0 auto;
}

/* Service sections */
.sv-service { padding: 5rem 0; }
.sv-service--alt { background: rgba(26, 20, 16, 0.5); }

.sv-service__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.sv-service__layout--reverse .sv-service__content { order: -1; }

@media (max-width: 768px) {
    .sv-service__layout,
    .sv-service__layout--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sv-service__layout--reverse .sv-service__content { order: 0; }
}

/* Preview grid (video productions) */
.sv-service__preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-radius: 1rem;
    overflow: hidden;
}
.sv-service__preview-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 0.5rem;
}
.sv-service__preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.sv-service__preview-item:hover img { transform: scale(1.05); }

/* Showcase card (Infinite Studio) */
.sv-service__showcase {
    background: linear-gradient(135deg, #1A1410 0%, #281E15 100%);
    border: 1px solid rgba(177, 159, 125, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
}
.sv-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(177, 159, 125, 0.15);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}
.sv-showcase__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.sv-showcase__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sv-showcase__stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}
.sv-showcase__stat-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

/* Service content */
.sv-service__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-cream);
    margin: 0.5rem 0 0.75rem;
}
.sv-service__price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}
.sv-service__price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray);
}
.sv-service__desc {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Benefits list */
.sv-service__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sv-service__benefits li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.sv-benefit__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(177, 159, 125, 0.1);
    border-radius: 0.5rem;
    color: var(--color-gold);
}
.sv-service__benefits strong {
    display: block;
    color: var(--color-cream);
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.sv-service__benefits p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Actions */
.sv-service__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.sv-service__link {
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.sv-service__link:hover { text-decoration: underline; }
.sv-service__note {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-style: italic;
}

/* Compare grid */
.sv-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(177, 159, 125, 0.15);
}
.sv-compare__col { display: flex; flex-direction: column; }
.sv-compare__col--header {
    background: transparent;
}
.sv-compare__col--featured {
    background: rgba(177, 159, 125, 0.08);
    border-left: 1px solid rgba(177, 159, 125, 0.15);
}
.sv-compare__col:not(.sv-compare__col--header):not(.sv-compare__col--featured) {
    border-left: 1px solid rgba(177, 159, 125, 0.1);
}
.sv-compare__cell {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(177, 159, 125, 0.08);
    font-size: 0.9rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    min-height: 3.5rem;
}
.sv-compare__cell:last-child { border-bottom: none; padding: 1.25rem; justify-content: center; }
.sv-compare__cell--title {
    font-weight: 700;
    color: var(--color-cream);
    font-size: 1rem;
    gap: 0.5rem;
    min-height: 4rem;
}
.sv-compare__cell--empty { min-height: 4rem; }
.sv-compare__col--header .sv-compare__cell {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .sv-compare__grid {
        grid-template-columns: 1fr;
    }
    .sv-compare__col--header { display: none; }
    .sv-compare__col {
        border-left: none !important;
        border-bottom: 1px solid rgba(177, 159, 125, 0.15);
        padding-bottom: 1rem;
    }
    .sv-compare__col:last-child { border-bottom: none; }
}

/* CTA */
.sv-cta { background: var(--color-dark); }
.sv-cta__sub {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}
.sv-cta__founder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.sv-cta__photo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(177, 159, 125, 0.3);
}
.sv-cta__sign {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
}

/* Prompt Studio block on services page (dark bg override) */
.sv-leadmagnet::before { display: none !important; }
.sv-leadmagnet .hp-eyebrow { color: var(--color-gold) !important; }
.sv-leadmagnet .hp-title { color: var(--color-cream) !important; }
.sv-leadmagnet .hp-text { color: #CBCACA !important; }
.sv-leadmagnet .hp-text strong { color: var(--color-cream) !important; }

/* ============================================
   28. WIZARD — Lead Magnet Prompt Studio
   ============================================ */

.wizard-container {
    max-width: 720px;
    margin: 0 auto;
}

/* --- Progress Bar --- */
.wizard-progress {
    margin-bottom: 3rem;
}
.wizard-progress-track {
    height: 3px;
    background: rgba(177,159,125,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.wizard-progress-bar {
    height: 100%;
    width: 25%;
    background: var(--color-gold);
    border-radius: 2px;
    transition: width 0.5s ease;
}
.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.wizard-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.wizard-step-dot span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(177,159,125,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray);
    transition: all 0.3s ease;
}
.wizard-step-dot small {
    font-size: 0.65rem;
    color: rgba(203,202,202,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wizard-step-dot.active span {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(177,159,125,0.1);
}
.wizard-step-dot.active small {
    color: var(--color-gold);
}
.wizard-step-dot.completed span {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-dark);
}

/* --- Step Container --- */
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
    animation: wizardFadeIn 0.35s ease;
}
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Step Header --- */
.wizard-step-header {
    text-align: center;
    margin-bottom: 2rem;
}
.wizard-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.wizard-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Separator --- */
.wizard-separator {
    height: 1px;
    background: rgba(177,159,125,0.12);
    margin: 1.75rem 0;
}

/* --- Option Cards Grid (Steps 2 & 3) --- */
.wizard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
@media (min-width: 640px) {
    .wizard-grid { grid-template-columns: repeat(3, 1fr); }
}
.wizard-grid-ambiance {
    grid-template-columns: repeat(2, 1fr);
}

.wizard-option-card {
    background: rgba(177,159,125,0.04);
    border: 2px solid rgba(177,159,125,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cream);
    font-family: var(--font-main);
}
.wizard-option-card:hover {
    border-color: rgba(177,159,125,0.4);
    background: rgba(177,159,125,0.08);
}
.wizard-option-card.selected {
    border-color: var(--color-gold);
    background: rgba(177,159,125,0.12);
    box-shadow: 0 0 0 3px rgba(177,159,125,0.15);
}
.wizard-option-emoji {
    font-size: 2rem;
    line-height: 1;
}
.wizard-option-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-cream);
}
.wizard-option-desc {
    font-size: 0.75rem;
    color: var(--color-gray);
    line-height: 1.4;
}

/* --- Consent Checkbox --- */
.wizard-consent {
    margin-top: 1.5rem;
}
.wizard-consent-note {
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: #999;
    line-height: 1.4;
    text-align: center;
}
.wizard-consent-note a {
    color: #B19F7D;
    text-decoration: underline;
}
.wizard-consent-note a:hover {
    color: #d4c4a0;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #CBCACA;
    line-height: 1.5;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #B19F7D;
    cursor: pointer;
}
.consent-label a {
    color: #B19F7D;
    text-decoration: underline;
}
.consent-label a:hover {
    color: #d4c5a9;
}

/* --- Navigation Buttons --- */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}
.wizard-icon-flip {
    transform: rotate(180deg);
}
.wizard-next-btn:disabled,
.wizard-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* --- Loader --- */
.wizard-loader {
    text-align: center;
    padding: 4rem 0;
}
.wizard-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(177,159,125,0.2);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: wizardSpin 0.7s linear infinite;
}
@keyframes wizardSpin {
    to { transform: rotate(360deg); }
}
.wizard-loader p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* --- Error --- */
.wizard-error {
    background: rgba(200,50,50,0.1);
    border: 1px solid rgba(200,50,50,0.4);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    color: #ff6b6b;
    text-align: center;
    margin-top: 1.5rem;
}

/* --- Guide d'utilisation (Step 4) --- */
.wizard-guide {
    background: rgba(177,159,125,0.06);
    border: 1px solid rgba(177,159,125,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
}
.wizard-guide-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 1rem;
}
.wizard-guide-title svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}
.wizard-guide-steps {
    list-style: none;
    counter-reset: guide;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding: 0;
}
.wizard-guide-steps li {
    counter-increment: guide;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.5;
}
.wizard-guide-steps li::before {
    content: counter(guide);
    min-width: 22px;
    height: 22px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.wizard-guide-steps li strong {
    color: var(--color-cream);
}
.wizard-guide-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-gray);
    line-height: 1.5;
    padding-top: 1rem;
    border-top: 1px solid rgba(177,159,125,0.1);
}
.wizard-guide-tip svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.wizard-guide-tip strong {
    color: var(--color-gold);
}

/* --- Results (Step 4) --- */
.wizard-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.wizard-email-notice {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-top: 0.5rem;
}
.wizard-permanent-link {
    font-size: 0.85rem;
    margin-top: 0.3rem;
}
.wizard-permanent-link a {
    color: var(--color-gold);
    text-decoration: none;
}
.wizard-permanent-link a:hover {
    color: #d4c4a0;
    text-decoration: underline;
}
.wizard-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* --- Prompt Card --- */
.wizard-prompt-card {
    background: rgba(177,159,125,0.04);
    border: 1px solid rgba(177,159,125,0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: border-color 0.3s;
}
.wizard-prompt-card:hover {
    border-color: rgba(177,159,125,0.3);
}
.wizard-prompt-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.wizard-prompt-number {
    width: 26px;
    height: 26px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.wizard-prompt-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-cream);
    line-height: 1.3;
}
.wizard-prompt-text {
    background: rgba(0,0,0,0.25);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
    font-family: var(--font-main);
    border: 1px solid rgba(177,159,125,0.08);
    max-height: calc(5 * 1.55em);
    overflow-y: auto;
}
.wizard-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(177,159,125,0.3);
    border-radius: var(--radius);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}
.wizard-copy-btn:hover {
    background: rgba(177,159,125,0.1);
    border-color: var(--color-gold);
}
.wizard-copy-btn.copied {
    border-color: #4CAF50;
    color: #4CAF50;
    background: rgba(76,175,80,0.08);
}
.wizard-copy-btn svg {
    width: 14px;
    height: 14px;
}

/* --- Upsell (Step 4) --- */
.wizard-upsell {
    background: rgba(177,159,125,0.06);
    border: 2px solid rgba(177,159,125,0.2);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2rem;
}
.wizard-upsell-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}
.wizard-upsell-badge svg {
    width: 14px;
    height: 14px;
}
.wizard-upsell-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.wizard-upsell-text {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.wizard-upsell-text strong {
    color: var(--color-gold);
}

/* --- Qualifying cards grid --- */
.wizard-grid-qualifying {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .wizard-grid-qualifying { grid-template-columns: 1fr; }
}
.wizard-qualifying-card {
    flex-direction: row;
    text-align: left;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}
.wizard-qualifying-card .wizard-option-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.wizard-qualifying-card .wizard-option-label {
    font-size: 0.95rem;
}
.wizard-qualifying-card .wizard-option-desc {
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

/* --- Section label (step 7 dual sections) --- */
.wizard-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.wizard-section-label:first-of-type {
    margin-top: 0;
}

/* --- Progress dots compact for 8 steps --- */
@media (max-width: 640px) {
    .wizard-step-dot small { display: none; }
    .wizard-step-dot span { width: 26px; height: 26px; font-size: 0.7rem; }
}

/* --- Prompt section titles & type badges --- */
.wizard-prompts-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(177,159,125,0.15);
}
.wizard-prompts-section-title:first-child {
    margin-top: 0;
}
.wizard-prompt-type {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
    flex-shrink: 0;
}
.wizard-prompt-type-mannequin {
    background: rgba(155,89,182,0.15);
    color: #9b59b6;
}
.wizard-prompt-type-produit {
    background: rgba(52,152,219,0.15);
    color: #3498db;
}

/* --- Form validation error state --- */
.form-control.wizard-invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(200,50,50,0.15);
}

/* ============================================
   PROMPT STUDIO — Galeries carrousels
   ============================================ */
.ps-gallery-section {
    background: var(--color-cream, #E1DACD);
    padding: 4rem 0 5rem;
    overflow: hidden;
}
.ps-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}
.ps-gallery-row {
    margin-bottom: 2rem;
}
.ps-gallery-row:last-child {
    margin-bottom: 0;
}
.ps-gallery-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold, #B19F7D);
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}
.ps-gallery-marquee {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}
.ps-gallery-marquee:active {
    cursor: grabbing;
}
.ps-gallery-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
    backface-visibility: hidden;
}
.ps-gallery-track--right {
    animation: ps-scroll-right var(--ps-duration, 80s) linear infinite;
}
.ps-gallery-track--left {
    animation: ps-scroll-left var(--ps-duration, 80s) linear infinite;
}
.ps-gallery-img {
    flex-shrink: 0;
    height: 180px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none;
}
@keyframes ps-scroll-right {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(calc(-50% - 0.375rem)) translateZ(0); }
}
@keyframes ps-scroll-left {
    0% { transform: translateX(calc(-50% - 0.375rem)) translateZ(0); }
    100% { transform: translateX(0) translateZ(0); }
}

@media (max-width: 767px) {
    .ps-gallery-img {
        height: 120px;
    }
    .ps-gallery-section {
        padding: 3rem 0;
    }
}

/* ============================================
   HOMEPAGE — NEW DESIGN (hp- prefix)
   Navy #1A1A2E / Gold #C9A96E / Off-white #F8F6F1
   Fonts: Cormorant Garamond (titles) + DM Sans (body/UI)
   ============================================ */

:root {
    --hp-navy: #281E15;
    --hp-gold: #B19F7D;
    --hp-offwhite: #E1DACD;
    --hp-font-title: 'Montserrat', sans-serif;
    --hp-font-body: 'Montserrat', sans-serif;
}

/* --- HP Section base --- */
.hp-section {
    padding: 6rem 0;
    position: relative;
}
.hp-section .container {
    max-width: 1200px;
}

/* --- HP Eyebrow --- */
.hp-eyebrow {
    font-family: var(--hp-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hp-gold);
    margin-bottom: 1rem;
}

/* --- HP Section Title --- */
.hp-title {
    font-family: var(--hp-font-title);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hp-title--xl { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.hp-title--lg { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.hp-title--md { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* --- HP Body text --- */
.hp-text {
    font-family: var(--hp-font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
}

/* --- HP Buttons --- */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--hp-font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.hp-btn::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.35rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
    transition: transform 0.3s ease;
}
.hp-btn:hover::after {
    transform: translateX(4px);
}
.hp-btn--gold {
    background: var(--hp-gold);
    color: var(--hp-navy);
}
.hp-btn--gold:hover {
    background: #c4b08a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(177,159,125,0.3);
}
.hp-btn--outline {
    background: transparent;
    color: var(--hp-navy);
    border: 1.5px solid var(--hp-navy);
}
.hp-btn--outline:hover {
    background: var(--hp-navy);
    color: var(--hp-offwhite);
    border-color: var(--hp-navy);
}
/* Outline on dark backgrounds */
.hp-section:not(.hp-portfolio) .hp-btn--outline,
.hp-positioning .hp-btn--outline {
    color: var(--hp-offwhite);
    border-color: rgba(225,218,205,0.4);
}
.hp-section:not(.hp-portfolio) .hp-btn--outline:hover,
.hp-positioning .hp-btn--outline:hover {
    background: var(--hp-offwhite);
    color: var(--hp-navy);
    border-color: var(--hp-offwhite);
}
.hp-btn--lg {
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
}

/* ==========================================
   SECTION 1 — HERO
   ========================================== */
.hp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--hp-navy);
    overflow: hidden;
}
.hp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hp-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(40,30,21,0.80);
    z-index: 1;
}
.hp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    padding-top: var(--header-height);
}
.hp-hero__eyebrow {
    font-family: var(--hp-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hp-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: hp-fadeUp 0.8s ease 0.2s forwards;
}
.hp-hero__title {
    font-family: var(--hp-font-title);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--hp-offwhite);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: hp-fadeUp 0.8s ease 0.4s forwards;
}
.hp-hero__subtitle {
    font-family: var(--hp-font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: rgba(225,218,205,0.65);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: hp-fadeUp 0.8s ease 0.6s forwards;
}
.hp-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: hp-fadeUp 0.8s ease 0.8s forwards;
}
.hp-hero__scroll-link {
    font-family: var(--hp-font-body);
    font-size: 0.9rem;
    color: rgba(225,218,205,0.5);
    transition: color 0.3s;
}
.hp-hero__scroll-link:hover {
    color: var(--hp-gold);
}

/* Scroll indicator (mouse widget) */
.hp-hero__scroll-indicator {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: hp-fadeUp 0.8s ease 1.2s forwards;
}
.hp-hero__mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(177,159,125,0.4);
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}
.hp-hero__mouse-dot {
    width: 4px;
    height: 8px;
    background: var(--hp-gold);
    border-radius: 4px;
    animation: hp-scrollDot 2s ease-in-out infinite;
}
@keyframes hp-scrollDot {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(12px); }
}

@keyframes hp-fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .hp-hero__scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hp-hero__eyebrow, .hp-hero__title, .hp-hero__subtitle, .hp-hero__actions {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ==========================================
   SECTION 2 — LOGOS CLIENTS (Marquee)
   ========================================== */
.hp-logos {
    background: #010101;
    padding: 2.5rem 0;
    overflow: hidden;
}
.hp-logos__label {
    text-align: center;
    font-family: var(--hp-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.hp-logos__marquee {
    display: flex;
    gap: 4rem;
    animation: hp-marquee 20s linear infinite;
}
.hp-logos__item {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
    transition: filter 0.4s ease;
    flex-shrink: 0;
}
.hp-logos__item:hover {
    filter: grayscale(0%) brightness(0) invert(1) opacity(1);
}

@keyframes hp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

@media (prefers-reduced-motion: reduce) {
    .hp-logos__marquee { animation: none; flex-wrap: wrap; justify-content: center; }
    .hp-logos__item[aria-hidden="true"] { display: none; }
}

/* ==========================================
   SECTION 3 — POSITIONNEMENT
   ========================================== */
.hp-positioning {
    background: var(--hp-navy);
    color: var(--hp-offwhite);
}
.hp-positioning__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.hp-positioning__text .hp-text {
    color: rgba(225,218,205,0.7);
    margin-bottom: 3rem;
}
.hp-positioning__visual img,
.hp-positioning__visual video {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Pillar cards */
.hp-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.hp-pillar {
    background: rgba(225,218,205,0.04);
    border: 1px solid rgba(225,218,205,0.08);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s, background 0.3s;
}
.hp-pillar:hover {
    border-color: rgba(177,159,125,0.3);
    background: rgba(225,218,205,0.06);
}
.hp-pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(177,159,125,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-gold);
    margin-bottom: 1rem;
}
.hp-pillar__icon svg { width: 22px; height: 22px; }
.hp-pillar h3 {
    font-family: var(--hp-font-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--hp-offwhite);
}
.hp-pillar p {
    font-family: var(--hp-font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(225,218,205,0.6);
}

@media (min-width: 768px) {
    .hp-positioning__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    .hp-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================
   SECTION 4 — PORTFOLIO
   ========================================== */
.hp-portfolio {
    background: var(--hp-offwhite);
    color: var(--hp-navy);
}
.hp-portfolio .hp-eyebrow { color: var(--hp-gold); }
.hp-portfolio .hp-title { color: var(--hp-navy); }
.hp-portfolio__subtitle {
    font-family: var(--hp-font-body);
    font-size: 1.05rem;
    color: rgba(40,30,21,0.6);
    max-width: 550px;
    margin-bottom: 3rem;
}
.hp-portfolio__header {
    text-align: center;
    margin-bottom: 3rem;
}
.hp-portfolio__header .hp-portfolio__subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Category label */
.hp-portfolio__category {
    font-family: var(--hp-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(40,30,21,0.5);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(40,30,21,0.1);
}

/* Photo grid */
.hp-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.hp-portfolio__item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}
.hp-portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hp-portfolio__item:hover img {
    transform: scale(1.05);
}
.hp-portfolio__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40,30,21,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.hp-portfolio__item:hover::after { opacity: 1; }
.hp-portfolio__item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: #fff;
    font-family: var(--hp-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
}
.hp-portfolio__item:hover .hp-portfolio__item-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Video items */
.hp-portfolio__video {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
}
.hp-portfolio__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video reel carousel */
.hp-reel {
    overflow: hidden;
    margin-top: 2rem;
    cursor: grab;
}
.hp-reel:active {
    cursor: grabbing;
}
.hp-reel__track {
    display: flex;
    gap: 1.5rem;
    animation: hp-reel-scroll 40s linear infinite;
    width: max-content;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
    backface-visibility: hidden;
}
.hp-reel__item {
    flex-shrink: 0;
    width: 420px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: rgba(40,30,21,0.15);
}
.hp-reel__item video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.hp-reel__placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(40,30,21,0.12) 0%, rgba(40,30,21,0.06) 100%);
    border: 1px dashed rgba(40,30,21,0.2);
    border-radius: 10px;
}
.hp-reel__placeholder span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(40,30,21,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-reel__placeholder span svg {
    width: 20px;
    height: 20px;
    color: rgba(40,30,21,0.35);
}
.hp-reel__placeholder p {
    font-family: var(--hp-font-body);
    font-size: 0.85rem;
    color: rgba(40,30,21,0.4);
    font-weight: 500;
}
.hp-reel__caption {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hp-reel__caption strong {
    font-family: var(--hp-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-navy);
}
.hp-reel__caption span {
    font-family: var(--hp-font-body);
    font-size: 0.8rem;
    color: rgba(40,30,21,0.5);
}

@keyframes hp-reel-scroll {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)) translateZ(0); }
}

@media (max-width: 767px) {
    .hp-reel__item { width: 300px; }
}

/* Case study card */
.hp-case-study {
    background: var(--hp-navy);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}
.hp-case-study__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hp-case-study__badge {
    display: inline-block;
    font-family: var(--hp-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-gold);
    background: rgba(177,159,125,0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    width: fit-content;
}
.hp-case-study__title {
    font-family: var(--hp-font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-offwhite);
    margin-bottom: 0.75rem;
}
.hp-case-study__text {
    font-family: var(--hp-font-body);
    font-size: 0.95rem;
    color: rgba(225,218,205,0.6);
    line-height: 1.6;
}
.hp-case-study__visual {
    aspect-ratio: 16/9;
    background: #1a1410;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(225,218,205,0.2);
    font-family: var(--hp-font-body);
    font-size: 0.85rem;
}
.hp-case-study__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hp-portfolio__grid { grid-template-columns: repeat(3, 1fr); }
    .hp-case-study { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .hp-portfolio__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================
   SECTION 5 — TÉMOIGNAGES
   ========================================== */
.hp-testimonials {
    background: var(--hp-offwhite);
    color: var(--hp-navy);
}
.hp-testimonials .hp-eyebrow { color: var(--hp-gold); }
.hp-testimonials .hp-title { color: var(--hp-navy); }
.hp-testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
}
.hp-testimonials__marquee {
    overflow: hidden;
    width: 100%;
    pointer-events: none;
}
.hp-testimonials__track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: hp-testimonials-scroll 35s linear infinite;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
    backface-visibility: hidden;
}
@keyframes hp-testimonials-scroll {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(calc(-100% / 3 - 0.5rem)) translateZ(0); }
}
.hp-testimonial-card {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border: 1px solid rgba(40,30,21,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}
.hp-testimonial-card__stars {
    font-size: 1.2rem;
    color: #F5A623;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}
.hp-testimonial-card__quote {
    font-family: var(--hp-font-body);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(40,30,21,0.75);
    margin-bottom: 1.5rem;
    flex: 1;
}
.hp-testimonial-card__quote::before { content: '\201C '; }
.hp-testimonial-card__quote::after { content: ' \201D'; }
.hp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hp-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(177,159,125,0.15);
    flex-shrink: 0;
}
.hp-testimonial-card__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hp-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hp-gold);
}
.hp-testimonial-card__name {
    font-family: var(--hp-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hp-navy);
}
.hp-testimonial-card__role {
    font-family: var(--hp-font-body);
    font-size: 0.8rem;
    color: rgba(40,30,21,0.5);
}
@media (max-width: 767px) {
    .hp-testimonial-card { width: 320px; padding: 1.5rem; }
}

/* ==========================================
   SECTION 8 — PROCESSUS
   ========================================== */
.hp-process {
    background: var(--hp-navy);
    color: var(--hp-offwhite);
}
.hp-process .hp-eyebrow { color: var(--hp-gold); }
.hp-process .hp-title { color: var(--hp-offwhite); }
.hp-process__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.hp-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.hp-process__step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(225,218,205,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(225,218,205,0.1);
}
.hp-process__step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hp-gold);
    color: #fff;
    font-family: var(--hp-font-title);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.hp-process__step h3 {
    font-family: var(--hp-font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--hp-offwhite);
}
.hp-process__step p {
    font-family: var(--hp-font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(225,218,205,0.65);
}
@media (max-width: 768px) {
    .hp-process__steps { grid-template-columns: 1fr; }
}

/* ==========================================
   SECTION 9 — LEAD MAGNET
   ========================================== */
.hp-leadmagnet {
    background: linear-gradient(135deg, #9a8560 0%, var(--hp-gold) 40%, #c4b08a 100%);
    color: var(--hp-navy);
    position: relative;
    overflow: hidden;
}
.hp-leadmagnet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hp-leadmagnet__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hp-leadmagnet .hp-eyebrow {
    color: rgba(40,30,21,0.6);
}
.hp-leadmagnet .hp-title {
    color: var(--hp-navy);
}
.hp-leadmagnet .hp-text {
    color: rgba(40,30,21,0.75);
}
.hp-leadmagnet__cta {
    margin-top: 2rem;
}
.hp-btn--dark {
    background: var(--hp-navy);
    color: var(--hp-offwhite);
}
.hp-btn--dark:hover {
    background: #1a1410;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(40,30,21,0.3);
}
.hp-leadmagnet__visual {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.hp-leadmagnet__marquee {
    overflow: hidden;
    width: 100%;
}
.hp-leadmagnet__img {
    flex-shrink: 0;
    height: 90px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
    pointer-events: none;
    box-shadow: none !important;
    max-width: none !important;
}

@media (min-width: 768px) {
    .hp-leadmagnet__grid { grid-template-columns: 1.2fr 0.8fr; }
}

/* ==========================================
   SECTION 7 — CTA FINAL
   ========================================== */
.hp-cta {
    background: var(--hp-navy);
    color: var(--hp-offwhite);
    text-align: center;
    padding: 7rem 0;
}
.hp-cta .hp-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--hp-offwhite);
}
.hp-cta .hp-text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(225,218,205,0.6);
    margin-bottom: 2.5rem;
}
.hp-cta__lemcal {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.hp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    cursor: zoom-out;
}
.hp-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.hp-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.hp-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   REVEAL ANIMATIONS (scroll-triggered)
   ========================================== */
.hp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.hp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .hp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================
   MOBILE ADJUSTMENTS
   ========================================== */
@media (max-width: 767px) {
    .hp-section { padding: 4rem 0; }
    .hp-hero__content { padding-left: 1.25rem; padding-right: 1.25rem; }
    .hp-hero__actions { align-items: center; }
    .hp-pillars { margin-top: 2rem; }
    .hp-portfolio__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .hp-case-study__content { padding: 1.5rem; }
    .hp-leadmagnet__visual { margin-top: 1rem; }
    .hp-cta { padding: 5rem 0; }
}
