/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Couleurs SIPRESS - Inspirée du Logo */
    --primary-color: #f4d03f;      /* Jaune/Or du logo */
    --primary-dark: #d4b02a;       /* Or foncé */
    --primary-light: #f9e076;      /* Jaune clair */
    --accent-color: #9bc53d;       /* Vert olive/chartreuse du logo */
    --accent-dark: #7a9f2e;        /* Vert olive foncé */
    --accent-light: #b5d96a;       /* Vert clair */

    --dark-green: #1e4620;         /* Vert foncé du logo */
    --dark-green-light: #2d5f2e;   /* Vert foncé clair */

    --text-primary: #101110;       /* Vert très foncé pour texte */
    --text-secondary: #4a6b4d;     /* Vert grisâtre */
    --text-light: #6b8a6e;         /* Vert léger */

    --bg-white: #ffffff;
    --bg-light: #f7faf5;           /* Très légèrement vert */
    --bg-gray: #eef4ec;            /* Gris-vert léger */

    --border-color: #d9e8d5;       /* Bordure vert pâle */
    --shadow-sm: 0 1px 2px 0 rgba(30, 70, 32, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(30, 70, 32, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(30, 70, 32, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(30, 70, 32, 0.1);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--dark-green);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 2px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background-image:
        linear-gradient(135deg, rgba(15, 32, 39, 0.88) 0%, rgba(30, 95, 54, 0.78) 50%, rgba(44, 83, 100, 0.88) 100%),
        url('https://www.investopedia.com/thmb/7gfCixGE40_BlpBi2GqN1HTi51Q=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/GettyImages-2174080781-508c0aae85a94ae6a7c4f9c303eae4f1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle at top right, rgba(155, 197, 61, 0.15) 0%, rgba(244, 208, 63, 0.08) 40%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(155, 197, 61, 0.1) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.hero-label {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-title {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.underline {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(155, 197, 61, 0.3));
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 580px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hero-images {
    position: relative;
}

.hero-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.hero-images-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--bg-white);
    padding: 32px 40px;
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.hero-badge h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stars {
    color: var(--primary-color);
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(244, 208, 63, 0.3));
}

.rating-score {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.rating-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

.scroll-text {
    margin-top: 70px;
    overflow: hidden;
    background: transparent;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.scroll-text-content {
    font-size: 40px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(155, 197, 61, 0.2);
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Styles */
.section-label {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 800px;
    font-weight: 800;
    line-height: 1.2;
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 650px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-features {
    margin: 40px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0e15a 0%, #f0e15a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.feature-icon img {
    width: 28px;
    height: 28px;
}

.feature-content h3 {
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.about-stats {
    margin: 40px 0;
}

.stat-image {
    position: relative;
    display: inline-block;
}

.stat-image img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stat-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.author-info img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.author-info h4 {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #e6e2e2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-size: 15px;
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
    background: var(--bg-white);
    padding: 20px 36px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 40px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.cta-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.services-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-features {
    margin-top: 40px;
}

.why-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.why-icon img {
    width: 28px;
    height: 28px;
}

.why-feature h3 {
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.why-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.why-choose-images {
    position: relative;
}

.why-image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.why-badge {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.why-badge img {
    width: 100px;
    height: 100px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.why-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 60px;
}

.why-images-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* Blog Preview Section */
.blog-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
    color: var(--bg-white);
}

.blog-preview .section-label,
.blog-preview .section-title {
    color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-card.large {
    padding: 0;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 32px;
}

.blog-badge {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.blog-badge img {
    width: 44px;
    height: 44px;
}

.blog-badge h4 {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.blog-badge p {
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blog-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.blog-card h3 {
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-tags .tag {
    background: rgba(244, 208, 63, 0.2);
    color: var(--bg-white);
    border-color: rgba(244, 208, 63, 0.4);
}

.blog-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-cta p {
    font-size: 17px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-cta a {
    color: var(--bg-white);
    font-weight: 600;
    text-decoration: underline;
}

.rating-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.rating-small .stars {
    color: #fbbf24;
}

/* Journey Section */
.journey {
    padding: 100px 0;
}

.journey-hero {
    position: relative;
    height: 450px;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.journey-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-hero-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.timeline {
    margin-top: 60px;
}

.timeline-item {
    margin-bottom: 50px;
    padding-left: 40px;
    border-left: 2px solid var(--border-color);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-white), 0 0 0 6px var(--primary-color);
}

.timeline-item h3 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.75;
    max-width: 800px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #d4c825 !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 48px;
    font-size: 15px;
    line-height: 1.6;
}

.price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.amount {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.check {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.benefit-item .icon {
    font-size: 22px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.testimonials-header {
    grid-column: span 2;
}

.testimonials-stats {
    margin: 30px 0;
}

.avatars {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    margin-left: -12px;
    box-shadow: var(--shadow-md);
}

.avatars img:first-child {
    margin-left: 0;
}

.more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: -12px;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.stat-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.company-logo {
    margin-top: 30px;
}

.company-logo img {
    height: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.testimonial-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 15px;
}

.testimonial-author h4 {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rating-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 260px;
    border: 1px solid var(--border-color);
}

.rating-badge img {
    width: 44px;
    height: 44px;
}

.rating-badge .rating-score {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-badge .stars {
    color: #fbbf24;
    font-size: 16px;
}

.rating-badge .rating-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* World Map Section */
.world-map {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-content {
    position: relative;
    text-align: center;
}

.map-content img {
    width: 100%;
    max-width: 800px;
    opacity: 0.3;
}

.map-stat {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-stat h2 {
    font-size: 64px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.map-stat p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 197, 61, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-tags {
    display: flex;
    gap: 12px;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    display: block;
}

/* Latest Blog Section */
.latest-blog {
    padding: 100px 0;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.blog-post {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-post:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.blog-post h3 {
    font-size: 18px;
    color: var(--text-primary);
    padding: 24px 24px 16px;
    line-height: 1.5;
    font-weight: 700;
}

.post-link {
    display: block;
    padding: 0 24px 24px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}

.post-link:hover {
    padding-left: 28px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
    color: var(--bg-white);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-cta h2 {
    font-size: 28px;
    color: var(--bg-white);
    font-weight: 700;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-phone {
    font-size: 28px;
    color: var(--bg-white);
    margin: 0;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-content {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive */
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-content,
    .about-content,
    .why-choose-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
    }

    .testimonials-header {
        grid-column: span 1;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    /* Afficher le bouton burger */
    .mobile-menu-toggle {
        display: flex;
        margin-left: 16px;
    }

    /* Cacher le bouton Demander un Devis sur mobile */
    .header-cta .btn-primary {
        display: none;
    }

    /* Menu mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .journey-hero-text {
        font-size: 50px;
    }

    .container {
        padding: 0 20px;
    }
}
