/* ===================================
   REDARROW - STYLES PRINCIPAUX CONSOLIDÉS
   Base + Readdle + Navigation moderne
   =================================== */

/* ===================================
   Design System Variables
   =================================== */
:root {
    /* Couleurs principales */
    --primary: #DC2626;
    --primary-dark: #991B1B;
    --accent: #2563EB;
    --dark: #0A0A0A;
    
    /* Gris */
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
    
    /* Couleurs AI modernes */
    --ai-purple: #A855F7;
    --ai-cyan: #06B6D4;
    --ai-magenta: #EC4899;
    --ai-indigo: #6366F1;
    --ai-emerald: #10B981;
    --ai-amber: #F59E0B;
    
    /* Backgrounds doux */
    --bg-soft-blue: #F0F7FF;
    --bg-soft-purple: #F5F3FF;
    --bg-soft-pink: #FFF1F5;
    --bg-soft-green: #F0FDF4;
    --bg-soft-yellow: #FFFBEB;
    --bg-cream: #FAFAF9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    --gradient-accent: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1F2937 100%);
    --gradient-ai-purple: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    --gradient-ai-cyan: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
    --gradient-ai-rainbow: linear-gradient(135deg, #A855F7 0%, #EC4899 33%, #F59E0B 66%, #10B981 100%);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* ===================================
   Reset & Base
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Navigation Ultra Moderne
   DÉSACTIVÉ - Les styles sont gérés dans style-header.css
   =================================== */
/* Navigation styles moved to style-header.css */

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

/* ===================================
   Hero Section - Style Readdle
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 8rem;
    background: white;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-soft-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-image-container {
    margin: 4rem 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    display: none; /* Style Readdle */
}

/* ===================================
   Buttons - Style Readdle
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #E6244F 0%, #8B1530 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(230, 36, 79, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8B1530 0%, #E6244F 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 36, 79, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark) !important;
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--dark);
    background: var(--gray-100);
    color: var(--dark) !important;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ===================================
   Sections - Style Readdle
   =================================== */
section {
    padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3.5rem, 7vw, 6rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   Features - Style Readdle
   =================================== */
.features {
    padding: 6rem 0;
    background: rgb(250 250 249 / 10%);
}

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

@media (min-width: 768px) and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid .feature-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid .feature-card:nth-child(4),
    .features-grid .feature-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .features-grid .feature-card:nth-child(4) {
        grid-column-start: 1;
    }
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Feature Card Colors */
.feature-card-red::before {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
}

.feature-card-red .feature-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.feature-card-red .feature-icon svg {
    stroke: #DC2626;
}

.feature-card-purple::before {
    background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
}

.feature-card-purple .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(192, 132, 252, 0.05) 100%);
}

.feature-card-purple .feature-icon svg {
    stroke: #A855F7;
}

.feature-card-blue::before {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

.feature-card-blue .feature-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.feature-card-blue .feature-icon svg {
    stroke: #2563EB;
}

.feature-card-cyan::before {
    background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%);
}

.feature-card-cyan .feature-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
}

.feature-card-cyan .feature-icon svg {
    stroke: #06B6D4;
}

.feature-card-green::before {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.feature-card-green .feature-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
}

.feature-card-green .feature-icon svg {
    stroke: #10B981;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===================================
   Image Showcase - Style Readdle
   =================================== */
.image-showcase {
    padding: 6rem 0;
    background: rgb(250 250 249 / 14%);
}

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

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.showcase-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2rem;
    color: white;
}

.showcase-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.showcase-overlay p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Fullscreen Image Sections
   =================================== */
.fullscreen-image-section {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.fullscreen-image {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.fullscreen-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease;
}

.fullscreen-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fullscreen-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.fullscreen-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.fullscreen-content .btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Quick Links - Style Readdle
   =================================== */
.quick-links {
    padding: 6rem 0;
    background: rgb(250 250 249 / 14%);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.link-card {
    background: white;
    border-radius: 20px;
    padding: 3.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.link-card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.link-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-ai-cyan);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon svg {
    stroke: white;
    width: 32px;
    height: 32px;
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.link-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.link-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(6px);
}

.link-arrow svg {
    stroke: var(--gray-400);
    width: 24px;
    height: 24px;
}

/* ===================================
   CTA Section - Style Readdle
   =================================== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1F2937 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden !important;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--gray-300);
}

/* ===================================
   Footer - Style Readdle
   =================================== */
.footer {
    padding: 4rem 0 3rem;
    background: var(--bg-cream);
    color: var(--gray-700);
    position: relative;
    overflow: hidden !important;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) saturate(100%);
}

.footer-tagline {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

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

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.3); 
    }
}

/* ===================================
   Parallax Section
   =================================== */
.parallax-section {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.parallax-image {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease;
}

.parallax-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.parallax-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.parallax-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SEO Content Section - Grid Layout
   =================================== */
.seo-content-section {
    padding: 4rem 0;
    background: white;
}

.seo-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.seo-header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.seo-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--dark) !important;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.seo-intro {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.lead-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: white !important;
}

