/* ========================================
   STYLES GLOBAUX - TOUTES LES PAGES
   ======================================== */

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

:root {
    --cream-light: #F5EFE6;
    --cream: #E8D5BD;
    --beige: #D4B896;
    --caramel: #B89968;
    --brown: #8B6F47;
    --brown-dark: #6B5436;
    --text-dark: #3A2F23;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cream-light) 0%, #FAF7F2 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Empêcher les guillemets orphelins */
body {
    hanging-punctuation: first last;
}

/* Éviter les sauts de ligne avant les guillemets fermants */
p, h1, h2, h3, li, div {
    text-wrap: pretty;
}

/* ========================================
   NAVIGATION (Commune à toutes les pages)
   ======================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-text:hover {
    opacity: 0.8;
}

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

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

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

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

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

.nav-links a.active {
    color: var(--brown);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brown-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   HEADER DE PAGE (Toutes les pages sauf index)
   ======================================== */

.page-header {
    padding: 12rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    opacity: 0.3;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* ========================================
   CONTENT SECTIONS (Communes)
   ======================================== */

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 4rem;
    text-align: center;
}

.intro-text strong {
    color: var(--brown);
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* ========================================
   PAGE INDEX - HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape1 {
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--caramel) 0%, transparent 70%);
    animation-delay: 0s;
}

.shape2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--beige) 0%, transparent 70%);
    animation-delay: 5s;
}

.shape3 {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--brown) 0%, transparent 70%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: 250px;
    height: auto;
    margin: 0 auto 3rem;
    animation: fadeInScale 1.2s ease-out;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 84, 54, 0.2);
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 84, 54, 0.3);
}

/* ========================================
   PAGE INDEX - CARDS GRID
   ======================================== */

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

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brown) 0%, var(--caramel) 100%);
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

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

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

.card ul li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--cream);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card ul li:last-child {
    border-bottom: none;
}

.card ul li::before {
    content: '• ';
    color: var(--brown);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ========================================
   PAGE INDEX - APPROACH GRID
   ======================================== */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.approach-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.approach-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ========================================
   PAGE INDEX - CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.cta-button-white {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ========================================
   PAGE ACCOMPAGNEMENT - TIMELINE
   ======================================== */

.timeline-container {
    position: relative;
    margin: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(180deg, var(--brown) 0%, var(--caramel) 50%, var(--beige) 100%);
    transform: translateX(-50%);
}

.phase-wrapper {
    position: relative;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out backwards;
}

.phase-wrapper:nth-child(1) { animation-delay: 0.2s; }
.phase-wrapper:nth-child(2) { animation-delay: 0.4s; }

.phase-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    width: calc(50% - 40px);
}

.phase-wrapper:nth-child(odd) .phase-card {
    margin-left: 0;
    margin-right: auto;
}

.phase-wrapper:nth-child(even) .phase-card {
    margin-left: auto;
    margin-right: 0;
}

.phase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.phase-number-circle {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--caramel) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.4);
    border: 5px solid white;
    z-index: 10;
}

.phase-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.phase-connector {
    position: absolute;
    top: 100px;
    width: 40px;
    height: 3px;
    background: var(--caramel);
}

.phase-wrapper:nth-child(odd) .phase-connector {
    right: calc(50% + 50px);
}

.phase-wrapper:nth-child(even) .phase-connector {
    left: calc(50% + 50px);
}

.phase-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.phase-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.8rem;
}

.phase-subtitle {
    font-size: 1rem;
    color: white;
    background: var(--brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phase-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.phase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--cream-light) 0%, rgba(255,255,255,0) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.3rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.role-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    color: white;
    padding: 4.5rem 4rem;
    border-radius: 25px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 15px 50px rgba(107, 84, 54, 0.3);
}

.role-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.role-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.objectif-section {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 4rem;
}

.objectif-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.objectif-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   PAGE QUI-SUIS-JE
   ======================================== */

.story-section {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out backwards;
}

.story-section:nth-child(even) {
    animation-delay: 0.2s;
}

.story-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--cream);
}

.story-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown);
    margin: 2.5rem 0 1.5rem;
}

.story-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-section strong {
    color: var(--brown);
    font-weight: 600;
}

.story-section em {
    font-style: italic;
    color: var(--brown);
}

.quote-section {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 15px 50px rgba(107, 84, 54, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    opacity: 0.1;
    font-weight: 700;
}

.quote-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

.quote-explanation {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    font-family: 'Inter', sans-serif;
}

.values-section {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

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

.value-item {
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--caramel) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.3);
}

.value-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.value-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.value-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.value-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: bold;
}

/* ========================================
   PAGE TARIFS
   ======================================== */

.pricing-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--brown) 0%, var(--caramel) 100%);
}

