/* ============================================
   ASM COACHING - Style Nexora
   Navy + Teal, Bold & Modern
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--navy);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--white);
    line-height: 1.15;
    font-weight: 700;
}

/* ---------- UTILITY ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--narrow); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    background: rgba(113, 175, 172, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--orange-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-glow { box-shadow: 0 6px 30px var(--orange-glow); }
.btn-glow:hover { box-shadow: 0 12px 45px var(--orange-glow); }

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: var(--logo-height);
    width: auto;
}

.nav-logo:hover { opacity: 0.8; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(113, 175, 172, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(113, 175, 172, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(113, 175, 172, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay { display: none; }

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 140px 24px 100px;
}

.hero-content {
    flex: 1;
    min-width: 0;
    max-width: 600px;
    text-align: left;
}

/* ---------- TRIPTYCH 3D ---------- */
.hero-triptych {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.triptych-scene {
    position: relative;
    width: 340px;
    height: 340px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.triptych-card {
    position: absolute;
    width: 150px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

/* Triangle: card 1 top-left, card 2 top-right, card 3 bottom-center */
.triptych-card--1 {
    top: 0;
    left: 0;
    transform: rotateY(6deg) rotateX(-3deg) translateZ(0px);
    opacity: 0;
    animation: triptychEnter1 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.triptych-card--2 {
    top: 0;
    right: 0;
    transform: rotateY(-6deg) rotateX(-3deg) translateZ(0px);
    opacity: 0;
    animation: triptychEnter2 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.triptych-card--3 {
    bottom: 0;
    left: 50%;
    margin-left: -75px;
    transform: rotateY(0deg) rotateX(4deg) translateZ(30px);
    opacity: 0;
    animation: triptychEnter3 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.triptych-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-card) 0%, var(--navy-card-hover) 50%, rgba(113, 175, 172, 0.15) 100%);
    border: 1px solid var(--navy-border);
    border-radius: 16px;
    position: relative;
}

.triptych-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 40%, rgba(113, 175, 172, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 50%);
}

/* Triptych hover individual cards */
.triptych-scene:hover .triptych-card--1 {
    transform: rotateY(12deg) rotateX(-6deg) translateZ(25px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.triptych-scene:hover .triptych-card--2 {
    transform: rotateY(-12deg) rotateX(-6deg) translateZ(25px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.triptych-scene:hover .triptych-card--3 {
    transform: rotateY(0deg) rotateX(8deg) translateZ(50px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes triptychEnter1 {
    from {
        opacity: 0;
        transform: rotateY(30deg) rotateX(10deg) translateZ(-80px) translateX(-40px);
    }
    to {
        opacity: 1;
        transform: rotateY(6deg) rotateX(-3deg) translateZ(0px);
    }
}

@keyframes triptychEnter2 {
    from {
        opacity: 0;
        transform: rotateY(-30deg) rotateX(10deg) translateZ(-80px) translateX(40px);
    }
    to {
        opacity: 1;
        transform: rotateY(-6deg) rotateX(-3deg) translateZ(0px);
    }
}

@keyframes triptychEnter3 {
    from {
        opacity: 0;
        transform: rotateY(0deg) rotateX(20deg) translateZ(-100px) translateY(60px);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg) rotateX(4deg) translateZ(30px);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(113, 175, 172, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.35s forwards;
}

.hero-highlight {
    color: var(--orange);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.5s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.65s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 0; right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.7s ease 1s forwards;
    cursor: pointer;
}

.hero-scroll-indicator span {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.hero-scroll-indicator:hover span { color: var(--orange); }

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    animation: bounceDown 2s ease-in-out infinite;
    opacity: 0.7;
}

.hero-scroll-indicator:hover .scroll-arrow { opacity: 1; }

/* ---------- SECTIONS GLOBAL ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.section-intro-secondary {
    margin-top: -40px;
    margin-bottom: 50px;
    font-size: 0.98rem;
}

.section-closer {
    text-align: center;
    font-size: 1.08rem;
    margin-top: 50px;
    line-height: 1.8;
}

/* ---------- IDENTIFICATION SECTION ---------- */
.identification {
    background: var(--navy-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pain-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height var(--transition);
    border-radius: 0 0 2px 0;
}

.pain-card:hover::before { height: 100%; }

.pain-card:hover {
    background: var(--navy-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 175, 172, 0.1);
    border-radius: var(--radius);
}

.pain-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}

.pain-card-highlight {
    background: linear-gradient(135deg, rgba(113, 175, 172, 0.08), rgba(113, 175, 172, 0.02));
    border-color: rgba(113, 175, 172, 0.25);
}

.pain-card-highlight:hover {
    border-color: rgba(113, 175, 172, 0.5);
}

/* ---------- AMPLIFICATION SECTION ---------- */
.amplification {
    background: var(--white);
    color: var(--text-dark);
}

.amplification .section-title { color: var(--text-dark); }
.amplification .section-intro { color: var(--gray-dark); }

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.cost-card {
    padding: 36px 28px;
    background: var(--white-off);
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
    transition: all var(--transition);
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
}

.cost-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(113, 175, 172, 0.15);
    margin-bottom: 8px;
    line-height: 1;
}

.cost-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.cost-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.amplification-closer {
    text-align: center;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-light);
}

.amplification-closer p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 14px;
}

.large-text {
    font-size: 1.4rem !important;
    color: var(--text-dark) !important;
    line-height: 1.5;
}

/* ---------- DECLIC SECTION ---------- */
.declic {
    background: var(--navy-light);
}

.declic-content {
    margin-top: 40px;
}

.declic-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.declic-intro {
    font-size: 1.1rem !important;
    color: var(--gray);
}

.declic-stop {
    font-size: 2.5rem !important;
    color: var(--orange) !important;
    font-weight: 800;
    text-align: center;
    margin: 40px 0 !important;
    letter-spacing: -0.02em;
}

.declic-reveal {
    font-size: 1.1rem !important;
    color: var(--white);
    text-align: center;
    padding: 28px;
    background: rgba(113, 175, 172, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(113, 175, 172, 0.15);
}

.declic-question {
    font-size: 1.2rem !important;
    color: var(--orange) !important;
    text-align: center;
    margin-top: 40px !important;
}

/* Blockquote */
.quote-block {
    margin: 48px 0;
    padding: 32px 36px;
    border-left: 4px solid var(--orange);
    background: rgba(113, 175, 172, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
    font-size: 1.3rem !important;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px !important;
    font-weight: 500;
}

.quote-block cite {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
}

/* ---------- ACCOMPAGNEMENT SECTION ---------- */
.accompagnement {
    background: var(--white);
    color: var(--text-dark);
}

.accompagnement .section-title { color: var(--text-dark); }
.accompagnement .section-intro { color: var(--gray-dark); }

.pillars-title {
    font-size: 1.3rem;
    text-align: center;
    color: var(--orange);
    margin-bottom: 48px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 40px 28px 36px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
    border-color: transparent;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(113, 175, 172, 0.1);
    position: absolute;
    top: 12px; right: 16px;
    line-height: 1;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(113, 175, 172, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.pillar-icon svg { width: 30px; height: 30px; }

.pillar-card h4 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Process */
.process-block {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-light);
}

.process-block h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 700;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--orange-glow);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step p {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--orange);
    opacity: 0.3;
    align-self: center;
    margin-top: 26px;
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

/* ---------- TRANSFORMATION SECTION ---------- */
.transformation {
    background: var(--navy-light);
}

.transform-list {
    margin-top: 48px;
}

.transform-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--navy-border);
}

.transform-item:last-child { border-bottom: none; }

.transform-check {
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 175, 172, 0.1);
    border-radius: 50%;
}

.transform-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.transform-closer { margin-top: 48px; }

/* ---------- TEMOIGNAGES SECTION ---------- */
.temoignages {
    background: var(--white);
    color: var(--text-dark);
}

.temoignages .section-title { color: var(--text-dark); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    border-color: transparent;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: -10px;
    font-weight: 800;
}

.testimonial-card blockquote p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.author-detail {
    font-size: 0.82rem;
    color: var(--gray-dark);
}

/* Reassurance */
.reassurance-block {
    margin-top: 70px;
    padding: 48px;
    background: var(--white-off);
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.reassurance-block h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.reassurance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.reassurance-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(113, 175, 172, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reassurance-item p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ---------- PARCOURS SECTION ---------- */
.odyssey {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.odyssey::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(113, 175, 172, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.odyssey-epigraph {
    text-align: center;
    margin-bottom: 48px;
}

.odyssey-epigraph p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--orange);
    opacity: 0.8;
    font-weight: 500;
}

.odyssey-content p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.odyssey-question {
    font-size: 1.2rem !important;
    text-align: center;
    margin-top: 40px !important;
    padding: 32px;
    background: rgba(113, 175, 172, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(113, 175, 172, 0.15);
}

/* ---------- CTA FINAL ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.cta-final-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-final-description {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.8;
}

.cta-final .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
    margin-top: 20px;
}

.cta-final .btn-primary:hover {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
    margin-top: 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy);
    border-top: 1px solid var(--navy-border);
    padding: 60px 0 36px;
}

.footer-content { text-align: center; }

.footer-logo-img {
    height: var(--logo-footer-height);
    width: auto;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 6px;
}

.footer-links {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--gray);
}

.footer-links a:hover { color: var(--orange); }

.footer-copy {
    margin-top: 30px;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.5);
}

/* ---------- PAGE HEADER (pages interieures) ---------- */
.page-header {
    padding: 160px 0 80px;
    background: var(--navy-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(113, 175, 172, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0 100px;
    background: var(--navy);
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 48px 0 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.page-content h3 {
    font-size: 1.25rem;
    margin: 32px 0 14px;
    font-weight: 600;
    color: var(--orange);
}

.page-content p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-body);
}

.page-content ul { margin: 16px 0 24px 24px; }

.page-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.7;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-info p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(113, 175, 172, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-body);
}

.contact-detail a { color: var(--orange); }

.contact-form {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--navy); }

/* ---------- A PROPOS ---------- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.about-image {
    aspect-ratio: 3/4;
    background: var(--navy-card);
    border-radius: var(--radius);
    border: 1px solid var(--navy-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder {
    font-size: 5rem;
    color: rgba(113, 175, 172, 0.15);
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-body);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-card:hover::after { transform: scaleX(1); }

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(113, 175, 172, 0.1);
    border-radius: var(--radius);
    margin-left: auto;
    margin-right: auto;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ---------- ACCOMPAGNEMENT PAGE ---------- */
.offer-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 44px 36px;
    margin-bottom: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(113, 175, 172, 0.2);
}

.offer-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    background: rgba(113, 175, 172, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.offer-card > p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.offer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--navy-border);
}

.offer-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.offer-detail-icon {
    color: var(--orange);
    font-size: 1.1rem;
}

/* ---------- ENTRETIEN INFO ---------- */
.entretien-info {
    background: var(--white-off);
    color: var(--text-dark);
}

.entretien-info .section-title { color: var(--text-dark); }

.entretien-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.entretien-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.entretien-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.entretien-card h4 {
    font-size: 1.15rem;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.entretien-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ---------- PHILOSOPHIE ---------- */
.philosophie {
    background: var(--navy-light);
}

.philosophie-header {
    text-align: center;
    margin-bottom: 50px;
}

.philosophie-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--max-w);
}

.philosophie-text {
    flex: 1;
    min-width: 0;
}

.philosophie-content p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.philosophie-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.half-circle-img {
    width: 400px;
    height: 480px;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.half-circle-img.visible {
    opacity: 1;
    transform: translateX(0);
}

.half-circle-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--navy-card) 0%, var(--navy-card-hover) 40%, rgba(113, 175, 172, 0.18) 100%);
    border: 1px solid var(--navy-border);
    border-bottom: none;
    border-radius: 200px 200px 0 0;
    position: relative;
}

.half-circle-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 200px 200px 0 0;
    background:
        radial-gradient(circle at 40% 35%, rgba(113, 175, 172, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 50%);
}

/* ---------- THEMES SECTION ---------- */
.themes-section {
    background: var(--white);
    color: var(--text-dark);
}

.themes-section .section-title { color: var(--text-dark); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceDown {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }

    .nav-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right var(--transition);
        border-left: 1px solid var(--navy-border);
        z-index: 999;
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.1rem; }

    .hero-inner {
        flex-direction: column;
        padding: 110px 20px 80px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .hero-triptych { width: 100%; }

    .triptych-card {
        width: 120px;
        height: 170px;
    }

    .triptych-scene {
        width: 280px;
        height: 280px;
    }

    .triptych-card--3 {
        margin-left: -60px;
    }

    .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }

    .philosophie-layout {
        flex-direction: column;
        gap: 40px;
    }

    .philosophie-text { text-align: center; }

    .half-circle-img {
        width: 300px;
        height: 360px;
        border-radius: 150px 150px 0 0;
    }

    .half-circle-placeholder {
        border-radius: 150px 150px 0 0;
    }

    .half-circle-placeholder::after {
        border-radius: 150px 150px 0 0;
    }

    .pain-grid,
    .cost-grid,
    .pillars-grid,
    .testimonials-grid,
    .entretien-grid {
        grid-template-columns: 1fr;
    }

    .process-steps { flex-direction: column; align-items: center; }

    .process-connector {
        width: 2px;
        height: 36px;
        margin: 0;
    }

    .reassurance-block { padding: 28px 20px; }
    .reassurance-grid { grid-template-columns: 1fr; }
    .quote-block { padding: 24px; }
    .quote-block p { font-size: 1.1rem !important; }
    .offer-card { padding: 28px 20px; }
    .contact-form { padding: 24px 18px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
    .btn-large { padding: 14px 28px; font-size: 0.95rem; }
    .footer-links { flex-direction: column; align-items: center; gap: 14px; }

    .triptych-card {
        width: 95px;
        height: 135px;
    }

    .triptych-scene {
        width: 220px;
        height: 220px;
    }

    .triptych-card--3 {
        margin-left: -47px;
    }

    .triptych-scene { gap: 12px; }
}

/* ---------- NAV OVERLAY MOBILE ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
