/* ============================================
   Clarté Numérique - Design Premium Consulting
   Sobre, élégant, professionnel
   ============================================ */

/* Google Fonts - Typographie distinctive */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&display=swap');

/* Variables CSS */
:root {
    /* Couleurs principales - Palette sophistiquée */
    --primary: #1e3a5f;
    --primary-dark: #152a45;
    --primary-light: #2d4a6f;
    --accent: #c9a227;
    --accent-light: #dbb94d;
    --accent-dark: #a68820;
    
    /* Neutres raffinés */
    --white: #ffffff;
    --cream: #faf9f7;
    --warm-white: #f7f5f2;
    --gray-50: #f8f7f5;
    --gray-100: #efeee9;
    --gray-200: #e0ded6;
    --gray-300: #c7c4bc;
    --gray-400: #9c9890;
    --gray-500: #6b6760;
    --gray-600: #4a4742;
    --gray-700: #363431;
    --gray-800: #252321;
    --gray-900: #1a1918;
    
    /* Couleurs sémantiques */
    --success: #2d6a4f;
    --success-light: #40916c;
    --info: #1e3a5f;
    
    /* Typographie */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espacements */
    --section-padding: 60px 0;
    --container-width: 1180px;
    
    /* Ombres subtiles */
    --shadow-sm: 0 1px 3px rgba(30, 58, 95, 0.04);
    --shadow-md: 0 4px 12px rgba(30, 58, 95, 0.08);
    --shadow-lg: 0 12px 32px rgba(30, 58, 95, 0.12);
    --shadow-xl: 0 24px 48px rgba(30, 58, 95, 0.16);
    
    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-900);
}