/* SEO Accordions Layout */
.seo-accordions {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.accordion-item {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    background: var(--bg-soft-blue);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.accordion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-item:hover .accordion-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
}

.accordion-icon svg {
    stroke: var(--primary);
    width: 22px;
    height: 22px;
}

.accordion-header h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--dark) !important;
    margin: 0;
    line-height: 1.3;
}

.accordion-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-toggle svg {
    stroke: var(--gray-600);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-toggle svg {
    stroke: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.accordion-content p {
    color: var(--gray-600) !important;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.highlight-text-inline {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    display: block;
    margin: 0;
}

/* Remove old grid styles */
.seo-grid {
    display: none;
}

.seo-block {
    display: none;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .link-card {
        padding: 2.5rem;
    }
    
    .link-card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .link-arrow {
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .fullscreen-image {
        background-attachment: scroll;
        min-height: 80vh;
    }
    
    .fullscreen-content {
        padding: 2rem;
    }
    
    .fullscreen-content h2 {
        font-size: 2rem;
    }
    
    .fullscreen-content p {
        font-size: 1rem;
    }
    
    /* Parallax responsive */
    .parallax-image {
        background-attachment: scroll;
        min-height: 60vh;
    }
    
    .parallax-content {
        padding: 3rem 1.5rem;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .parallax-content p {
        font-size: 1rem;
    }
    
    /* SEO Grid responsive */
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .seo-block {
        padding: 2rem;
    }
    
    /* SEO Accordions responsive */
    .accordion-header {
        padding: 1.5rem;
    }
    
    .accordion-header-content {
        gap: 1rem;
    }
    
    .accordion-icon {
        width: 48px;
        height: 48px;
    }
    
    .accordion-header h3 {
        font-size: 1.125rem;
    }
    
    .accordion-content {
        padding: 0 1.5rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 42px !important;
    }
    
    .nav-content {
        padding: 0.375rem 0 !important;
    }
}

/* ===================================
   Page Header Minimal - Pour Applications & Services
   =================================== */
.page-header-minimal {
    padding: 10rem 0 4rem;
    text-align: center;
    background: transparent;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-title-large {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white !important;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   Applications Grid Section
   =================================== */
.apps-grid-section {
    padding: 6rem 0;
    background: rgb(250 250 249 / 14%);
}

.apps-grid-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
}

/* Modern App Card */
.app-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.app-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.app-card-modern.featured {
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.featured-label {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.app-card-header {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.app-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-card-badge.ios {
    color: white;
}

.app-card-badge.web {
    color: white;
}

.app-card-badge svg {
    width: 16px;
    height: 16px;
}

.app-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-card-modern:hover .app-card-image img {
    transform: scale(1.08);
}

.app-card-body {
    padding: 2.5rem;
}

.app-card-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark) !important;
    margin-bottom: 0.5rem;
}

.app-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary) !important;
    margin-bottom: 1rem;
}

.app-description {
    color: var(--gray-600) !important;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* App Features Compact */
.app-features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--dark) !important;
    font-weight: 500;
}

.feature-compact span {
    color: var(--dark) !important;
}

.feature-compact svg {
    color: var(--primary) !important;
    flex-shrink: 0;
}

/* App Stats Row */
.app-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-soft-blue);
    border-radius: 16px;
}

.stat-compact {
    flex: 1;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary) !important;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600) !important;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* App Tags Compact */
.app-tags-compact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.app-tags-compact span {
    background: var(--gray-100);
    color: var(--gray-700) !important;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Button Block */
.btn-block {
    width: 100%;
    justify-content: center;
}

/* Responsive Apps Grid */
@media (max-width: 1024px) {
    .apps-grid-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .app-card-header {
        height: 200px;
    }
    
    .app-card-body {
        padding: 2rem;
    }
    
    .app-features-compact {
        grid-template-columns: 1fr;
    }
    
    .app-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .page-header-minimal {
        padding: 8rem 0 3rem;
    }
}

/* ===================================
   Services Grid Section - Style App Cards
   =================================== */
.services-grid-section {
    padding: 6rem 0;
    background: rgb(250 250 249 / 14%);
}

.services-grid-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
}

/* Service Card Modern - Réutilise le style app-card-modern */
.service-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card-modern.featured {
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.service-card-modern.training {
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.service-card-modern.training:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card-header {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card-badge.development {
    background: rgba(220, 38, 38, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card-badge.automation {
    background: rgba(168, 85, 247, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card-badge.training {
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card-badge svg {
    width: 16px;
    height: 16px;
}

.service-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2.5rem;
}

.service-card-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark) !important;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary) !important;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600) !important;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Service Features Compact */
.service-features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Service Stats Row - Réutilise app-stats-row */
.service-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-soft-purple);
    border-radius: 16px;
}

/* Service Tags Compact */
.service-tags-compact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-tags-compact span {
    background: var(--gray-100);
    color: var(--gray-700) !important;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Responsive Services Grid */
@media (max-width: 1024px) {
    .services-grid-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-card-header {
        height: 200px;
    }
    
    .service-card-body {
        padding: 2rem;
    }
    
    .service-features-compact {
        grid-template-columns: 1fr;
    }
    
    .service-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}
