/* ============================================
   S-Apply Consulting - CSS Principal
   Style professionnel et haut de gamme
   ============================================ */

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f2ed 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 30px rgba(184, 149, 106, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--accent-gold);
    grid-column: span 2;
}

@media (max-width: 768px) {
    .testimonial-card.featured {
        grid-column: span 1;
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #d4b896);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonial-content {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.testimonial-content ul {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.testimonial-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.testimonial-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.testimonial-highlight {
    background: #fef9f3;
    padding: 20px;
    border-left: 3px solid var(--accent-gold);
    margin: 20px 0;
    border-radius: 4px;
}

.testimonial-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonial-cta .btn-modern {
    padding: 16px 40px;
}

/* === END TESTIMONIALS SECTION === */

/* === Variables CSS === */
:root {
    /* Palette de couleurs sobres */
    --primary-dark: #2c2c2c;
    --secondary-dark: #4a4a4a;
    --accent-gold: #b8956a;
    --background-light: #fafafa;
    --background-beige: #f5f2ed;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --border-light: #e8e8e8;
    
    /* Typographie */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-medium);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background-color: var(--primary-dark);
    color: var(--white) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 2px;
    font-weight: 500;
}

.nav-cta:hover {
    background-color: var(--accent-gold);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-beige) 0%, var(--white) 100%);
    padding-top: 100px;
    padding-bottom: var(--spacing-xl);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Page Hero === */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--background-beige) 0%, var(--white) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* === Sections === */
.section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* === Intro Section === */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.intro-image img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.signature {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.signature-title {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === Method Section === */
.method-section {
    background-color: var(--background-beige);
}

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

.method-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.method-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.method-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--accent-gold);
    font-weight: 500;
    display: inline-block;
}

.link-arrow::after {
    content: ' →';
    transition: var(--transition);
}

.link-arrow:hover::after {
    margin-left: 0.5rem;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* CTA with Image Layout */
.cta-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.cta-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image-rounded {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cta-image-rounded:hover {
    transform: scale(1.05);
}

.cta-text-container h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.cta-text-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-text-container .cta-buttons {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .cta-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-text-container .cta-buttons {
        justify-content: center;
    }
    
    .cta-image-rounded {
        max-width: 300px;
    }
}

/* === About Page === */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.story-intro {
    margin-bottom: 2rem;
}

.story-intro .lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--primary-dark);
    font-weight: 500;
}

.quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-medium);
    padding: 2rem 3rem;
    border-left: 3px solid var(--accent-gold);
    margin: 2rem 0;
    background-color: var(--background-light);
    border-radius: 4px;
}

.quote-story {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-gold);
    padding: 2.5rem 3rem;
    border-left: 4px solid var(--accent-gold);
    margin: 3rem 0;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.08) 0%, rgba(184, 149, 106, 0.02) 100%);
    border-radius: 8px;
    position: relative;
}

.quote-story::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.2;
    font-family: var(--font-serif);
}

.credentials-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f2ed 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.credential-text strong {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-family: var(--font-serif);
    display: block;
    margin-bottom: 0.5rem;
}

.credential-text p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.highlight-text {
    font-size: 1.15rem;
    line-height: 1.9;
    padding: 2rem;
    background: rgba(184, 149, 106, 0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    margin-top: 3rem;
}

/* === Experience Sectors === */
.experience-sectors {
    background: linear-gradient(135deg, #fafafa 0%, #f5f2ed 100%);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-gold);
}

.experience-intro {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.sectors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sectors-list li {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    color: var(--text-medium);
    font-size: 0.95rem;
    position: relative;
    padding-left: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sectors-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(184, 149, 106, 0.15);
}

.sectors-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sectors-list {
        grid-template-columns: 1fr;
    }
    
    .experience-sectors {
        padding: 1.5rem;
    }
}

/* === CTA Diagnostic Section === */
.cta-diagnostic-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 5rem 0;
}

.cta-diagnostic-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-diagnostic-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-diagnostic-question {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-diagnostic-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-diagnostic-box .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
    .credentials-block {
        padding: 1.5rem;
    }
    
    .credential-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-diagnostic-title {
        font-size: 2rem;
    }
    
    .cta-diagnostic-question {
        font-size: 1.2rem;
    }
}

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

.philosophy-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 4px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.philosophy-card-gold {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.15);
}

