/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #ff6b4a;
    --primary-light: #ff8a6b;
    --primary-dark: #e55a3a;
    --secondary-color: #1a2b4a;
    --dark-blue: #0f172a;
    --text-color: #333;
    --text-light: #666;
    --text-gray: #6b7280;
    --light-gray: #f3f4f6;
    --bg-light: #f8f9fa;
    --bg-dark: #1a2b4a;
    --white: #ffffff;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-link {
    color: var(--text-color);
    font-weight: 500;
}

.btn-link:hover {
    color: var(--primary-color);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, var(--primary-light));
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(255, 107, 74, 0.5);
}

/* Header */
.header {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.chevron {
    font-size: 10px;
    opacity: 0.6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-placeholder {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.hero-placeholder {
    background: linear-gradient(135deg, #1a2b4a 0%, #3d5a80 100%);
}

.problem-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    height: 280px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

/* French Tech Banner */
.french-tech-banner {
    background: linear-gradient(135deg, #1a2b4a 0%, #2d4a7c 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.french-tech-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.french-tech-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.french-tech-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.french-tech-logos .french-badge {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.french-tech-logos .french-badge:hover {
    transform: scale(1.1);
}

.french-tech-content p {
    color: white;
    font-size: 15px;
    margin: 0;
}

.french-tech-content p strong {
    color: #ff6b4a;
}

@media (max-width: 768px) {
    .french-tech-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .french-tech-logos .french-badge {
        height: 40px;
    }

    .french-tech-content p {
        font-size: 14px;
    }
}

/* Logos Section */
.logos-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logos-grid img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    object-fit: contain;
}

.logos-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-placeholder:hover {
    opacity: 1;
}

.logo-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--white);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.problem-text ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.problem-text li {
    font-size: 16px;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
}

.problem-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.problem-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Challenges Section */
.challenges-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.challenges-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 48px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.challenge-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
}

.challenge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #e0e5ec 0%, #f8f9fa 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-icon img {
    width: 40px;
    height: 40px;
}

.challenge-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.challenges-conclusion {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: var(--white);
}

.solution-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-text > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.solution-text ul {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-text li {
    font-size: 15px;
    color: var(--text-color);
    padding-left: 24px;
    position: relative;
}

.solution-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Carousel Section */
.carousel-section {
    padding: 60px 0;
    background: var(--white);
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 60px;
    min-height: 400px;
    border-radius: var(--border-radius-lg);
}

.slide-pink {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.slide-blue {
    background: linear-gradient(135deg, #a8c0ff 0%, #3f2b96 100%);
}

.slide-blue .slide-text h3 {
    color: var(--white);
}

.slide-yellow {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.slide-white {
    background: var(--bg-light);
}

.slide-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.slide-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 220px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: var(--white);
    border-radius: 28px;
    padding: 16px;
    height: 320px;
    overflow: hidden;
}

.app-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.ticket-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 6px;
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ticket-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.ticket-status.open {
    background: #4CAF50;
}

.ticket-status.assigned {
    background: #2196F3;
}

.ticket-status.planned {
    background: var(--primary-color);
}

.ticket-status.completed {
    background: #9C27B0;
}

.ticket-item.planned {
    background: #fff3e0;
    border: 1px solid var(--primary-color);
}

.ticket-item small {
    display: block;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.3;
}

.btn-app {
    width: 100%;
    padding: 8px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

.btn-app.secondary {
    background: #e0e0e0;
    color: var(--text-color);
}

.report-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.report-icon {
    font-size: 20px;
}

.pdf-badge {
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.doc-view {
    font-size: 12px;
}

.doc-header {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    margin-bottom: 12px;
}

.doc-content {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.doc-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.integrations-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.integration-logo {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--text-color);
}

.integration-bubble {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-size: 12px;
}

.integration-bubble.large {
    width: 100px;
    height: 100px;
    font-size: 14px;
}

.integration-bubble.small {
    width: 60px;
    height: 60px;
    font-size: 18px;
}

.kolus-arrow {
    margin-top: 16px;
}

.doc-warning {
    color: #ff6b4a;
    font-weight: 600;
    font-size: 11px;
    margin-bottom: 8px;
}

.doc-list {
    font-size: 10px;
    color: var(--text-light);
    padding-left: 12px;
}

.doc-list li {
    margin-bottom: 4px;
    list-style: disc;
}

.badge-placeholder {
    width: 80px;
    height: 40px;
}

.badge-placeholder svg {
    width: 100%;
    height: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: 20px;
    color: var(--secondary-color);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: var(--white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dot::before {
    content: attr(data-slide);
}

.dot.active {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* How it works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.steps-timeline {
    position: relative;
    max-width: 600px;
    margin-left: auto;
}

.steps-timeline::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #e0e0e0;
}

.step {
    display: grid;
    grid-template-columns: 40px 80px 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.step-icon.blue {
    background: #2196F3;
}

.step-icon.orange {
    background: #FF9800;
}

.step-icon.red {
    background: #f44336;
}

.step-icon.green {
    background: #4CAF50;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    margin-bottom: 24px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 24px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer .logo span {
    color: var(--white);
}

.newsletter {
    margin-top: 24px;
}

.newsletter h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-badges img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
}

.social-links a:hover {
    color: var(--white);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.integrations-section h2 {
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-gray);
    margin-bottom: 48px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-4px);
}

.integration-item svg {
    color: var(--primary-color);
}

.integration-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.comparison-column.before {
    border-top: 4px solid #ef4444;
}

.comparison-column.after {
    border-top: 4px solid #10b981;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.comparison-column.before .comparison-icon {
    background: #fef2f2;
    color: #ef4444;
}

.comparison-column.after .comparison-icon {
    background: #ecfdf5;
    color: #10b981;
}

.comparison-column h3 {
    font-size: 18px;
    font-weight: 600;
}

.comparison-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-column li {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 24px;
    position: relative;
}

.comparison-column.before li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.comparison-column.after li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Case Study Section */
.case-study-section {
    padding: 80px 0;
    background: #0f172a;
    color: #ffffff;
}

.case-study-section h2 {
    text-align: center;
    margin-bottom: 48px;
    color: #ffffff;
}

.case-study-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.case-study-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-study-stats .stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b4a;
}

.case-study-stats .stat-label {
    font-size: 14px;
    color: #cbd5e1;
}

.case-study-section blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.case-study-author {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 32px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-blue);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.video-section h2 {
    margin-bottom: 12px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    display: block;
}

/* Video Thumbnail Link */
.video-thumbnail-link {
    display: block;
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-button {
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-play-button {
    transform: scale(1.15);
}

.video-play-bg {
    transition: fill 0.3s ease;
}

.video-thumbnail:hover .video-play-bg {
    fill: #cc0000;
}

.video-cta-text {
    margin-top: 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-cta-text {
    background: var(--primary-color);
    transform: translateY(-4px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 24px 20px;
}

.faq-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-image {
        order: -1;
    }

    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .case-study-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }

    .slide-text h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .carousel-btn {
        display: none;
    }

    .steps-timeline {
        margin-left: 0;
    }

    .step {
        grid-template-columns: 40px 1fr;
    }

    .step-icon {
        display: none;
    }

    .steps-timeline::before {
        display: none;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .case-study-stats .stat-value {
        font-size: 36px;
    }

    .case-study-section blockquote {
        font-size: 16px;
    }

    .video-wrapper iframe {
        height: 300px;
    }

    /* Footer badges responsive */
    .footer-badges {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .footer-badges img {
        height: 50px;
    }

    /* Logos grid responsive */
    .logos-grid {
        gap: 24px;
    }

    .logos-grid img {
        height: 30px;
    }

    /* Section headers responsive */
    .section-header h2 {
        font-size: 24px;
    }

    .section-tag {
        font-size: 11px;
    }

    /* Inline CTA responsive */
    .inline-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .inline-cta-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* KPIs responsive small */
    .kpis-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .kpi-value {
        font-size: 28px;
    }

    .kpi-label {
        font-size: 12px;
    }

    /* Footer responsive small */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-badges img {
        height: 45px;
    }

    /* Trust badges responsive small */
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .trust-badge {
        width: 100%;
        justify-content: flex-start;
    }

    /* French Tech banner small */
    .french-tech-logos .french-badge {
        height: 35px;
    }

    .french-tech-content p {
        font-size: 13px;
    }

    /* ROI Calculator small */
    .roi-result-value {
        font-size: 24px;
    }

    .roi-result-icon {
        font-size: 24px;
    }
}

/* ============================
   GOOGLE ADS OPTIMIZATIONS
   ============================ */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary), #ff8a6b);
    padding: 12px 0;
    text-align: center;
}

.urgency-banner p {
    color: var(--white);
    font-size: 14px;
    margin: 0;
}

.urgency-banner strong {
    font-weight: 700;
}

/* Hero Form */
.hero-form {
    margin-top: 32px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
}

.hero-form .form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-form input {
    flex: 1;
    min-width: 180px;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.hero-form button {
    white-space: nowrap;
}

.form-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 12px;
    text-align: center;
}

/* KPIs Section */
.kpis-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef3f2 0%, #fff 100%);
}

.kpis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.kpi-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kpi-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.kpi-label {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff8a6b);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 14px;
    color: var(--dark);
}

.author-info span {
    font-size: 12px;
    color: #6b7280;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    font-size: 14px;
    color: var(--dark);
}

.trust-text span {
    font-size: 12px;
    color: #6b7280;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d4a7c 100%);
    padding: 16px 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease;
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cta-badge {
    background: linear-gradient(135deg, var(--primary-color), #ff8a6b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

.sticky-cta-text p {
    color: white;
    margin: 0;
    font-size: 15px;
}

.sticky-cta-text p strong {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: none;
    }
}

/* ROI Calculator Section */
.roi-calculator-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, white 100%);
}

.roi-calculator {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 40px;
    border-radius: 20px;
}

.roi-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.roi-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roi-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.roi-input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.roi-input-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 107, 74, 0.3);
    transition: transform 0.2s ease;
}

.roi-input-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.roi-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    min-width: 60px;
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.roi-result-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.roi-result-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.roi-result-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
}

.roi-result-card.highlight .roi-result-value,
.roi-result-card.highlight .roi-result-label {
    color: white;
}

.roi-result-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.roi-result-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.roi-result-label {
    font-size: 14px;
    color: var(--text-light);
}

.roi-cta {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.roi-cta p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .roi-inputs {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .roi-results {
        grid-template-columns: 1fr;
    }

    .roi-calculator {
        padding: 24px;
    }
}

/* Mobile Floating CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

/* Google Ads Optimized Responsive */
@media (max-width: 1024px) {
    .kpis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .urgency-banner p {
        font-size: 13px;
    }

    .hero-form .form-row {
        flex-direction: column;
    }

    .hero-form input {
        min-width: auto;
        width: 100%;
    }

    .kpis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .kpi-value {
        font-size: 36px;
    }

    .testimonials-section h2 {
        font-size: 26px;
    }

    .trust-badges {
        gap: 24px;
    }

    .trust-badge {
        flex: 1 1 40%;
        min-width: 200px;
    }

    .mobile-cta {
        display: block;
    }

    /* Add padding for mobile CTA */
    body {
        padding-bottom: 80px;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image {
        order: -1;
    }
}

/* Solution Section - Image Layout */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.solution-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section - Image Layout */
.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-text {
    text-align: left;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-text {
        text-align: center;
    }
}

/* Carousel Image Slides */
.carousel-slide {
    height: 500px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius-lg);
    background: transparent;
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 300px;
    }
}

/* Inline CTA Sections */
.inline-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f3 0%, #fff 100%);
}

.inline-cta-section.alt {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
}

.inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.inline-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.inline-cta-content p {
    color: var(--text-gray);
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* Competitors Comparison Section */
.competitors-section {
    padding: 80px 0;
    background: var(--white);
}

.competitors-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.competitors-table-wrapper {
    overflow-x: auto;
    margin: 40px 0 24px;
}

.competitors-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.competitors-table th,
.competitors-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.competitors-table th {
    background: #f9fafb;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-blue);
}

.competitors-table th:first-child,
.competitors-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.competitors-table th.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.competitors-table td.highlight {
    background: #fff5f3;
}

.competitors-table .check {
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.competitors-table .cross {
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

.competitors-table .partial {
    color: #f59e0b;
    font-weight: bold;
    font-size: 18px;
}

.competitors-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    color: var(--text-gray);
}

.competitors-legend > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .competitors-table th,
    .competitors-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .competitors-legend {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ============================
   HOW IT WORKS - MODERN DESIGN
   ============================ */

.how-it-works-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.1), rgba(255, 107, 74, 0.05));
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.how-it-works-modern h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.how-it-works-modern .section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
}

.process-number span {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 20px;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

.process-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.process-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.process-icon.coral {
    background: linear-gradient(135deg, #ff6b4a, #ff8a6b);
    color: white;
}

.process-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Connecteurs entre les cartes */
@media (min-width: 1025px) {
    .process-card:not(:last-child)::after {
        content: "→";
        position: absolute;
        top: 50%;
        right: -16px;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 20px;
        font-weight: bold;
        z-index: 2;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .how-it-works-modern h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-it-works-modern {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .how-it-works-modern h2 {
        font-size: 28px;
    }
}

/* ============================
   MODERN GLOBAL STYLES 2024
   ============================ */

/* Animated Gradient Background */
.gradient-bg-animated {
    background: linear-gradient(-45deg, #ff6b4a, #ff8a6b, #3b82f6, #1a2b4a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(26, 43, 74, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effects */
.glow {
    box-shadow: 0 0 20px rgba(255, 107, 74, 0.3);
}

.glow-blue {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Animated Button with Shine */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.4);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Children Animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Gradient Border on Hover */
.gradient-border-hover {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    z-index: 1;
}

.gradient-border-hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-border-hover:hover::before {
    opacity: 1;
}

/* Floating Animation */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Link Hover Effect */
.link-hover {
    position: relative;
    display: inline-block;
}

.link-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.link-hover:hover::after {
    width: 100%;
}

/* Counter Animation Helper */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Modern Card Styles */
.modern-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Badge Style */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

/* Avatar Ring Gradient */
.avatar-ring {
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
}

.avatar-ring > * {
    border-radius: 50%;
}

/* Shimmer Effect for Loading */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Testimonial Quote Style */
.testimonial-quote {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 72px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

/* KPI Modern Style */
.kpis-section .kpi-item.glass {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.kpis-section .kpi-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section Header */
.features-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-section h2 {
    margin-bottom: 0;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .stagger-children > *,
    .float,
    .pulse,
    .gradient-bg-animated,
    .btn-glow::before {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}
