        :root {
            --primary: #FF6B00;
            --primary-light: #FF8F42;
            --secondary: #3F170E;
            --secondary-light: #5D2A1F;
            --accent: #FFF1CC;
            --light: #FFFCF5;
            --white: #FFFFFF;
            --transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--secondary);
            line-height: 1.8;
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            line-height: 1.2;
        }
        
        h1 {
            font-size: 4.2rem;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 3.2rem;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        h3 {
            font-size: 2rem;
            margin-bottom: 1.2rem;
        }

        p{
            font-size: 1.3rem;
            margin-top: 1.3rem;
        }

        .sous-titre{
            font-size: 1.2rem;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        strong{
            font-size:4.3rem;
            color: var(--secondary);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -15px;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 2px;
        }
        
        .container {
            width: 90%;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 6rem 0;
            position: relative;
        }
        
        /* Background elements */
        .bg-element {
            position: absolute;
            z-index: -1;
            pointer-events: none;
        }
        
        .organic-shape {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            background: linear-gradient(45deg, var(--primary), transparent);
            opacity: 0.08;
            animation: morph 25s infinite linear;
        }
        
        @keyframes morph {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
            66% { border-radius: 40% 30% 60% 50% / 30% 70% 40% 60%; }
        }
        
        .shape-1 {
            width: 500px;
            height: 500px;
            top: -100px;
            right: 0px;
        }
        
        .shape-2 {
            width: 400px;
            height: 400px;
            bottom: 100px;
            left: 0px;
            background: linear-gradient(45deg, var(--secondary), transparent);
            animation-delay: -10s;
        }
        
        .shape-3 {
            width: 300px;
            height: 300px;
            top: 40%;
            right: 20%;
            animation-delay: -5s;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.8rem 0;
            background-color: rgba(255, 252, 245, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 107, 0, 0.1);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            position: relative;
            display: inline-block;
        }

        .logo img{
            max-height: 50px;
            position : relative;
            bottom: -12px;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--accent);
            z-index: -1;
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .logo:hover::after {
            height: 15px;
            opacity: 1;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            color: var(--secondary);
            cursor: pointer;
        }
        
        /* Hero Section */
        #accueil{
            background-image: url("images/banniere-hero.jpg");
            background-size:cover;
        }
        .hero {
            padding: 14rem 0 8rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text {
            position: relative;
            z-index: 2;
            color: #ffffff;
        }
        
        .hero-tag {
            display: inline-block;
            background-color: var(--accent);
            color: var(--secondary);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 2px var(--primary);
        }
        
        .hero p {
            font-size: 1.6rem;
            margin-bottom: 3rem;
            max-width: 600px;
        }
        
        .hero-visual {
            position: relative;
            height: 500px;
        }
        
        .visual-composition {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .v-card {
            position: absolute;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(63, 23, 14, 0.15);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
        }
        
        .v-card-1 {
            width: 70%;
            height: 60%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            top: 0;
            right: 0;
            z-index: 3;
        }
        
        .v-card-2 {
            width: 65%;
            height: 55%;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            bottom: 0;
            left: 0;
            z-index: 2;
        }
        
        .v-card-3 {
            width: 40%;
            height: 40%;
            background-color: var(--accent);
            color: var(--secondary);
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .v-card:hover {
            transform: translateY(-15px) rotate(2deg);
            box-shadow: 0 35px 70px rgba(63, 23, 14, 0.25);
        }
        
        /* Button */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.4);
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            box-shadow: 0 10px 25px rgba(63, 23, 14, 0.3);
        }
        
        .btn-secondary:hover {
            box-shadow: 0 20px 40px rgba(63, 23, 14, 0.4);
        }
        
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .services-grid p{
            font-size: 1rem;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(63, 23, 14, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 107, 0, 0.1);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(63, 23, 14, 0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2.2rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(15deg);
            background-color: var(--primary);
            color: var(--accent);
        }
        
        /* Pour qui */
        .transition{
            width: 100%;
            height: 143px;
            background-color: #fff1CC;
            background-image: url("images/wave-transition.jpg");
            background-size: contain;
            background-repeat: repeat-x;
        }

        #pour-qui{
            background-color: #FFF1CC;
        }
        #pour-qui p{
            text-align: justify;
        }
        #pour-qui .container{
            background-color: #FFFFFF;
 /*           display: flex;
            flex-direction: column;
*/
            max-width: 90%;
            border-radius: 30px;
            padding: 4%;
        }
        #pour-qui .image{
           float: left;
          width: 30%;
          margin-right: 15px;
          margin-top : 30px;
         shape-outside: url('profil-anne-ory.png');
        shape-image-threshold: 0.5;
        }
        #pour-qui .image img{
        width: 100%;
        display: block;
}



        /* Stats */
        .stats {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            color: white;
        }
        
        .stats .section-title h2 {
            color: white;
        }
        
        .stats .section-title h2::after {
            background: linear-gradient(90deg, var(--primary), transparent);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stats-grid p{
            font-size: 1rem;
            margin-top: 0.4rem;
            color: #ffffff;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        
        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .pricing-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(63, 23, 14, 0.08);
            transition: var(--transition);
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(63, 23, 14, 0.15);
        }
        
        .pricing-card.featured {
            border: 3px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .pricing-header {
            padding: 3rem 2.5rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            position: relative;
        }
        
        .pricing-card.featured .pricing-header {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        }
        
        .pricing-header h3 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        .pricing-header h4 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 800;
            margin: 0.3rem 0;
        }
        
        .price span {
            font-size: 1.2rem;
            font-weight: 400;
        }
        
        .pricing-features {
            padding: 3rem 2.5rem;
            list-style: none;
        }
        
        .pricing-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .pricing-footer {
            padding: 0 2.5rem 3rem;
            text-align: center;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .testimonial-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(63, 23, 14, 0.08);
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
        }
        
        .testimonial-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 2rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 0;
            font-size: 4rem;
            color: var(--primary);
            font-family: serif;
            line-height: 1;
            opacity: 0.3;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            margin-right: 1.5rem;
        }
        
        /* CTA */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, var(--accent) 0%, #FFE8A8 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta h2 {
            color: var(--secondary);
        }
        
        .cta p {
            max-width: 80%;
            margin: 0 auto 3rem;
            font-size: 1.2rem;
            color: var(--secondary-light);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 5rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 1.8rem;
            font-size: 1.5rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Menu mobile corrigé */
        @media (max-width: 1100px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-visual {
                height: 400px;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            /* Navigation mobile simplifiée */
            nav.active ul {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                padding: 2rem;
                z-index: 1000;
                gap: 1.5rem;
            }
            
            nav.active ul li {
                text-align: center;
            }
            
            .services-grid, .pricing-grid, .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-15px);
            }
        }

 /*       @media (min-width: 1400px) {
            #pour-qui .container{
                max-width: 70%;
            }
            #pour-qui::before{
                content: url(images/profil-anne-ory.png);
                position: absolute;
                left: 4%;
                bottom: 30%;
        }
        @media (min-width: 1700px) {
            #pour-qui::before{
                left: 8%;
                bottom: 30%;
        }

        }
*/
        
        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }