:root {
    --primary: #008060; /* Vert Shopify principal */
    --primary-dark: #004c3f; /* Vert Shopify foncé */
    --secondary: #96bf48; /* Vert-jaune Shopify secondaire */
    --dark: #0c0c0e; /* Gardé le noir d'origine */
    --dark-light: #1a1a1f; /* Gardé le noir léger d'origine */
    --medium: #2e2e36; /* Gardé le gris moyen d'origine */
    --light: #ffffff;
    --light-gray: rgba(255, 255, 255, 0.7);
    --light-gray-2: rgba(255, 255, 255, 0.5);
    --gray: #353542;
    --gray-dark: #242428;
    --success: #00d698; /* Légèrement ajusté pour se fondre dans la palette */
    --gradient: linear-gradient(135deg, #008060 0%, #5bba6f 100%); /* Gradient vert */
    --gradient-btn: linear-gradient(45deg, #5bba6f 0%, #004c3f 100%); /* Gradient pour boutons */
    --gradient-dark: linear-gradient(180deg, #14141a 0%, #0c0c0e 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    --btn-shadow: 0 4px 15px rgba(0, 128, 96, 0.35); /* Ombre verte */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(12, 12, 14, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background-color: rgba(12, 12, 14, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50px;
    color: var(--primary);
    background: rgba(0, 128, 96, 0.15); /* Fond vert transparent */
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 25%; /* Fait un cercle parfait si l'image est carrée */
    overflow: hidden;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

.button-icon {
    margin-right: 8px;
}

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

.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow);
}

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

.secondary:hover {
    background-color: var(--medium);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gradient {
    background: var(--gradient-btn);
    color: white;
    position: relative;
}

.gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow);
}

.gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient:hover::before {
    opacity: 1;
}

.cta-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    background-color: var(--dark);
    overflow: hidden;
    position: relative;
}

.hero-bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 15% 25%, rgba(0, 128, 96, 0.15) 0%, rgba(12, 12, 14, 0) 35%),
                radial-gradient(circle at 85% 75%, rgba(150, 191, 72, 0.1) 0%, rgba(12, 12, 14, 0) 40%);
    z-index: 0;
    max-width: 100vw;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag-text {
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(0, 128, 96, 0.15); /* Fond vert transparent */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.display-heading-1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.display-heading-1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.display-heading-1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 12px;
    background-color: rgba(0, 128, 96, 0.2); /* Vert transparent */
    z-index: -1;
}

.hero-content-p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: var(--dark-light);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.clients-title {
    text-align: center;
    font-size: 1rem;
    color: var(--light-gray-2);
    margin-bottom: 2rem;
}

.clients-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.client-logo {
    transition: var(--transition);
    text-align: center;
    flex: 1;
}

.client-logo:hover {
    opacity: 0.9;
}

.client-logo img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title-heading span {
    color: var(--primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 96, 0.1) 0%, rgba(12, 12, 14, 0) 70%); /* Vert transparent */
    z-index: 0;
}

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

.feature-card {
    background: var(--dark-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 128, 96, 0.3); /* Bordure verte au survol */
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--light-gray);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(150, 191, 72, 0.1) 0%, rgba(12, 12, 14, 0) 70%); /* Vert-jaune transparent */
    z-index: 0;
    max-width: 100vw;
    overflow: hidden;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--dark);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray);
    z-index: 1;
}

.process-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 128, 96, 0.3); /* Bordure verte au survol */
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-btn);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-description {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
}

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

.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.portfolio-category {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--dark-light);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.pricing-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 128, 96, 0.3); /* Bordure verte au survol */
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--secondary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
}

.pricing-plan {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-gray-2);
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--light-gray-2);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1.5rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--light-gray);
}

.pricing-features li::before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: -1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 128, 96, 0.1) 0%, rgba(12, 12, 14, 0) 50%); /* Vert transparent */
    z-index: 0;
    max-width: 100vw;
    overflow: hidden;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--dark-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 128, 96, 0.3); /* Bordure verte au survol */
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--light);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--gray);
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-position {
    font-size: 0.85rem;
    color: var(--light-gray-2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--dark-light);
    position: relative;
}