h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: -1px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-600);
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-cta {
    margin-left: 20px;
    padding: 12px 26px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
    
    .nav-cta {
        margin: 12px 0 0 0;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(30, 58, 95, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-title em {
    font-style: italic;
    color: var(--gray-500);
}

.hero-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.hero-description {
    font-size: 19px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-description strong {
    color: var(--gray-800);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Hero Image */
.hero-visual {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.top {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.hero-floating-card.bottom {
    bottom: 40px;
    left: -40px;
    animation-delay: 2s;
}

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

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.floating-icon.blue {
    background: linear-gradient(135deg, #e8eff8, #d4e2f0);
    color: var(--primary);
}

.floating-icon.gold {
    background: linear-gradient(135deg, #faf3e0, #f5e9c8);
    color: var(--accent-dark);
}

.floating-text strong {
    display: block;
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.floating-text span {
    font-size: 13px;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }
}

/* ============================================
   SECTIONS GÉNÉRALES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.section-description {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   NORMALISATION SECTION
   ============================================ */
.normalisation {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.normalisation-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 32px;
    margin-top: 16px;
}

.normalisation-text {
    text-align: left;
    font-size: 18px;
    line-height: 1.9;
    color: var(--gray-600);
}

.normalisation-text p {
    margin-bottom: 20px;
}

.normalisation-quote {
    color: var(--gray-500);
    padding-left: 20px;
    border-left: 3px solid var(--gray-300);
}

.normalisation-box {
    background: white;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.normalisation-box p {
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
}

.normalisation-box p:last-child {
    margin-bottom: 0;
}

.normalisation-conclusion {
    margin: 0;
    font-size: 19px;
    color: var(--gray-700);
    text-align: center;
}

/* ============================================
   PROBLÈMES SECTION
   ============================================ */
.problems {
    padding: var(--section-padding);
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fef3e2, #fde8ca);
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-dark);
}

.problem-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   OFFRE PHARE SECTION
   ============================================ */
.offer {
    padding: var(--section-padding);
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201,162,39,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.offer .container {
    position: relative;
    z-index: 1;
}

.offer .section-badge {
    background: rgba(255,255,255,0.15);
    color: white;
}

.offer .section-title {
    color: white;
}

.offer .section-title .highlight {
    color: var(--accent-light);
}

.offer .section-description {
    color: rgba(255,255,255,0.8);
}

.offer-card {
    background: white;
    border-radius: 24px;
    padding: 56px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
}

.offer-title h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.offer-title p {
    color: var(--gray-500);
    font-size: 17px;
}

.offer-price {
    text-align: right;
}

.offer-price .amount {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--primary);
    line-height: 1;
}

.offer-price .currency {
    font-size: 20px;
    color: var(--gray-500);
    font-weight: 500;
}

.offer-price .note {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.offer-features h4 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.offer-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 16px;
    color: var(--gray-700);
}

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

.offer-features ul li svg {
    width: 22px;
    height: 22px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 1px;
}

.offer-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--cream);
    border-radius: 16px;
    padding: 40px;
}

.offer-cta h4 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px;
}

.offer-cta p {
    color: var(--gray-500);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .offer-card {
        padding: 40px 28px;
    }
    
    .offer-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .offer-price {
        text-align: left;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MÉTHODE SECTION
   ============================================ */
.method {
    padding: var(--section-padding);
    background: white;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.method-content {
    max-width: 500px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.method-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cream);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.method-step-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.method-step-content p {
    font-size: 15px;
    color: var(--gray-500);
}

.method-image {
    position: relative;
}

.method-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .method-content {
        max-width: 100%;
    }
}

/* ============================================
   SERVICES COMPLÉMENTAIRES
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.service-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}

.service-card.featured h3,
.service-card.featured h4,
.service-card.featured p,
.service-card.featured li {
    color: white;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.15);
}

.service-card.featured .service-icon svg {
    color: white;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--cream);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-icon.gold {
    background: linear-gradient(135deg, #fef3e2, #fde8ca);
}

.service-icon.gold svg {
    color: var(--accent-dark);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

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

.service-features li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.service-price {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.service-price .price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
}

.service-price .note {
    font-size: 14px;
    color: var(--gray-400);
    margin-left: 8px;
}

.service-card.featured .service-price {
    border-color: rgba(255,255,255,0.2);
}

.service-card.featured .service-price .price {
    color: var(--accent-light);
}

.service-card.featured .service-features li {
    border-color: rgba(255,255,255,0.1);
}

.service-card.featured .service-features li svg {
    color: var(--accent-light);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   POURQUOI MOI / À PROPOS
   ============================================ */
.why-me {
    padding: var(--section-padding);
    background: white;
}

.why-me-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-me-content {
    max-width: 520px;
}

.why-me-content .section-badge {
    margin-bottom: 24px;
}

.why-me-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.why-me-content > p {
    color: var(--gray-600);
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.8;
}

.why-me-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-me-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-me-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-me-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.why-me-item h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.why-me-item p {
    font-size: 15px;
    color: var(--gray-500);
}

.why-me-visual {
    position: relative;
}

.why-me-visual img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--primary);
    color: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .why-me-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-me-content {
        max-width: 100%;
        order: 2;
    }
    
    .experience-badge {
        bottom: -16px;
        left: 16px;
        padding: 20px 24px;
    }
}

/* ============================================
   TARIFS SECTION
   ============================================ */
.tarifs {
    padding: var(--section-padding);
    background: var(--cream);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.tarif-card {
    background: white;
    border-radius: 24px;
    padding: 48px 36px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.tarif-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tarif-card.popular {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.tarif-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tarif-header {
    text-align: center;
    margin-bottom: 28px;
}

.tarif-name {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 8px;
}

.tarif-subtitle {
    color: var(--gray-500);
    font-size: 15px;
}

.tarif-price {
    text-align: center;
    padding: 28px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 28px;
}

.tarif-price .amount {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--gray-900);
    line-height: 1;
}

.tarif-price .currency {
    font-size: 18px;
    color: var(--gray-500);
    font-weight: 500;
}

.tarif-features {
    margin-bottom: 32px;
}

.tarif-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-600);
}

.tarif-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.tarif-btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.tarif-btn.outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.tarif-btn.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tarif-btn.filled {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.tarif-btn.filled:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.tarifs-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .tarifs-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    
    .tarif-card.popular {
        transform: scale(1);
    }
}

/* ============================================
   TÉMOIGNAGE / TRUST SECTION
   ============================================ */
.trust {
    padding: var(--section-padding);
    background: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-text p {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-quote {
    background: var(--cream);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--accent);
    margin-top: 32px;
}

.trust-quote p {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.trust-quote cite {
    font-style: normal;
    font-size: 14px;
    color: var(--gray-500);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-badge {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon.blue {
    background: linear-gradient(135deg, #e8eff8, #d4e2f0);
}

.trust-badge-icon.gold {
    background: linear-gradient(135deg, #fef3e2, #fde8ca);
}

.trust-badge-icon svg {
    width: 28px;
    height: 28px;
}

.trust-badge-icon.blue svg { color: var(--primary); }
.trust-badge-icon.gold svg { color: var(--accent-dark); }

.trust-badge strong {
    display: block;
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.trust-badge span {
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .trust-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-accent {
    padding: 18px 40px;
    font-size: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-700);
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.08);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon.blue {
    background: linear-gradient(135deg, #e8eff8, #d4e2f0);
}

.contact-info-icon.gold {
    background: linear-gradient(135deg, #fef3e2, #fde8ca);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-icon.blue svg { color: var(--primary); }
.contact-info-icon.gold svg { color: var(--accent-dark); }

.contact-info-text span {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text strong {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 600;
}

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

.contact-highlight {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.contact-highlight h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-highlight p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px;
    }
}

/* ============================================
   À PROPOS PAGE
   ============================================ */
.about {
    padding: var(--section-padding);
    background: white;
}

.about .container {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 80px;
    align-items: start;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: sticky;
    top: 120px;
}

.about-stat-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-text strong {
    color: var(--gray-800);
}

.about-company {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 968px) {
    .about .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-stats {
        position: relative;
        top: 0;
        order: 2;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-700);
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo .logo-icon {
    background: var(--primary-light);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
}

.footer-logo-sub {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 36px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    padding: 160px 0 80px;
    background: var(--cream);
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(30, 58, 95, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-banner .highlight {
    color: var(--primary);
    font-style: italic;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 15px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