.philosophy-card-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
    border-color: #d4a76a;
}

.philosophy-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.philosophy-card-gold h3 {
    color: var(--accent-gold);
}

.philosophy-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* === METHODOLOGY SECTION === */
.methodology-header {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.methodology-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 600;
}

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

.methodology-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.15);
    transition: all 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(184, 149, 106, 0.25);
}

.methodology-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a870 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.methodology-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

.methodology-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.methodology-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.methodology-list li strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.methodology-principle {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.08) 0%, rgba(184, 149, 106, 0.03) 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.principle-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-text {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.principle-highlight {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

/* === COACHING METHOD HIGHLIGHT (INDEX) === */
.coaching-method-highlight {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, rgba(184, 149, 106, 0.05) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.coaching-method-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.coaching-method-intro {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.coaching-method-intro strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.coaching-method-cta {
    margin-top: 2rem;
}

/* === STICKY CTA FLOTTANT === */
.sticky-cta-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a870 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(184, 149, 106, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    animation: pulse-cta 3s ease-in-out infinite;
    max-width: 280px;
}

.sticky-cta-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(184, 149, 106, 0.6);
    animation: none;
}

.sticky-cta-icon {
    font-size: 1.8rem;
    animation: bounce-icon 2s ease-in-out infinite;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.sticky-cta-text strong {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.sticky-cta-text small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(184, 149, 106, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(184, 149, 106, 0.7);
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive sticky CTA */
@media (max-width: 768px) {
    .sticky-cta-float {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
        max-width: 200px;
    }
    
    .sticky-cta-icon {
        font-size: 1.5rem;
    }
    
    .sticky-cta-text strong {
        font-size: 0.9rem;
    }
    
    .sticky-cta-text small {
        font-size: 0.7rem;
    }
}

/* Mobile très petit - Simplifier le CTA */
@media (max-width: 480px) {
    .sticky-cta-float {
        padding: 0.7rem 1rem;
        max-width: 170px;
        gap: 0.6rem;
    }
    
    .sticky-cta-icon {
        font-size: 1.3rem;
    }
    
    .sticky-cta-text strong {
        font-size: 0.85rem;
    }
    
    /* Cacher les détails sur très petits écrans */
    .sticky-cta-details {
        display: none;
    }
}

/* === SOCIAL PROOF BAR === */
.social-proof-bar {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.08) 0%, rgba(184, 149, 106, 0.03) 100%);
    border-top: 1px solid rgba(184, 149, 106, 0.2);
    border-bottom: 1px solid rgba(184, 149, 106, 0.2);
    padding: 2.5rem 0;
}

.social-proof-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.social-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-proof-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.social-proof-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.social-proof-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    display: none;
}

.social-proof-quote {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
    max-width: 300px;
    position: relative;
}

.quote-mark {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.social-proof-author {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Desktop only dividers */
@media (min-width: 1024px) {
    .social-proof-divider {
        display: block;
    }
    
    .social-proof-content {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 2fr;
    }
}

@media (max-width: 768px) {
    .social-proof-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-proof-number {
        font-size: 2rem;
    }
}

/* === HERO CHOICE WITH PHOTO (HYBRID VERSION) === */
.hero-choice-with-photo {
    padding: 140px 0 60px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f2ed 100%);
}

/* Hero Intro Grid (Photo + Texte) */
.hero-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-intro-text {
    padding-right: 20px;
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-main-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-intro-image {
    position: relative;
}

.hero-photo-premium {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.hero-photo-premium:hover {
    transform: scale(1.02);
}

/* Hero Choice Section Compact */
.hero-choice-section-compact {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hero-choice-title-compact {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.hero-choice-subtitle-compact {
    font-size: 1.15rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Choice Grid Compact */
.choice-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.choice-card-compact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.choice-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Responsive Hero Hybride */
@media (max-width: 1024px) {
    .hero-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-intro-text {
        padding-right: 0;
        text-align: center;
    }
    
    .trust-badges-hero {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-choice-with-photo {
        padding: 120px 0 40px 0;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-choice-title-compact {
        font-size: 2rem;
    }
    
    .choice-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .hero-choice-section-compact {
        padding: 2rem 1.5rem;
    }
}

/* === HERO CHOICE ORIGINAL (kept for reference) === */
.hero-choice-section {
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f2ed 100%);
    min-height: auto;
}

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

.hero-badge-choice {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a870 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.hero-choice-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-choice-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Choice Cards Grid */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.choice-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

/* Card variants */
.choice-urgence {
    border-color: #e74c3c;
}

.choice-urgence:hover {
    border-color: #c0392b;
    box-shadow: 0 16px 50px rgba(231, 76, 60, 0.25);
}

.choice-featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.05) 0%, white 100%);
    transform: scale(1.05);
}

.choice-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(184, 149, 106, 0.3);
}

.choice-standard {
    border-color: #ddd;
}

.choice-standard:hover {
    border-color: var(--accent-gold);
}

/* Choice Badge */
.choice-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.choice-urgence .choice-badge {
    background: #e74c3c;
}

/* Choice Icon */
.choice-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Choice Title */
.choice-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Choice Result */
.choice-result {
    font-size: 1.05rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Choice Benefits */
.choice-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.choice-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.choice-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Choice Buttons */
.btn-choice {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 1rem;
}

.btn-primary-choice {
    background: var(--primary-dark);
    color: white;
}

.btn-primary-choice:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.3);
}

.btn-secondary-choice {
    background: var(--accent-gold);
    color: white;
}

.btn-secondary-choice:hover {
    background: #c9a870;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.4);
}

.btn-tertiary-choice {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-tertiary-choice:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Choice Proof */
.choice-proof {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Approche 360° Section */
.approche-360-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(216, 181, 83, 0.05) 0%, rgba(184, 149, 106, 0.05) 100%);
    border-radius: 16px;
}

.approche-360-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approche-360-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.approche-360-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approche-360-item {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.approche-360-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(216, 181, 83, 0.2);
}

.approche-360-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.approche-360-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.approche-360-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Hero Choice CTA Quiz */
.hero-choice-cta-quiz {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(216, 181, 83, 0.08) 0%, rgba(184, 149, 106, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(216, 181, 83, 0.2);
}

.quiz-cta-intro {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.btn-quiz-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #d8b553 0%, #b8956a 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 181, 83, 0.25);
}

.btn-quiz-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 181, 83, 0.4);
}

.quiz-cta-icon {
    font-size: 2rem;
    line-height: 1;
}

.quiz-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.quiz-cta-content strong {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.quiz-cta-content small {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Hero Choice Footer */
.hero-choice-footer {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.link-underline-gold {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-gold);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.link-underline-gold:hover {
    color: var(--accent-gold);
}

/* Responsive Hero Choice */
@media (max-width: 1024px) {
    .choice-featured {
        transform: scale(1);
    }
    
    .choice-featured:hover {
        transform: translateY(-8px);
    }
}

/* Choice Premium Styles */
.choice-premium {
    border-color: #8B4513;
    border-width: 2px;
}

.choice-badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.choice-duration {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.choice-audience {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.choice-objective {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.choice-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1rem 0;
}

.choice-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 1rem 0;
}

.choice-all-inclusive {
    background: rgba(184, 149, 106, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.choice-results {
    background: rgba(34, 197, 94, 0.08);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0.5rem 0;
    border-left: 3px solid #22c55e;
}

.btn-premium-choice {
    background: #8B4513;
    color: white;
}

.btn-premium-choice:hover {
    background: #654321;
    transform: translateY(-2px);
}

.hero-subtitle-light {
    font-weight: 400;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .hero-choice-title {
        font-size: 2.5rem;
    }
    
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .choice-card {
        padding: 2rem;
    }
    
    .choice-icon {
        font-size: 3rem;
    }
}

.expertise-list {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.expertise-item:last-child {
    border-bottom: none;
}

.expertise-item h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.expertise-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

.process-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-step-gold {
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.05) 0%, rgba(184, 149, 106, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.15);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.process-step-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(184, 149, 106, 0.25);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.8;
}

.public-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.public-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.public-info p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* === Services Detail Page === */
.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro-text {
    text-align: left;
}

.services-intro-text .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.services-intro-image {
    position: relative;
}

.services-hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .services-intro-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-intro-text {
        text-align: center;
    }
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.service-description h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-description p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-target {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.styled-list {
    list-style: none;
    margin: 1.5rem 0;
}

.styled-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.styled-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* === Service CTA Inline === */
.service-cta-inline {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.service-cta-inline .btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 600;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.3);
}

.service-cta-inline .btn:hover {
    background-color: #d4a76a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 149, 106, 0.5);
}

.service-benefits {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.service-benefits h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

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

.methodology-description {
    text-align: left;
    margin-top: 2rem;
}

.methodology-description p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.9;
}

/* === Contact Page === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--spacing-xl);
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-icon {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    min-width: 120px;
}

.contact-text h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-text a {
    color: var(--accent-gold);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-dark);
}

.contact-text p {
    color: var(--text-medium);
    margin: 0;
}

.contact-callout {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.contact-callout h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 2px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* === Legal Page === */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.legal-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.legal-block p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-block ul {
    margin: 1.5rem 0;
}

.legal-block a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.legal-block a:hover {
    color: var(--primary-dark);
}

/* === Section RSE === */
.rse-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

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

.rse-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.15);
}

.rse-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rse-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.rse-card ul {
    list-style: none;
    padding: 0;
}

.rse-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.rse-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Responsive RSE */
@media (max-width: 768px) {
    .rse-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rse-card {
        padding: 1.5rem;
    }
    
    /* Approche 360° responsive */
    .approche-360-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .approche-360-title {
        font-size: 1.6rem;
    }
    
    .approche-360-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .approche-360-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approche-360-item {
        padding: 1.5rem 1rem;
    }
    
    .approche-360-icon {
        font-size: 2.5rem;
    }
    
    .approche-360-item h3 {
        font-size: 1.1rem;
    }
}

/* === CTA Final Section === */
.cta-final-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-final-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-final-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-final-title {
        font-size: 2rem;
    }
    
    .cta-final-description {
        font-size: 1rem;
    }
    
    .cta-final-section {
        padding: 3rem 1rem;
    }
    
    /* Quiz CTA responsive */
    .hero-choice-cta-quiz {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .quiz-cta-intro {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .btn-quiz-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.5rem;
        gap: 0.8rem;
        width: 100%;
        max-width: 320px;
    }
    
    .quiz-cta-content {
        align-items: center;
        text-align: center;
    }
    
    .quiz-cta-content strong {
        font-size: 1rem;
    }
    
    .quiz-cta-content small {
        font-size: 0.85rem;
    }
}

/* === Footer === */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

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

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-contact a {
    color: var(--accent-gold);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Footer RSE Badge */
.footer-rse h4 {
    color: var(--accent-gold);
}

.footer-modern-rse {
    list-style: none;
    padding: 0;
}

.footer-modern-rse li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .method-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .intro-grid,
    .service-content,
    .contact-grid,
    .ebook-container {
        grid-template-columns: 1fr;
    }
    
    .ebook-image-section {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quote {
        padding: 1.5rem;
        font-size: 1.2rem;
    }
    
    .service-benefits {
        position: static;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 0.9rem 2rem;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === Utilities === */
.text-center {
    text-align: center;
}

/* ============================================
   NOUVEAU DESIGN MODERNE - Inspiré Florence Cortot
   ============================================ */

/* === Hero Modern === */
.hero-modern {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content-modern,
.hero-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-modern-content {
    padding-right: 40px;
}

.hero-text-modern {
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a870 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.hero-title-modern {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-description-modern {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Trust Badges Hero */
.trust-badges-hero {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.15) 0%, rgba(184, 149, 106, 0.05) 100%);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.hero-buttons-modern {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-reassurance {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 1rem;
}

.hero-reassurance::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
    margin-right: 10px;
    vertical-align: middle;
}

.hero-image-modern {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.hero-image-modern img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* === Buttons Modern === */
.btn-modern {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary-modern {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary-modern:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary-modern {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary-modern:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white-modern {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-white-modern:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large-modern {
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
}

/* === Sections Modern === */
.section-minimal {
    padding: 3rem 0;
}

.section-spacious {
    padding: 4rem 0;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title-center {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.section-intro-center {
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.bg-light-modern {
    background-color: var(--background-light);
}

/* === Zone intervention === */
.zone-intervention {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.zone-intervention-gold {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 3rem;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.05) 0%, rgba(184, 149, 106, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.15);
}

.zone-intervention-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.zone-text-container {
    text-align: left;
}

.zone-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.zone-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.zone-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zone-map-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .zone-intervention-gold {
        padding: 2rem 1.5rem;
    }
    
    .zone-intervention-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zone-text-container {
        text-align: center;
    }
    
    .zone-map-img {
        max-width: 100%;
    }
}

/* === Intro Modern === */
.intro-modern {
    text-align: center;
}

.intro-lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.signature-modern {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.signature-title {
    color: var(--text-light);
    font-size: 1rem;
}

/* === Services Modern Grid === */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-modern-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-modern-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-modern-card:hover .service-modern-image img {
    transform: scale(1.05);
}

.service-modern-content {
    padding: 2.5rem;
}

.service-modern-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-modern-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-modern {
    color: var(--accent-gold);
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.link-modern:hover::after {
    width: 100%;
}

/* === Method Modern List === */
.method-modern-list {
    max-width: 800px;
    margin: 0 auto;
}

.method-modern-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.method-modern-item:last-child {
    border-bottom: none;
}

.method-modern-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.5;
}

.method-modern-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.method-modern-text p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* === OPTIC® Enhanced Section === */
.optic-section-enhanced {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f2ed 100%);
    position: relative;
    overflow: hidden;
}

.optic-header {
    text-align: center;
    margin-bottom: 2rem;
}

.optic-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #d4a76a 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.optic-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.optic-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

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

.optic-method-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.optic-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(184, 149, 106, 0.2);
    border-color: var(--accent-gold);
}

.optic-card-featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
}

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

.optic-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.optic-method-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

.optic-method-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 0.95rem;
}

.optic-card-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    opacity: 0.3;
}

.optic-results {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.optic-results-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.optic-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.optic-result-item {
    text-align: center;
}

.optic-result-value {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(184, 149, 106, 0.4);
    transition: transform 0.3s ease;
    display: inline-block;
}

.optic-result-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .optic-title {
        font-size: 2rem;
    }
    
    .optic-method-grid {
        grid-template-columns: 1fr;
    }
    
    .optic-results {
        padding: 3rem 1.5rem;
    }
    
    .optic-results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === CTA Modern Section === */
.cta-modern-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 8rem 0;
    text-align: center;
}

.cta-modern-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-modern-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-modern-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* === Footer Modern === */
.footer-modern {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 6rem 0 2rem;
}

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

.footer-modern-section h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-modern-section h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-modern-section p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-modern-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-modern-links a:hover {
    color: var(--accent-gold);
}

.footer-modern-contact {
    list-style: none;
}

.footer-modern-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-modern-contact a {
    color: var(--accent-gold);
}

.footer-modern-contact a:hover {
    color: var(--white);
}

.footer-modern-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern-social {
    display: flex;
    gap: 1.5rem;
}

.footer-modern-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-modern-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-modern-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-modern-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
}

.footer-modern-legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-modern-legal a:hover {
    color: var(--accent-gold);
}

.footer-modern-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* === Responsive Modern === */
@media (max-width: 1024px) {
    .hero-content-modern,
    .hero-modern-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-text-modern,
    .hero-modern-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-buttons-modern {
        justify-content: center;
    }
    
    .hero-title-modern,
    .hero-modern-title {
        font-size: 3rem;
    }
    
    .hero-image-modern {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .section-title-center {
        font-size: 2.2rem;
    }
    
    .section-spacious {
        padding: 5rem 0;
    }
    
    .method-modern-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-modern-content h2 {
        font-size: 2.2rem;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* === FAQ Home Section === */
.faq-home-section {
    background-color: var(--background-light);
}

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

.faq-category:last-of-type {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 2.5rem;
    display: inline-block;
}

.faq-category-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.faq-home-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-home-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-home-item h3,
.faq-home-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.4;
}

.faq-home-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .faq-home-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-category-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-icon {
        font-size: 2rem;
    }
}

/* === eBook / Products Page === */
.ebook-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.ebook-image-section {
    position: sticky;
    top: 120px;
}

.ebook-cover {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.resource-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.ebook-content-section h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ebook-tagline {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.ebook-description,
.ebook-features {
    margin-bottom: 2rem;
}

.ebook-description h3,
.ebook-features h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.ebook-description p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.ebook-cta {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.ebook-availability {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.resource-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.resource-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.resource-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   PAGE PRODUITS - Packs & eBook
   Design inspiré des captures d'écran
   ============================================ */

/* === Packs Grid === */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pack-card {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(184, 149, 106, 0.3);
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.pack-badge-top {
    background: linear-gradient(90deg, #d4a76a 0%, var(--accent-gold) 100%);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pack-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    color: var(--white);
}

.pack-header h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pack-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* === Pack Prices === */
.pack-price-block {
    text-align: center;
    padding: 1.5rem 2.5rem;
}

.pack-price-old {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pack-price-current {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(184, 149, 106, 0.5);
}

.pack-price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Countdown Timer === */
.countdown-timer {
    background: rgba(184, 149, 106, 0.1);
    border: 1px solid rgba(184, 149, 106, 0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 2rem 0;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(184, 149, 106, 0.4);
}

.countdown-unit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-ended {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}


/* === Pack Value Block === */
.pack-value-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 2.5rem;
    margin: 0 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(184, 149, 106, 0.2);
}

.pack-value-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.pack-value-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pack-advantage {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.2) 0%, rgba(184, 149, 106, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.advantage-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 600;
}

.advantage-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* === Pack Content === */
.pack-content {
    padding: 2rem 2.5rem;
    color: var(--white);
}

.pack-includes {
    background: rgba(184, 149, 106, 0.1);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 2rem;
}

.pack-includes-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
}

.pack-content h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.pack-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pack-features li {
    padding: 0.9rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pack-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.pack-who {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-gold);
}

.pack-who h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.pack-who p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.pack-ideal {
    font-style: normal !important;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.pack-advantage-box {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.2) 0%, rgba(184, 149, 106, 0.05) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.pack-advantage-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.05rem;
    justify-content: center;
}

.advantage-icon {
    font-size: 2rem;
}

/* === Pack CTA === */
.pack-cta {
    padding: 2.5rem;
    text-align: center;
}

.btn-pack {
    display: block;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-pack-ebook {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4a76a 100%);
    color: var(--white);
}

.btn-pack-action {
    background: linear-gradient(135deg, #d4a76a 0%, var(--accent-gold) 100%);
    color: var(--white);
}

.btn-pack-intensive {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e8c48f 100%);
    color: var(--primary-dark);
}

.btn-pack:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(184, 149, 106, 0.5);
}

.pack-security {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* === Guarantee Box === */
.guarantee-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--accent-gold);
}

.guarantee-box h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.guarantee-box p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* === Responsive Packs === */
@media (max-width: 768px) {
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .pack-price-current {
        font-size: 3rem;
    }
    
    .advantage-price {
        font-size: 2rem;
    }
    
    .pack-header h3 {
        font-size: 1.7rem;
    }
}

/* ============================================
   PAGE PRODUITS - eBook (ancien)
   Design haut de gamme avec CTA proéminents
   ============================================ */

/* === Hero Produit === */
.product-hero {
    background: linear-gradient(135deg, var(--background-beige) 0%, var(--background-light) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.product-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.product-hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.product-hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* === Product Showcase === */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.product-image-wrapper {
    position: sticky;
    top: 120px;
}

.product-image-highlight {
    position: relative;
    background: linear-gradient(135deg, var(--background-beige) 0%, var(--background-light) 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.product-image:hover {
    transform: scale(1.03);
}

.product-trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.trust-badge svg {
    color: var(--accent-gold);
}

/* === Product Content === */
.product-content {
    padding-top: 2rem;
}

.product-price-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.product-price {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.product-price-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-description {
    margin-bottom: 3rem;
}

.product-description h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

/* === CTA PRIMARY - Ultra visible === */
.product-cta-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.btn-product-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-product-primary:hover {
    background-color: #d4a76a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(184, 149, 106, 0.6);
}

.btn-product-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-large-product {
    padding: 1.7rem 5rem;
    font-size: 1.3rem;
}

.product-cta-guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* === For Who Section === */
.product-for-who {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.product-for-who h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.product-checklist {
    list-style: none;
    padding: 0;
}

.product-checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
}

/* === Product Modules === */
.product-modules {
    max-width: 900px;
    margin: 0 auto;
}

.product-module {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.product-module:hover {
    transform: translateX(10px);
}

.product-module:last-child {
    border-bottom: none;
}

.module-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.4;
    text-align: center;
}

.module-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.module-content p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* === Product Results === */
.product-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.result-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.result-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.result-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.result-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* === Product CTA Section === */
.product-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 8rem 0;
}

.product-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.product-cta-box h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-cta-box > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.product-secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.product-secure-payment svg {
    color: var(--accent-gold);
}

/* === Product Upsell === */
.product-upsell {
    background-color: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.upsell-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.upsell-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.upsell-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-tertiary-modern:hover {
    background-color: var(--background-light);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* === Responsive Product Page === */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .product-image-wrapper {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .product-hero-title {
        font-size: 2.5rem;
    }
    
    .product-price {
        font-size: 3rem;
    }
    
    .btn-product-primary {
        padding: 1.3rem 3rem;
        font-size: 1.1rem;
    }
    
    .btn-large-product {
        padding: 1.5rem 3.5rem;
        font-size: 1.2rem;
    }
    
    .product-module {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .product-results {
        grid-template-columns: 1fr;
    }
    
    .upsell-buttons {
        flex-direction: column;
    }
    
    .product-cta-box h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .product-hero-title {
        font-size: 2rem;
    }
    
    .product-image-highlight {
        padding: 1.5rem;
    }
    
    .product-cta-primary {
        padding: 2rem 1.5rem;
    }
    
    .btn-product-primary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   PAGE FORMATIONS - Design Premium
   ============================================ */

/* === Formations Premium Grid === */
.formations-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.formation-premium-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.formation-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.formation-premium-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 3rem 2.5rem;
    color: var(--white);
    text-align: center;
}

.formation-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.formation-premium-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.formation-premium-body {
    padding: 2.5rem;
    flex-grow: 1;
}

.formation-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.formation-details {
    margin-bottom: 2rem;
}

.formation-detail-item {
    margin-bottom: 2rem;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

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

.formation-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.formation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.formation-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.meta-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.formation-premium-footer {
    padding: 0 2.5rem 2.5rem;
}

.btn-formation {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-gold);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-formation:hover {
    background-color: #d4a76a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 149, 106, 0.4);
}

/* === Approach Grid === */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.approach-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.approach-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

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

/* === OPCO Info === */
.opco-info {
    background-color: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.opco-info h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.opco-info > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.opco-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.opco-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.opco-feature svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* === Responsive Formations === */
@media (max-width: 768px) {
    .formations-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-meta {
        flex-direction: column;
    }
    
    .opco-info {
        padding: 2.5rem 2rem;
    }
    
    .opco-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .formation-premium-header {
        padding: 2rem 1.5rem;
    }
    
    .formation-premium-body {
        padding: 2rem 1.5rem;
    }
    
    .formation-icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   FORMATIONS ACTUELLES (Competens)
   ============================================ */

.current-formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.current-formation-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--border-light);
}

.current-formation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.current-formation-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 2.5rem 2rem;
    color: var(--white);
}

.current-formation-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.formation-ref {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.current-formation-body {
    padding: 2.5rem 2rem;
}

.formation-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.formation-meta-row span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.formation-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.current-formation-footer {
    padding: 0 2rem 2.5rem;
}

.btn-formation-link {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-gold);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-formation-link:hover {
    background-color: #d4a76a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 149, 106, 0.4);
}

/* === OPCO Partnership === */
.opco-info > p:first-of-type {
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.opco-partnership {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
    text-align: center;
}

.partnership-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.partnership-text svg {
    color: var(--accent-gold);
}

.partnership-text a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.partnership-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.partnership-link {
    margin-top: 1.5rem;
}

.btn-profile-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.btn-profile-link:hover {
    background-color: #d4a76a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.5);
}

@media (max-width: 768px) {
    .current-formations-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-meta-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}