/* =====================================================
   OPTIMAVI - Page Pro/Entreprise
   Style épuré, moderne, visuel - Communication Non Violente
   ===================================================== */

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

:root {
    --color-primary: #496580;
    --color-accent: #FFDBBB;
    --color-light-blue: #BADDFF;
    --color-mint: #BAFFF5;
    --color-dark: #252121;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
}

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

/* =====================================================
   HEADER
   ===================================================== */

.header {
    background: var(--color-white);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--color-light-blue);
    color: var(--color-primary);
}

.btn-primary-small {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-small:hover {
    background: #3a5166;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: var(--color-white);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    box-shadow: var(--box-shadow);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
}

.mobile-submenu-title {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.75rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu-title i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-submenu.active .mobile-submenu-title i {
    transform: rotate(180deg);
}

.mobile-submenu-content {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    gap: 0.3rem;
}

.mobile-submenu.active .mobile-submenu-content {
    display: flex;
}

.mobile-menu-link {
    color: var(--color-dark);
    text-decoration: none;
    padding: 0.75rem 0;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--color-primary);
}

.mobile-menu-link.submenu {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    color: var(--color-gray);
}

/* =====================================================
   HERO V1
   ===================================================== */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--spacing-lg) * 2) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 40%, #f0f8ff 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-primary));
    top: -200px;
    left: -200px;
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--color-accent), #ffd4a3);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-light-blue));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(70px, 30px) scale(1.05); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #5a7a95);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(73, 101, 128, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--color-accent), #ffd4a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    position: relative;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.hero-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.3;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-primary), #5a7a95);
    color: var(--color-white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(73, 101, 128, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(73, 101, 128, 0.35);
}

.btn-hero-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

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

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

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

.hero-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-deco-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-accent), #ffd4a3);
    opacity: 0.2;
    top: -30px;
    right: -30px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-deco-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-primary));
    opacity: 0.15;
    bottom: -20px;
    left: -20px;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 5;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    border-radius: 50% / 60%;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(73, 101, 128, 0.2),
        0 0 0 15px rgba(186, 221, 255, 0.1),
        0 0 0 30px rgba(255, 219, 187, 0.08);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-badge {
    position: absolute;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-badge-1 {
    top: 10%;
    left: -10%;
}

.hero-floating-badge-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1.5s;
}

.hero-floating-badge-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.badge-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    display: block;
}

.badge-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

/* =====================================================
   SECTIONS GÉNÉRALES
   ===================================================== */

section {
    padding: var(--spacing-xl) 0;
}

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

.section-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* =====================================================
   VOS 4 DÉFIS
   ===================================================== */

.challenges-section {
    background: var(--color-white);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.challenge-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(73, 101, 128, 0.15);
}

.challenge-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.challenge-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.challenge-card:hover .challenge-bg-img {
    transform: scale(1.1);
}

.challenge-icon-wrapper {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #5a7a95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(73, 101, 128, 0.3);
    z-index: 10;
}

.challenge-icon {
    font-size: 2rem;
    color: var(--color-white);
}

.challenge-content {
    padding: 3rem 2rem 2rem;
}