.pricing-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pricing-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 2rem;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-features li {
    padding: 1rem;
    border-bottom: 1px solid var(--cream);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.pricing-features li::before {
    content: '✓';
    color: var(--brown);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.info-card:nth-child(1) { animation-delay: 0.2s; }
.info-card:nth-child(2) { animation-delay: 0.3s; }
.info-card:nth-child(3) { animation-delay: 0.4s; }
.info-card:nth-child(4) { animation-delay: 0.5s; }

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.info-card ul li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.info-card ul li::before {
    content: '•';
    color: var(--brown);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-card strong {
    color: var(--brown);
    font-weight: 600;
}

.note-card {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--brown);
    margin: 3rem 0;
}

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

.note-card strong {
    color: var(--brown);
    font-weight: 600;
}

/* ========================================
   PAGE CONTACT
   ======================================== */

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.intro-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.discovery-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.discovery-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.discovery-subtitle {
    font-size: 1.1rem;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.discovery-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.discovery-list li {
    padding: 1rem;
    border-bottom: 1px solid var(--cream);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.discovery-list li::before {
    content: '→';
    color: var(--brown);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.discovery-list strong {
    color: var(--brown);
    font-weight: 600;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.contact-card:nth-child(1) { animation-delay: 0.3s; }
.contact-card:nth-child(2) { animation-delay: 0.4s; }
.contact-card:nth-child(3) { animation-delay: 0.5s; }

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--caramel) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.3);
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 84, 54, 0.2);
    margin-top: 1rem;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 84, 54, 0.3);
}

.contact-info {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 1rem;
    word-break: break-word;
}

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

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

.response-note {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border-left: 5px solid var(--brown);
}

.response-note p {
    font-size: 1rem;
    color: var(--text-dark);
}

.response-note strong {
    color: var(--brown);
    font-weight: 600;
}

/* Discovery description (remplace le style inline) */
.discovery-description {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Contact description pour aligner les textes */
.contact-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Google Form */
.google-form-section {
    margin-top: 5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.google-form-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.google-form-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.google-form-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin: 0 auto 2.5rem;
}

.google-form-container {
    border-radius: 15px;
    overflow: hidden;
}

.google-form-container iframe {
    width: 100%;
    height: 1200px;
    border: none;
}

/* ========================================
   FOOTER (Container simplifié)
   ======================================== */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-container p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .page-header h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-logo {
        width: 180px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1.05rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .intro-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .approach-item h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .approach-item p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .cta-section h2 {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .card-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        max-width: 100%;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    /* ACCOMPAGNEMENT - Mobile Timeline */
    .timeline-line {
        left: 30px;
    }

    .phase-wrapper:nth-child(odd) .phase-card,
    .phase-wrapper:nth-child(even) .phase-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 80px;
    }

    .phase-number-circle {
        left: 30px;
        top: 30px;
        width: 70px;
        height: 70px;
        transform: translateX(0);
    }

    .phase-number {
        font-size: 2rem;
    }

    .phase-connector {
        display: none;
    }

    .phase-card {
        padding: 2rem 1.5rem 2rem 80px !important;
    }

    .phase-card h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .phase-description {
        font-size: 1rem;
        line-height: 1.8;
    }

    .feature-title {
        font-size: 0.95rem;
    }

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

    .role-section,
    .objectif-section {
        padding: 2.5rem 1.5rem;
    }

    .role-section h2,
    .objectif-section h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .role-section p,
    .objectif-section p {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* QUI-SUIS-JE - Mobile */
    .story-section,
    .quote-section,
    .values-section {
        padding: 2rem 1.5rem;
    }

    .story-section h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .story-section h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .story-section p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .quote-section p {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .quote-author {
        font-size: 1rem;
    }

    .quote-explanation {
        font-size: 0.95rem;
    }

    .values-section h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .value-item h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

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

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

    /* TARIFS - Mobile */
    .pricing-card,
    .info-card,
    .note-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .price {
        font-size: 2.8rem;
    }

    .price-detail {
        font-size: 1rem;
    }

    .info-card h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .info-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

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

    /* CONTACT - Mobile */
    .intro-section h2 {
        font-size: 1.9rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .intro-section p {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 1rem;
    }

    .discovery-card,
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .discovery-card h3 {
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .discovery-subtitle {
        font-size: 1rem;
    }

    .discovery-list li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-card h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .contact-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .contact-info {
        font-size: 0.95rem;
    }

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

    .google-form-card {
        padding: 2rem 1.5rem;
    }

    .google-form-card h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .google-form-intro {
        font-size: 1rem;
    }

    .google-form-container iframe {
        height: 1400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .cta-button,
    .cta-button-white {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .card {
        padding: 1.8rem 1.2rem;
    }

    .phase-card {
        padding: 1.5rem 1rem 1.5rem 70px !important;
    }

    .phase-card h2 {
        font-size: 1.6rem;
    }

    .intro-section h2 {
        font-size: 1.7rem;
    }

    .story-section h2 {
        font-size: 1.7rem;
    }

    .quote-section p {
        font-size: 1.2rem;
    }

    .pricing-card h2 {
        font-size: 1.7rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 1.8rem 1.2rem;
    }

    .discovery-card h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE - LARGE SCREENS
   ======================================== */

@media (min-width: 1600px) {
    .content-section {
        max-width: 1400px;
    }

    .page-header h1 {
        font-size: 4.5rem;
    }

    .page-header p {
        font-size: 1.4rem;
    }

    .hero-logo {
        width: 350px;
    }

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

    .hero-description {
        font-size: 1.3rem;
    }

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

    .intro-text {
        font-size: 1.25rem;
    }

    .card {
        padding: 3rem 2.5rem;
    }

    .card h3 {
        font-size: 1.7rem;
    }

    .card p {
        font-size: 1.1rem;
    }

    .approach-item {
        padding: 2.5rem;
    }

    .approach-item h3 {
        font-size: 1.6rem;
    }

    .approach-item p {
        font-size: 1.05rem;
    }

    .cta-section h2 {
        font-size: 3rem;
    }

    .cta-section p {
        font-size: 1.25rem;
    }

    /* ACCOMPAGNEMENT - Large */
    .phase-card {
        padding: 4rem;
    }

    .phase-card h2 {
        font-size: 2.5rem;
    }

    .phase-description {
        font-size: 1.15rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 1.05rem;
    }

    .role-section,
    .objectif-section {
        padding: 5rem 4.5rem;
    }

    .role-section h2,
    .objectif-section h2 {
        font-size: 2.8rem;
    }

    .role-section p,
    .objectif-section p {
        font-size: 1.25rem;
    }

    /* QUI-SUIS-JE - Large */
    .story-section,
    .quote-section,
    .values-section {
        padding: 4rem 3.5rem;
    }

    .story-section h2 {
        font-size: 2.8rem;
    }

    .story-section h3 {
        font-size: 1.9rem;
    }

    .story-section p {
        font-size: 1.15rem;
    }

    .quote-section p {
        font-size: 1.8rem;
    }

    .quote-author {
        font-size: 1.25rem;
    }

    .quote-explanation {
        font-size: 1.1rem;
    }

    .values-section h2 {
        font-size: 2.8rem;
    }

    .value-item h3 {
        font-size: 1.8rem;
    }

    .value-item p {
        font-size: 1.1rem;
    }

    /* TARIFS - Large */
    .pricing-card {
        padding: 4.5rem 4rem;
    }

    .pricing-card h2 {
        font-size: 2.8rem;
    }

    .price {
        font-size: 5rem;
    }

    .price-detail {
        font-size: 1.25rem;
    }

    .pricing-features li {
        font-size: 1.15rem;
    }

    .info-card {
        padding: 3rem 2.5rem;
    }

    .info-card h3 {
        font-size: 1.9rem;
    }

    .info-card p {
        font-size: 1.15rem;
    }

    .note-card {
        padding: 3rem 2.5rem;
    }

    .note-card p {
        font-size: 1.15rem;
    }

    /* CONTACT - Large */
    .intro-section h2 {
        font-size: 2.8rem;
    }

    .intro-section p {
        font-size: 1.25rem;
    }

    .discovery-card {
        padding: 4.5rem 4rem;
    }

    .discovery-card h3 {
        font-size: 2.5rem;
    }

    .discovery-subtitle {
        font-size: 1.25rem;
    }

    .discovery-list li {
        font-size: 1.15rem;
    }

    .contact-card {
        padding: 3rem 2.5rem;
    }

    .contact-card h3 {
        font-size: 1.9rem;
    }

    .contact-button {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }

    .contact-info {
        font-size: 1.1rem;
    }

    .response-note {
        padding: 2.5rem;
    }

    .response-note p {
        font-size: 1.15rem;
    }

    .google-form-card {
        padding: 4.5rem 4rem;
    }

    .google-form-card h2 {
        font-size: 2.8rem;
    }

    .google-form-intro {
        font-size: 1.2rem;
    }

    .discovery-description {
        font-size: 1.2rem;
    }

    .contact-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 2000px) {
    .content-section {
        max-width: 1600px;
    }

    .page-header h1 {
        font-size: 5rem;
    }

    .hero-logo {
        width: 400px;
    }

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

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

    .card {
        padding: 3.5rem 3rem;
    }

    .phase-card {
        padding: 4.5rem;
    }

    .story-section,
    .quote-section,
    .values-section {
        padding: 4.5rem 4rem;
    }

    .pricing-card {
        padding: 5rem 4.5rem;
    }

    .discovery-card {
        padding: 5rem 4.5rem;
    }

    .google-form-card {
        padding: 5rem 4.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .approach-grid {
        max-width: 800px;
    }
}
