/* TalKittoo - Style Exact Inspiré de l'Image Egens */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #103D88;
    --primary-blue-dark: #0c2d66;
    --accent-orange: #FF6600;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --purple-light: rgba(99, 102, 241, 0.1);
    --purple-medium: rgba(99, 102, 241, 0.3);
    --purple-dark: rgba(79, 70, 229, 0.9);
}

/* Hero Section - Style exact de l'image */
.hero-egens-style {
    min-height: 90vh;
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Formes géométriques de fond */
.hero-egens-style::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--purple-light) 0%, rgba(255, 102, 0, 0.1) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 0;
}

.hero-egens-style::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, var(--purple-light) 100%);
    border-radius: 50% 30% 50% 30%;
    z-index: 0;
}

.hero-container-egens {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-left {
    position: relative;
    z-index: 2;
}

.hero-badge-small {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hero-title-main {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title-main .highlight-blue {
    color: var(--primary-blue);
}

.hero-title-main .highlight-orange {
    color: var(--accent-orange);
}

.hero-slogan {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: italic;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 550px;
}

.hero-slogan i {
    color: var(--accent-orange);
    font-size: 18px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 35px;
    max-width: 550px;
}

.btn-read-more {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-read-more:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Hero Right - Image circulaire avec badges */
.hero-content-right {
    position: relative;
    z-index: 2;
}

.hero-image-circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Badge "12 Years of Experience" */
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.experience-progress {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 160px;
    height: 160px;
}

.progress-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: var(--primary-blue);
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.experience-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.experience-years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.experience-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Badge "Award Winning Agency" */
.award-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

.award-badge i {
    color: var(--accent-orange);
    font-size: 18px;
}

.orange-badge {
    position: absolute;
    top: 100px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--accent-orange);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    z-index: 3;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    animation: pulse-orange 2s ease-in-out infinite;
}

.orange-badge i {
    color: var(--white);
    font-size: 18px;
}

@keyframes pulse-orange {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5); }
}

/* Formes géométriques décoratives */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.shape-1 {
    top: 10%;
    right: 10%;
    border-width: 0 30px 50px 30px;
    border-color: transparent transparent var(--purple-light) transparent;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 20%;
    right: 5%;
    border-width: 0 20px 35px 20px;
    border-color: transparent transparent rgba(255, 102, 0, 0.2) transparent;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    top: 50%;
    left: -5%;
    border-width: 0 25px 40px 25px;
    border-color: transparent transparent rgba(255, 102, 0, 0.15) transparent;
    animation: float 7s ease-in-out infinite;
}

.shape-wave {
    position: absolute;
    bottom: -50px;
    left: 20%;
    width: 200px;
    height: 50px;
    background: var(--purple-light);
    border-radius: 50% 30% 50% 30%;
    animation: wave 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes wave {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(30px) scale(1.1); }
}

/* Section Services Showcase - 3 colonnes */
.services-showcase {
    padding: 80px 0;
    background: var(--white);
}

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

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

.service-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-circle {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Section Success */
.success-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.success-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-label-small {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title-large {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 35px;
}

.team-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-image:hover {
    transform: translateY(-5px);
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-list-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.service-list-icon {
    width: 50px;
    height: 50px;
    background: var(--purple-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-list-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.service-list-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Section Statistiques - Design complètement refait avec fond clair */
.stats-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-item:nth-child(1) {
    border-top: 4px solid var(--primary-blue);
}

.stat-item:nth-child(2) {
    border-top: 4px solid var(--accent-orange);
}

.stat-item:nth-child(3) {
    border-top: 4px solid var(--primary-blue);
}

.stat-item:nth-child(4) {
    border-top: 4px solid var(--accent-orange);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-item:nth-child(2) .stat-number,
.stat-item:nth-child(4) .stat-number {
    color: var(--accent-orange);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 6px;
}

/* Section What We Do */
.what-we-do-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-top: 20px;
}

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

.service-card-hex {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card-hex:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-blue);
}

.service-hex-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--purple-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card-hex:hover .service-hex-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-link:hover {
    gap: 12px;
    color: var(--accent-orange);
}

/* Section Témoignages */
.testimonials-section-egens {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.testimonial-main {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon-large {
    font-size: 120px;
    color: var(--purple-light);
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text-large {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 35px;
}

.testimonial-author-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-200);
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

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

.testimonials-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-thumb:hover {
    transform: scale(1.1);
}

.testimonial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Boost - Style amélioré */
.boost-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.boost-section-enhanced::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.boost-enhanced-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.boost-enhanced-left {
    position: relative;
}

.section-label-small-orange {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title-large-enhanced {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.section-title-large-enhanced .highlight-orange {
    color: var(--accent-orange);
}

.section-description-enhanced {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 35px;
}

.boost-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.boost-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--gray-700);
}

.boost-feature-item i {
    color: var(--accent-orange);
    font-size: 20px;
}

.btn-read-more-orange {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.btn-read-more-orange:hover {
    background: #FF8533;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
    gap: 16px;
}

.boost-enhanced-right {
    position: relative;
}

.boost-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.boost-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.boost-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.boost-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.boost-card-icon.orange-bg {
    background: var(--accent-orange);
}

.boost-card-icon.blue-bg {
    background: var(--primary-blue);
}

.boost-card:hover .boost-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.boost-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.boost-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Section Langues Proposées - Design Premium Inspiré de l'Image */
.languages-showcase-section {
    padding: 100px 0;
    background: var(--white);
}

.languages-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.language-card-premium {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    position: relative;
}

.language-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.language-card-premium:hover::before {
    opacity: 1;
}

.language-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-blue);
}

.language-premium-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 20px 25px;
    position: relative;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.language-premium-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.language-premium-divider {
    height: 1px;
    background: var(--gray-300);
    margin: 0;
}

.language-premium-body {
    padding: 35px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    min-height: 180px;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%);
}

.language-premium-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.language-premium-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.premium-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-value {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 700;
}

.language-premium-flag-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-premium-flag {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 4px solid var(--gray-200);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.language-premium-flag::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.language-card-premium:hover .language-premium-flag {
    transform: scale(1.15) rotate(10deg);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.language-card-premium:hover .language-premium-flag::after {
    opacity: 0.3;
}

.language-premium-footer {
    padding: 0 25px 25px;
    background: var(--white);
}

.language-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.language-premium-link:hover {
    gap: 15px;
    color: var(--accent-orange);
}

.language-premium-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.language-premium-link:hover i {
    transform: translateX(5px);
}

/* Section Comment ça marche */
.how-it-works-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 30px auto 25px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.process-arrow {
    font-size: 32px;
    color: var(--gray-400);
    flex-shrink: 0;
}

/* Section CTA Finale - Style simplifié */
.cta-final-section {
    padding: 100px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(79, 70, 229, 0.9) 100%);
    z-index: 0;
}

.cta-final-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-final-title {
    font-size: clamp(36px, 5.5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-final-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
}

.cta-final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.btn-cta-primary:hover {
    background: #FF8533;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
    gap: 16px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    gap: 16px;
}

/* Section Pourquoi Nous Choisir */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.why-choose-content {
    text-align: center;
}

.why-choose-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-item {
    padding: 35px 25px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.why-choose-item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-choose-item-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Styles pour les pages courses, advantages, etc. */
.hero-egens-style {
    position: relative;
}

/* Styles pour les cards de prix */
.price-card-online .price-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-card-accelerated .price-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Styles pour le test de niveau */
.test-questions {
    margin-top: 30px;
}

/* Styles pour l'aperçu d'inscription */
.registration-preview {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container-egens {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-circle {
        width: 400px;
        height: 400px;
    }
    
    .success-content-wrapper,
    .boost-content-wrapper,
    .boost-enhanced-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .languages-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-main-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-thumbnails {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero-container-egens {
        gap: 40px;
    }
    
    .hero-title-main {
        font-size: clamp(32px, 5vw, 48px);
    }
    
    .hero-description {
        font-size: clamp(16px, 2vw, 18px);
    }
    
    .hero-image-circle {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .hero-container-egens {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content-left {
        max-width: 100%;
    }
    
    .hero-slogan {
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-read-more {
        margin: 0 auto;
    }
    
    .hero-image-circle {
        width: 350px;
        height: 350px;
    }
    
    .experience-badge {
        left: 10px;
        bottom: 10px;
        width: 120px;
        height: 120px;
    }
    
    .experience-progress {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .hero-egens-style {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-container-egens {
        padding: 0 15px;
        gap: 40px;
    }
    
    .hero-title-main {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-slogan {
        font-size: clamp(18px, 4vw, 22px);
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: clamp(15px, 3.5vw, 17px);
        margin-bottom: 25px;
    }
    
    .btn-read-more {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .hero-image-circle {
        width: 280px;
        height: 280px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        left: 5px;
        bottom: 5px;
    }
    
    .experience-progress {
        width: 120px;
        height: 120px;
    }
    
    .experience-years {
        font-size: 24px;
    }
    
    .experience-label {
        font-size: 10px;
    }
    
    .award-badge,
    .orange-badge {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .award-badge {
        top: 20px;
        right: 10px;
    }
    
    .orange-badge {
        top: 60px;
        right: 10px;
    }
    .hero-egens-style {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .hero-slogan {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title-large,
    .section-title-large-enhanced {
        font-size: 28px;
    }
    
    .services-grid-3,
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid-6 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .languages-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image-circle {
        width: 280px;
        height: 280px;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        left: -15px;
        bottom: 10px;
    }
    
    .experience-progress {
        width: 110px;
        height: 110px;
        top: -10px;
        left: -10px;
    }
    
    .experience-years {
        font-size: 20px;
    }
    
    .experience-label {
        font-size: 9px;
    }
    
    .award-badge,
    .orange-badge {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .orange-badge {
        top: 80px;
        right: 30px;
    }
    
    .boost-enhanced-wrapper {
        gap: 40px;
    }
    
    .boost-cards-grid {
        gap: 15px;
    }
    
    .boost-card {
        padding: 18px;
    }
    
    .boost-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .boost-card-title {
        font-size: 16px;
    }
    
    .boost-card-desc {
        font-size: 13px;
    }
    
    .language-card-modern {
        max-width: 100%;
    }
    
    .language-card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .language-card-flag {
        align-self: center;
    }
    
    .flag-circle {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .cta-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .partners-logos {
        gap: 30px;
    }
    
    .partner-logo {
        min-width: 120px;
        padding: 15px;
    }
    
    .partner-logo i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.3;
    }
    
    .hero-slogan {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .section-title-large,
    .section-title-large-enhanced {
        font-size: clamp(20px, 5vw, 24px) !important;
    }
    
    .section-subtitle {
        font-size: 13px !important;
    }
    
    .stats-banner {
        padding: 50px 0;
    }
    
    .stats-grid-4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-image-circle {
        width: 180px;
        height: 180px;
    }
    
    .experience-badge {
        width: 70px;
        height: 70px;
        left: -5px;
        bottom: 0;
    }
    
    .experience-progress {
        width: 90px;
        height: 90px;
    }
    
    .experience-years {
        font-size: 16px;
    }
    
    .experience-label {
        font-size: 7px;
    }
    
    .award-badge,
    .orange-badge {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .orange-badge {
        top: 50px;
        right: 15px;
    }
    
    .btn-read-more,
    .btn-read-more-orange {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-text {
        font-size: 14px;
    }
    
    .language-premium-header {
        padding: 15px 20px;
    }
    
    .language-premium-title {
        font-size: 18px;
    }
    
    .language-premium-body {
        padding: 20px;
        min-height: auto;
    }
    
    .language-premium-flag {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .premium-value {
        font-size: 14px;
    }
    
    .price-card-header {
        padding: 15px 20px;
    }
    
    .price-card-title {
        font-size: 18px;
    }
    
    .price-card-body {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 22px;
    }
    
    .price-amount-online,
    .price-amount-accel {
        font-size: 24px;
    }
    
    .price-duration {
        font-size: 12px;
    }
    
    .test-header {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .test-title {
        font-size: 18px;
    }
    
    .test-subtitle {
        font-size: 14px;
    }
    
    .timer-display {
        font-size: 32px !important;
    }
    
    .test-question-card {
        padding: 20px 15px;
    }
    
    .question-number {
        font-size: 11px;
    }
    
    .question-text {
        font-size: 15px;
    }
    
    .option-label {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .question-input,
    .question-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .scroll-to-top {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }
    
    .cta-final-section {
        padding: 60px 20px !important;
    }
    
    .cta-final-title {
        font-size: 24px !important;
    }
    
    .cta-final-text {
        font-size: 14px !important;
    }
    
    .faq-item-modern {
        margin-bottom: 12px;
    }
    
    .faq-question-modern {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-answer-modern {
        padding: 0 20px 15px;
        font-size: 13px;
    }
    
    .about-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Menu Mobile - Style Glassmorphism (Plasmogramme) */
#mobileMenu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mobileMenu > div {
    position: relative;
    overflow: hidden;
}

#mobileMenu > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

#mobileMenu a {
    position: relative;
    transition: all 0.2s ease;
}

#mobileMenu a:not(:last-child):hover {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    #mobileMenu > div {
        margin: 12px !important;
        padding: 18px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 480px) {
    #mobileMenu > div {
        margin: 10px !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
}

/* Animation pour le drapeau dans le hero */
@keyframes float-flag {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}