.challenge-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.challenge-emotion {
    background: linear-gradient(135deg, #fff8e1, #fffbea);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-warning);
}

.challenge-emotion i {
    color: #ff6b6b;
    margin-right: 0.5rem;
}

.challenge-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.challenge-keywords {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.keyword-tag {
    background: var(--color-light-blue);
    color: var(--color-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =====================================================
   EXEMPLE CONCRET
   ===================================================== */

.example-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.example-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.example-header {
    background: linear-gradient(135deg, var(--color-primary), #5a7a95);
    color: var(--color-white);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.example-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.example-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.example-meta {
    font-size: 1rem;
    opacity: 0.9;
}

.example-journey {
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.journey-step {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
}

.journey-step.before {
    border: 3px solid #e3f2fd;
}

.journey-step.action {
    border: 3px solid var(--color-accent);
}

.journey-step.after {
    border: 3px solid #d4edda;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-label i {
    font-size: 1.5rem;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.step-list.success li {
    padding-left: 2rem;
}

.step-list.success li::before {
    content: '';
}

.step-list.success i {
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: var(--color-success);
}

.journey-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-arrow i {
    font-size: 2rem;
    color: var(--color-primary);
}

.example-quote {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    padding: var(--spacing-lg);
    border-top: 3px solid var(--color-light-blue);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--color-light-blue);
    opacity: 0.5;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 3rem;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: var(--color-primary);
}

/* =====================================================
   COMMENT ON TRAVAILLE
   ===================================================== */

.process-section {
    background: var(--color-white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #5a7a95);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(73, 101, 128, 0.25);
}

.step-visual {
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-info {
    padding: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark);
}

.process-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--spacing-md) 0;
}

.connector-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-light-blue));
    border-radius: 2px;
}

.connector-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq-section {
    background: var(--color-gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-gray-light);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.faq-answer ul li {
    padding: 0.4rem 0;
    position: relative;
    line-height: 1.6;
}

.faq-answer ul li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--color-success);
    font-weight: bold;
}

/* =====================================================
   CTA FINAL
   ===================================================== */

.final-cta-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
}

.final-cta-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.cta-visual {
    height: 100%;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-dark);
}

.cta-benefit i {
    color: var(--color-success);
    font-size: 1.2rem;
}

.btn-final-cta {
    background: linear-gradient(135deg, var(--color-primary), #5a7a95);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(73, 101, 128, 0.25);
    align-self: flex-start;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(73, 101, 128, 0.35);
}

.cta-reassurance {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.cta-reassurance strong {
    color: var(--color-primary);
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

.footer-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
}

.footer-list i {
    color: var(--color-accent);
}

.footer-list a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
}

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

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .example-journey {
        grid-template-columns: 1fr;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .final-cta-card {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -1px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .hero-floating-badge {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Défis */
    .challenges-grid {
        gap: var(--spacing-md);
    }
    
    .challenge-visual {
        height: 150px;
    }
    
    .challenge-content {
        padding: 2.5rem 1.2rem 1.2rem;
    }
    
    .challenge-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .challenge-emotion {
        font-size: 0.85rem;
        padding: 0.8rem;
        line-height: 1.4;
    }
    
    .challenge-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .keyword-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Exemple Marie */
    .example-header {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .example-avatar {
        width: 80px;
        height: 80px;
    }
    
    .example-name {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .example-meta {
        font-size: 0.85rem;
    }
    
    .example-journey {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .journey-step {
        padding: var(--spacing-md);
    }
    
    .step-label {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .step-label i {
        font-size: 1.2rem;
    }
    
    .step-list li {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0.4rem 0;
        padding-left: 1.2rem;
    }
    
    .step-list li::before {
        font-size: 1.2rem;
    }
    
    .journey-arrow {
        margin: 0.5rem 0;
    }
    
    .journey-arrow i {
        font-size: 1.5rem;
    }
    
    .quote-text {
        font-size: 0.95rem;
        padding-left: 2rem;
        line-height: 1.6;
    }
    
    .quote-author {
        font-size: 0.9rem;
    }
    
    /* Process */
    .step-visual {
        height: 120px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .connector-line {
        height: 40px;
    }
    
    .connector-icon {
        font-size: 1.5rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-answer p {
        margin-bottom: 0.8rem;
    }
    
    .faq-answer ul li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    /* CTA Final */
    .cta-content {
        padding: var(--spacing-md);
    }
    
    .cta-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cta-benefit {
        font-size: 0.85rem;
    }
    
    .cta-benefit i {
        font-size: 1rem;
    }
    
    .btn-final-cta {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .cta-reassurance {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-md) 0;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-list li {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
}