.cta-wrapper {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid var(--gray);
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 128, 96, 0.1) 0%, rgba(12, 12, 14, 0) 50%),
                radial-gradient(circle at 70% 70%, rgba(150, 191, 72, 0.05) 0%, rgba(12, 12, 14, 0) 50%);
    z-index: 0;
    max-width: 100vw;
    overflow: hidden;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-title span {
    color: var(--primary);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.calendly-container {
    margin-top: 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--gray);
    position: relative;
    z-index: 1;
    background-color: var(--dark-light);
    transition: var(--transition);
}

.calendly-container:hover {
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 128, 96, 0.3); /* Bordure verte au survol */
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    position: relative;
}

.contact-alternative {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--light-gray-2);
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-link svg {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: var(--dark);
    color: white;
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.footer-brand .logo img {
    filter: brightness(1.2);
    border-radius: 25%; /* Maintient la forme circulaire dans le footer */
}

.footer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-gray);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light);
}

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

.footer-list li {
    margin-bottom: 0.8rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray);
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 128, 96, 0.3); /* Ombre verte */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: var(--light-gray-2);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.legal-links a {
    font-size: 0.9rem;
    color: var(--light-gray-2);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--btn-shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Utility Classes */
.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

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

/* Media Queries */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .features-grid,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Ajustements globaux */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Ajustement du header */
    .navbar {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Fix pour l'espacement des sections */
    .hero-section, 
    .features-section, 
    .process-section,
    .portfolio-section,
    .pricing-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    /* Ajustements Hero */
    .display-heading-1 {
        font-size: 2.2rem;
    }
    
    .hero-content-p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Ajustements des grilles */
    .features-grid,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Ajustement des cards */
    .feature-card, 
    .process-item,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    /* Ajustement de la section titre */
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .section-title-heading {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Ajustement footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    /* Ajustement CTA */
    .cta-wrapper {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Calendly container */
    .calendly-inline-widget {
        height: 580px;
    }
}

@media (max-width: 480px) {
    /* Ajustements globaux */
    .container {
        padding: 0 1rem;
    }
    
    /* Header plus compact */
    .navbar {
        height: 60px;
    }
    
    .logo {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .navbar-button .button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Ajustement des titres */
    .display-heading-1 {
        font-size: 1.8rem;
    }
    
    .display-heading-1 span::after {
        height: 8px;
        bottom: 3px;
    }
    
    .section-title-heading {
        font-size: 1.7rem;
    }
    
    /* Ajustement clients section */
    .clients-logos {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .client-logo {
        flex: 0 0 45%;
    }
    
    .client-logo img {
        max-height: 80px;
    }
    
    /* Fix pour les cartes */
    .feature-card, 
    .process-item, 
    .testimonial-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-title, 
    .process-title {
        font-size: 1.2rem;
    }
    
    .feature-description, 
    .process-description {
        font-size: 0.9rem;
    }
    
    /* Fix pour le portfolio */
    .portfolio-item {
        margin-bottom: 1rem;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
    }
    
    /* Fix pour les cards de prix */
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding-left: 1.2rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .pricing-features li::before {
        left: -1.2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    /* Fix pour CTA */
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    /* Fix pour le calendly */
    .calendly-inline-widget {
        height: 500px;
    }
    
    /* Footer compact */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-heading {
        margin-bottom: 1rem;
    }
    
    .footer-list li {
        margin-bottom: 0.6rem;
    }
    
    /* Fix pour le bouton back-to-top */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Fix pour les très petits écrans */
@media (max-width: 360px) {
    .button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .button-icon {
        margin-right: 5px;
        width: 16px;
        height: 16px;
    }
    
    .display-heading-1 {
        font-size: 1.6rem;
    }
    
    .hero-tag-text {
        font-size: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title-heading {
        font-size: 1.5rem;
    }
    
    .feature-icon svg, 
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
}