/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Variables CSS */
:root {
    --primary-color: #00BFA6;
    --primary-dark: #00A896;
    --accent-color: #00BFA6;
    --accent-dark: #00A896;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --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;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #00BFA6 0%, #00A896 100%);
    --gradient-accent: linear-gradient(135deg, #00BFA6 0%, #00A896 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Boutons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(15, 61, 46, 0.12);
    box-shadow: 0 18px 40px -24px rgba(15, 61, 46, 0.32);
    padding: 0.75rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.nav-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    background-color: transparent;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(120deg, #00BFA6 0%, #0F3D2E 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.nav-brand-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 61, 46, 0.6);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BFA6 0%, #009E8A 100%);
    opacity: 0;
    transform: translateX(-8px) scale(0.5);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00BFA6 0%, #009E8A 100%);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 12px 18px -12px rgba(0, 168, 150, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    transform: translateX(0);
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -12px rgba(0, 168, 150, 0.85);
    filter: brightness(1.02);
}

.nav-button:hover .nav-button-icon {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(15, 61, 46, 0.1);
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
    border-color: rgba(15, 61, 46, 0.2);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
    .nav-content {
        position: absolute;
        top: calc(100% + 12px);
        right: 24px;
        left: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 61, 46, 0.1);
        border-radius: 20px;
        box-shadow: 0 28px 60px -24px rgba(15, 61, 46, 0.25);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-content.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .nav-links a {
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 1rem;
        color: var(--text-primary);
        background: rgba(0, 0, 0, 0);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(0, 191, 166, 0.08);
    }

    .nav-actions {
        width: 100%;
    }

    .nav-actions .nav-button {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .nav-brand-name {
        font-size: 1.2rem;
    }

    .nav-brand-tagline {
        font-size: 0.7rem;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    border-radius: 0 0 0 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-title {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none !important;
}

.hero-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.card-dots span:first-child {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:last-child {
    background: #28ca42;
}

.stat-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.section-header h2 {
    text-align: center;
}

.section-header p {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.vision-text {
    text-align: left;
    padding-right: 3rem;
}

.vision-button-container {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .vision-text {
        padding-right: 0;
    }
}

.vision-text h2 {
    color: var(--white);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.4;
    white-space: nowrap;
}

.vision-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 2;
    font-weight: 400;
}

.vision-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
}

.vision-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: none !important;
}

.vision-graphic {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.island-illustration {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.island-group {
    position: relative;
    width: 200px;
    height: 200px;
}

.island {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.island-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.island-2 {
    top: 20px;
    right: 20px;
    animation-delay: 1s;
}

.island-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: pulse 2s ease-in-out infinite;
}

.line-1 {
    top: 50px;
    left: 50px;
    width: 80px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 50px;
    right: 50px;
    width: 80px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 50px;
    left: 50%;
    width: 100px;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 1s;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.center-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.center-text {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.vision-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-quote {
    text-align: left;
}

.testimonial-quote {
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-quote blockquote {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-quote cite {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.testimonial-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none !important;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.avatar-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin-right: -10px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.service-card h3 {
    text-align: left;
}

.service-card p {
    text-align: left;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

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

.transformation-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.transformation-text {
    text-align: left;
    padding-right: 3rem;
}

.transformation-button-container {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .transformation-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .transformation-text {
        padding-right: 0;
    }
}

.transformation-text h2 {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    white-space: nowrap;
}

.transformation-description {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
}

.transformation-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
}

.transformation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transform: none !important;
}

.transformation-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
}

.transformation-card h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pioneer-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pioneer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pioneer-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.pioneer-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final Form Section */
.final-form-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    white-space: nowrap;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

.inscription-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.checkbox-group label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer p {
    margin: 0;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.footer-social span {
    color: var(--white);
    font-weight: 600;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.footer-social a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* SEO Content Section */
.seo-content {
    background: var(--white);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.seo-content .container {
    max-width: 1000px;
}

.seo-content h1,
.seo-content h2 {
    color: #000000 !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
}

.seo-content h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

.seo-content h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

.seo-content p {
    color: #000000 !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
    letter-spacing: 0 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .vision-content,
    .testimonial-content,
    .transformation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .vision-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .vision-text h2,
    .transformation-text h2,
    .form-header h2 {
        white-space: normal;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .inscription-form {
        padding: 2rem;
    }
    
    .hero-card,
    .vision-card,
    .testimonial-card,
    .transformation-card {
        max-width: 100%;
    }
    
    .vision-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .inscription-form {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.875rem;
    }
    
    .cta-button.large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .seo-content {
        padding: 2rem 0;
    }
    
    .seo-content h1 {
        font-size: 1.5rem !important;
    }
    
    .seo-content h2 {
        font-size: 1.25rem !important;
    }
    
    .seo-content p {
        font-size: 0.95rem !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}