/* =====================
   RESET & BASE STYLES - DESIGN SYSTÈME STARTUP 2024
   ===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales — Proptech Vibrant */
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --accent-light: #22d3ee;
    --accent-warm: #f59e0b;
    --accent-warm-light: #fbbf24;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #4f46e5 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(79, 70, 229, 0.15) 0px, transparent 50%), radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.1) 0px, transparent 50%), radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.08) 0px, transparent 50%);

    /* Texte */
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-muted: #94a3b8;

    /* Arrière-plans */
    --background: #ffffff;
    --background-light: #f8fafc;
    --background-alt: #f1f5f9;

    /* Bordures */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* États */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --error: #ef4444;
    --error-light: #fee2e2;

    /* Ombres modernes */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(79, 70, 229, 0.3);
    --shadow-accent: 0 8px 24px rgba(6, 182, 212, 0.25);
    --shadow-glow: 0 0 60px rgba(79, 70, 229, 0.15);

    /* Rayons de bordure */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
    font-size: 16px;
}

/* Google Fonts import for bold/thin contrast */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Container avec padding responsive */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* =====================
   HEADER & NAVIGATION - DESIGN MODERNE
   ===================== */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem clamp(1rem, 4vw, 2rem);
    min-height: 70px;
}

.logo {
    flex-shrink: 0;
}

.logo .logo-text,
.logo h1 {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    letter-spacing: -0.03em;
}

.logo .logo-text span,
.logo h1 span {
    font-weight: 300;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu burger mobile */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.nav-toggle-label:hover {
    background: var(--background-light);
}

.nav-toggle-label span {
    display: block;
    background: var(--text-dark);
    height: 2px;
    width: 22px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
    left: 0;
    background: var(--text-dark);
    height: 2px;
    width: 22px;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Animation burger -> X */
.nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Menu navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--background-light);
}

.nav-menu a:hover::after {
    width: calc(100% - 2rem);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: calc(100% - 2rem);
}

.nav-search-btn {
    padding: 0.5rem !important;
}

.nav-search-btn::after {
    display: none !important;
}

.nav-search-btn svg {
    display: block;
}

.nav-search-btn:hover {
    color: var(--primary-color);
}

/* =====================
   HERO SECTION - DESIGN STARTUP MODERNE
   ===================== */

.hero {
    background: var(--gradient-primary);
    color: white;
    padding: clamp(4rem, 10vw, 6rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 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");
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

/* =====================
   HERO MODERN - VERSION AVANCÉE
   ===================== */

.hero-modern {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    overflow: hidden;
    background: var(--gradient-hero);
    min-height: min(70vh, 600px);
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* Grid animé décoratif */
.hero-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: transparent;
}

/* Orbes lumineux flottants */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(79, 70, 229, 0.25);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.2);
    bottom: -100px;
    left: -80px;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.hero-title .thin {
    font-weight: 300;
    opacity: 0.9;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #22d3ee 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    background: linear-gradient(135deg, #22d3ee 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    opacity: 0.75;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background: #f8fafc;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-large:hover .btn-icon {
    transform: translateX(4px);
}

.hero-trust-badges {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.6;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.trust-icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

/* =====================
   BUTTONS - DESIGN MODERNE STARTUP
   ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6d28d9 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--background-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(79, 70, 229, 0.3);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-small {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* =====================
   SECTIONS - DESIGN MODERNE
   ===================== */

.section {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-alt {
    background: var(--background-light);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =====================
   TRUST STATS BAR (Legacy)
   ===================== */

.trust-stats-bar {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-light);
}

/* =====================
   STATS BAR MODERN
   ===================== */

.stats-bar-modern {
    background: var(--gradient-dark);
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

.stat-card-modern {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.stat-card-modern:last-child {
    border-right: none;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stat-icon-modern {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.stat-number-modern {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.375rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label-modern {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =====================
   FEATURE WITH IMAGE SECTIONS
   ===================== */

.feature-with-image {
    padding: 5rem 0;
    background: var(--background);
}

.feature-with-image.alt {
    background: var(--background-light);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-with-image.alt .feature-row {
    direction: ltr;
}

.feature-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-text .btn {
    margin-top: 1rem;
}

.feature-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-placeholder span {
    font-size: 6rem;
    opacity: 0.9;
}

/* =====================
   BENEFITS SECTION
   ===================== */

.benefits-section {
    padding: 5rem 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* =====================
   TRUST SECTION
   ===================== */

.trust-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 1.25rem;
    opacity: 0.95;
}

.trust-text {
    max-width: 500px;
}

.trust-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */

.testimonials-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--accent-warm);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.features {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* =====================
   CATEGORIES
   ===================== */

.categories {
    padding: 5rem 0;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* =====================
   PARTNERS SECTION
   ===================== */

.partners-section {
    padding: 4rem 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.partner-placeholder {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover .partner-placeholder {
    opacity: 1;
    color: var(--primary-color);
}

/* =====================
   NEWSLETTER SECTION
   ===================== */

.newsletter-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.newsletter-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
}

.newsletter-benefits li {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* =====================
   CTA SECTION
   ===================== */

.cta {
    background: var(--gradient-primary);
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

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

/* =====================
   PAGE HEADER - DESIGN MODERNE STARTUP
   ===================== */

.page-header {
    background: var(--gradient-hero);
    color: white;
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(3rem, 8vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(79, 70, 229, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.7;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Page header avec description longue */
.page-header.has-description p {
    margin-top: 0.5rem;
}

/* =====================
   CONTENT SECTIONS
   ===================== */

.content-section {
    padding: 4rem 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* =====================
   TOOLS GRID - GRILLE PRINCIPALE
   ===================== */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}

/* Grille 3 colonnes pour écrans larges */
@media (min-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 colonnes pour tablettes */
@media (min-width: 768px) and (max-width: 1199px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 colonne pour mobile */
@media (max-width: 767px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* =====================
   API GRID TWO COLUMNS (Legacy)
   ===================== */

.api-grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.api-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.api-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.api-card.featured {
    border-color: var(--accent-warm);
    border-width: 3px;
}

.api-card.beta {
    border-color: var(--secondary-color);
    border-width: 2px;
}

.beta-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* =====================
   API GRID SINGLE COLUMN (New Design)
   ===================== */

.api-grid-single-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.api-card-full {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.api-card-full:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.api-card-full.featured-green {
    border-color: var(--success);
    border-width: 3px;
}

.api-card-full.beta-card {
    border-color: var(--secondary-color);
    border-width: 2px;
    opacity: 0.9;
}

.featured-badge-green {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--success);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 10;
}

.api-card-header {
    background: var(--background-light);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
}

.api-main-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.api-main-info h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 0;
}

.api-card-content {
    padding: 2.5rem;
}

.api-description-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.api-description-section p:last-child {
    margin-bottom: 0;
}

.api-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
}

.api-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.api-detail-item strong {
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

.api-detail-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.api-features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.features-column h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.625rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.features-list.negative li:before {
    content: "✗";
    color: #ef4444;
}

.features-list.negative li {
    color: var(--text-light);
}

/* =====================
   TOOL CARDS - DESIGN MODERNE STARTUP
   ===================== */

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card.featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid var(--accent-warm);
}

.tool-card.featured::before {
    background: var(--gradient-warm);
    opacity: 1;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gradient-warm);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.tool-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tool-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.tool-header h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tool-header h3 a:hover {
    color: var(--primary-color);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    width: fit-content;
}

.rating-stars {
    color: var(--accent-warm);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.rating-value {
    font-weight: 700;
    color: #92400e;
    font-size: 0.95rem;
}

.rating-count {
    color: #b45309;
    font-size: 0.85rem;
    font-weight: 500;
}

.tool-website {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tool-website:hover {
    text-decoration: underline;
}

.tool-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Description compacte dans les cards outils (250 caractères max affichés) */
.tool-card .tool-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.tool-tags,
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-tags .tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.tool-tags .tag:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateY(-2px);
}

/* Tags et cibles compacts dans les cards outils */
.tool-card .tool-tags,
.tool-card .tool-cibles {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.tool-card .tool-tags .tag,
.tool-card .tool-cibles .cible {
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 500;
}

.tool-card .tool-tags .tag:hover {
    transform: none;
}

.tool-cibles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tool-cibles .cible,
.cible {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #6b21a8;
    border: 1px solid #d8b4fe;
}

.tag-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.tag-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.tool-disadvantages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tool-pricing {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}

.tool-pricing strong {
    color: #166534;
    font-size: 1rem;
    font-weight: 700;
}

.tool-promo {
    margin-bottom: 1rem;
}

.tool-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tool-actions .btn {
    width: 100%;
    justify-content: center;
}

/* =====================
   FILTERS - DESIGN MODERNE
   ===================== */

.filters-section {
    background: var(--background-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 50;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-medium);
    box-shadow: var(--shadow-xs);
}

.filter-btn:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.filter-btn .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Filtres avec scroll horizontal — créateurs & outils */
.creators-filters .filters-scroll-wrapper,
.outils-filters .filters-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) rgba(79, 70, 229, 0.12);
    margin: 0 calc(-1 * clamp(1rem, 4vw, 2rem));
    padding: 0 clamp(1rem, 4vw, 2rem);
}
.creators-filters .filters-scroll-wrapper::-webkit-scrollbar,
.outils-filters .filters-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.creators-filters .filters-scroll-wrapper::-webkit-scrollbar-track,
.outils-filters .filters-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(79, 70, 229, 0.08);
    border-radius: 4px;
}
.creators-filters .filters-scroll-wrapper::-webkit-scrollbar-thumb,
.outils-filters .filters-scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}
.creators-filters .filters-scroll-wrapper::-webkit-scrollbar-thumb:hover,
.outils-filters .filters-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
}
.creators-filters .filters-row,
.outils-filters .filters-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    min-width: min-content;
}
.creators-filters .filter-btn,
.outils-filters .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: none;
}
.creators-filters .filter-btn:hover,
.outils-filters .filter-btn:hover {
    background: white;
    border-color: var(--border-color);
    color: var(--text-medium);
    transform: none;
    box-shadow: var(--shadow-xs);
}
.creators-filters .filter-btn.active:hover,
.outils-filters .filter-btn.active:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

/* =====================
   INFO SECTION
   ===================== */

.info-section {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================
   STATS GRID
   ===================== */

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

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* =====================
   USE CASES
   ===================== */

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

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.use-case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Use Cases Grid - 3 colonnes */
.use-cases-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.use-cases-grid-3col .use-case-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.use-cases-grid-3col .use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.use-cases-grid-3col .use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.use-cases-grid-3col .use-case-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .use-cases-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .use-cases-grid-3col {
        grid-template-columns: 1fr;
    }
}

/* =====================
   HIGHLIGHT SECTION
   ===================== */

.highlight-section {
    padding: 4rem 0;
}

.highlight-box {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.highlight-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* =====================
   SEO SECTIONS
   ===================== */

.seo-section {
    padding: 4rem 0;
    background: var(--background);
}

.seo-section.alt {
    background: var(--background-light);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.seo-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

.seo-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* =====================
   FAQ SECTION
   ===================== */

.faq-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question:before {
    content: "❓";
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* =====================
   SECTION HEADER MODERN
   ===================== */

.section-header-modern {
    margin-bottom: 4rem;
}

.section-header-modern.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-header-modern h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-header-modern h2 .thin {
    font-weight: 300;
    color: var(--text-light);
}

.section-header-modern p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* =====================
   VALUE PROPOSITION
   ===================== */

.value-proposition {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--background);
    position: relative;
}

.value-proposition::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.value-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-radius: var(--radius-lg);
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
    font-weight: 400;
}

/* =====================
   HOW IT WORKS
   ===================== */

.how-it-works {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
    font-weight: 400;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    display: flex;
    align-items: center;
}

/* =====================
   USE CASES SECTION
   ===================== */

.use-cases-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.use-cases-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.use-cases-section .section-header-modern h2 {
    color: white;
}

.use-cases-section .section-header-modern p {
    color: rgba(255, 255, 255, 0.6);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.use-case-card-modern {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.use-case-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.use-case-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case-card-modern h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.use-case-card-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--accent-light);
}

/* =====================
   POPULAR TOOLS
   ===================== */

.popular-tools {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--background);
    position: relative;
}

.popular-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.popular-tool-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.popular-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.15);
}

.tool-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-warm);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.popular-tool-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.popular-tool-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

.tool-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.tool-rating {
    color: var(--accent-warm);
    font-weight: 700;
    font-size: 0.9375rem;
}

.tool-category {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-cta {
    text-align: center;
}

/* =====================
   SOCIAL PROOF
   ===================== */

.social-proof-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.social-proof-content {
    max-width: 1100px;
    margin: 0 auto;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.social-proof-header h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.social-proof-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 400;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card-modern {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-card-modern:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: var(--shadow-md);
}

.testimonial-card-modern::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(79, 70, 229, 0.08);
    font-family: Georgia, serif;
    font-weight: 700;
}

.testimonial-stars {
    color: var(--accent-warm);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.testimonial-card-modern p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: normal;
    font-weight: 400;
}

.testimonial-author-modern {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.testimonial-author-modern strong {
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.testimonial-author-modern span {
    color: var(--primary-color);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* =====================
   CTA CARDS
   ===================== */

.cta-cards-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--background-light);
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Grille à une seule carte (ex: blog article) */
.cta-cards-grid.cta-cards-grid--single {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-large {
    padding: 3rem;
    border-radius: var(--radius-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-card-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-card-large.primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    color: white;
}

.cta-card-large.primary:hover {
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.4);
}

.cta-card-large.secondary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}

.cta-card-large.secondary:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.5);
}

.cta-card-content h3 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-card-content p {
    margin-bottom: 1.5rem;
    opacity: 0.75;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.9375rem;
}

.cta-card-icon {
    font-size: 4rem;
    opacity: 0.15;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =====================
   NEWSLETTER MODERN - DESIGN UNIFIÉ
   ===================== */

.newsletter-modern {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.newsletter-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    padding: 3rem 3.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 400px 300px at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.8;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.newsletter-content-modern {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.newsletter-content-modern h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.newsletter-content-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.newsletter-form-modern {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.newsletter-input-modern {
    width: 260px;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-modern:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.newsletter-form-modern .btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form-modern .btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

#newsletter-message {
    position: relative;
    z-index: 1;
}

#newsletter-message.success {
    color: #4ade80 !important;
}

#newsletter-message.error {
    color: #f87171 !important;
}

/* Newsletter Badge Variant */
.newsletter-box .newsletter-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    z-index: 2;
}

.newsletter-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0); }
}

/* Newsletter Sidebar Variant - Unified */
.newsletter-sidebar {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.newsletter-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 200px 150px at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-sidebar h4 {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-sidebar p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.sidebar-newsletter-form {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.sidebar-newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.sidebar-newsletter-form .btn {
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form .btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    transform: translateY(-1px);
}

/* =====================
   ABOUT PAGE STYLES
   ===================== */

.about-mission {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text strong {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.about-image .image-placeholder {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.about-image .image-placeholder span {
    font-size: 6rem;
}

.about-services {
    padding: 5rem 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-radius: var(--radius-lg);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.9375rem;
}

.about-values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.value-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-stats {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.stat-box {
    text-align: center;
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box:last-child {
    border-right: none;
}

.stat-big {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label-big {
    font-size: 0.9375rem;
    opacity: 0.5;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8125rem;
}

.about-team {
    padding: 5rem 0;
    background: var(--background-light);
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-description p:last-child {
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.team-member p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member img {
        width: 140px;
        height: 140px;
    }
}

/* =====================
   FOOTER - DESIGN MODERNE
   ===================== */

.footer {
    background: #0a0a0f;
    color: white;
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: -0.01em;
}

.footer-brand h4 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li a:hover::before {
    width: 12px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.125rem;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* =====================
   RESPONSIVE DESIGN - TABLETTE ET MOBILE
   ===================== */

/* Large tablets et desktop small (max 1024px) */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .values-grid,
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablettes (max 768px) */
@media (max-width: 768px) {
    /* Header mobile : supprimer backdrop-filter pour que position: fixed fonctionne sur .nav-menu */
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }

    /* Navigation mobile */
    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: var(--z-fixed);
    }

    .nav-toggle:checked ~ .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        padding: 1rem 1.25rem;
        border-radius: var(--radius);
        font-size: 1rem;
        justify-content: center;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    }

    /* Hero responsive */
    .hero-buttons,
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn,
    .hero-buttons-modern .btn,
    .cta-content .btn {
        width: 100%;
        max-width: 320px;
    }

    .btn-large {
        padding: 0.875rem 1.75rem;
    }
    
    /* Stats */
    .stats-row,
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    /* Grids */
    .features-grid,
    .categories-grid,
    .tools-grid,
    .api-grid-two-columns {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .footer-section ul li a::before {
        display: none;
    }

    .footer-social {
        justify-content: center;
    }

    /* Filters : scroll horizontal dès 768px */
    .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }
    .filters::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Cards */
    .highlight-box {
        padding: 2rem;
    }
    
    .image-placeholder span {
        font-size: 4rem;
    }
    
    /* Trust section */
    .trust-content {
        gap: 2rem;
    }

    .trust-number {
        font-size: 3rem;
    }

    .trust-label {
        font-size: 1rem;
    }

    .trust-text p {
        font-size: 1rem;
    }

    /* SEO sections responsive */
    .seo-content h2 {
        font-size: 1.5rem;
    }

    .seo-content p {
        font-size: 1rem;
    }

    /* Stats bar responsive */
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Partners responsive */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Newsletter responsive */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .newsletter-form form {
        flex-direction: column;
    }

    .newsletter-text h2 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    /* API cards full responsive */
    .api-card-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .api-main-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .api-main-info h3 {
        font-size: 1.5rem;
    }

    .api-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .api-features-section {
        grid-template-columns: 1fr;
    }

    .api-card-content {
        padding: 1.5rem;
    }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    /* Base */
    .container {
        padding: 0 1rem;
    }

    .logo .logo-text,
    .logo h1 {
        font-size: 1.375rem;
    }

    /* Hero */
    .hero {
        padding: 2.5rem 0;
    }

    .hero-modern {
        min-height: auto;
        padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-trust-badges {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .trust-badge-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
    }

    /* Value cards */
    .value-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Cards */
    .feature-card,
    .category-card {
        padding: 1.25rem;
    }

    .tool-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .tool-card::before {
        height: 3px;
    }
    
    .tool-header h3 {
        font-size: 1.125rem;
    }
    
    .rating {
        padding: 0.4rem 0.65rem;
    }
    
    .rating-stars {
        font-size: 0.85rem;
    }
    
    .rating-value,
    .rating-count {
        font-size: 0.8rem;
    }
    
    .tool-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .tool-tags,
    .tool-cibles {
        gap: 0.375rem;
        margin-bottom: 1rem;
    }
    
    .tag,
    .cible {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .tool-pricing {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .tool-pricing strong {
        font-size: 0.9rem;
    }
    
    .featured-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Filters */
    .filters {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Stats */
    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card-modern {
        padding: 1.5rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-number-modern {
        font-size: 2rem;
    }

    .stat-label-modern {
        font-size: 0.75rem;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Newsletter */
    .newsletter-content {
        padding: 1.5rem;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        border-radius: 16px;
    }

    .newsletter-content-modern h3 {
        font-size: 1.25rem;
    }

    .newsletter-content-modern p {
        font-size: 0.875rem;
    }

    .newsletter-form-modern {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-input-modern {
        width: 100%;
        min-width: auto;
    }

    .newsletter-form-modern .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .newsletter-box .newsletter-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 0.5rem;
    }

    /* API Cards */
    .api-details-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .api-features-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .api-card-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .api-main-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .api-main-info h3 {
        font-size: 1.25rem;
    }

    .featured-badge-green {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-arrow {
        display: none;
    }
    
    .step-card {
        padding: 1.5rem;
    }

    /* Use cases */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    /* Popular tools */
    .popular-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* CTA cards */
    .cta-cards-grid {
        grid-template-columns: 1fr;
    }

    .cta-card-large {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    /* About page */
    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .values-grid,
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-big {
        font-size: 2.5rem;
    }
}

/* =====================
   ANIMATIONS & TRANSITIONS
   ===================== */

/* Animations principales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

/* Animation pour les cards au scroll - désactivé par défaut, activé via JS */
.feature-card,
.category-card,
.tool-card,
.info-card {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Délais pour les cartes en cascade */
.tool-card:nth-child(1) { animation-delay: 0s; }
.tool-card:nth-child(2) { animation-delay: 0.05s; }
.tool-card:nth-child(3) { animation-delay: 0.1s; }
.tool-card:nth-child(4) { animation-delay: 0.15s; }
.tool-card:nth-child(5) { animation-delay: 0.2s; }
.tool-card:nth-child(6) { animation-delay: 0.25s; }

/* Hover animations - réduction pour mobile */
@media (hover: hover) {
    .tool-card:hover {
        transform: translateY(-8px);
    }
    
    .btn:hover {
        transform: translateY(-2px);
    }
    
    .filter-btn:hover {
        transform: translateY(-2px);
    }
}

/* Suppression des animations complexes sur mobile pour les performances */
@media (max-width: 768px) {
    .feature-card,
    .category-card,
    .tool-card,
    .info-card {
        animation: fadeIn 0.3s ease-out both;
    }
    
    .tool-card:nth-child(n) {
        animation-delay: 0s;
    }
}

/* Préférence pour les mouvements réduits */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =====================
   OUTILS IMMO PAGE STYLES
   ===================== */

.category-section {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    scroll-margin-top: 100px;
}

.category-section.hidden {
    display: none !important;
}

.category-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.category-title .emoji {
    font-size: 1.25em;
}

.category-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--background-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-left: auto;
}

.tool-card.hidden {
    display: none !important;
}

.tool-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.tool-categories .category-tag {
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    color: #4338ca;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.tool-website {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.tool-website:hover {
    text-decoration: underline;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header .category-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================
   BLOG STYLES
   ===================== */

.blog-header {
    padding: 5rem 0 4rem;
}

.blog-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-header-content .section-tag {
    margin-bottom: 1.5rem;
}

.blog-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-featured {
    padding: 4rem 0;
    background: var(--background-light);
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 320px;
}

.blog-card.featured > * {
    min-width: 0; /* Évite overflow du grid */
}

.blog-card-image {
    position: relative;
    background: var(--gradient-primary);
    min-height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card.featured .blog-card-image {
    min-height: 280px;
    min-width: 280px;
}

.blog-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 2;
}

.blog-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder span {
    font-size: 4rem;
    opacity: 0.5;
}

.blog-image-placeholder.small span {
    font-size: 3rem;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card.featured .blog-card-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card.featured .blog-card-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-card.featured .blog-card-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.blog-category {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.reading-time {
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-list {
    padding: 5rem 0;
}

.blog-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-grid .blog-card {
    flex-direction: column;
}

.blog-grid .blog-card .blog-card-image {
    min-height: 160px;
}

/* =====================
   ARTICLE STYLES
   ===================== */

.blog-article {
    background: white;
}

.article-header {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0 4rem;
}

.article-header .breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active span {
    color: white;
}

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

.article-meta-top {
    margin-bottom: 1.5rem;
}

.article-meta-top .blog-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.article-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.article-content {
    padding: 4rem 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.article-body {
    max-width: 100%;
}

.article-body .intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-summary {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.article-summary h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-summary ul {
    margin: 0;
    padding-left: 1.25rem;
}

.article-summary li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.article-body h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.article-body h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.article-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.article-body a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-faq {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.article-faq h2 {
    margin-top: 0;
}

.article-faq .faq-grid {
    margin-top: 1.5rem;
}

.article-faq .faq-item {
    margin-bottom: 1rem;
}

.article-faq .faq-question {
    font-size: 1.125rem;
}

.article-faq .faq-question:before {
    content: none;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.related-articles li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-articles a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    display: block;
    transition: var(--transition);
}

.related-articles a:hover {
    color: var(--primary-color);
}

.newsletter-sidebar {
    background: var(--gradient-primary);
    color: white;
}

.newsletter-sidebar h4,
.newsletter-sidebar p {
    color: white;
}

.sidebar-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.sidebar-newsletter-form input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
}

.sidebar-newsletter-form .btn {
    padding: 0.625rem 1rem;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .blog-featured-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-card.featured .blog-card-image {
        min-width: 0;
        min-height: 220px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-content .container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-header-content h1 {
        font-size: 2.25rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-pagination {
        gap: 0.25rem;
    }

    .blog-pagination a,
    .blog-pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

/* Blog - Images dans les cards */
.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog - Image bannière article */
.article-banner {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 420px;
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog - Tags cliquables */
.blog-tag {
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 0.375rem;
    margin-bottom: 0.375rem;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: white;
}

.article-header .blog-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.article-header .blog-tag:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Blog - Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.blog-pagination a {
    color: var(--text-medium);
    background: var(--background-light);
}

.blog-pagination a:hover {
    background: var(--primary-color);
    color: white;
}

.blog-pagination .current {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

/* Blog - CTA Découvrir les outils */
.blog-cta-tools {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.blog-cta-tools h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-cta-tools p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Blog - Outil lié dans article */
.article-outil-lie {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.article-outil-lie h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.outils-lies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.outils-lies-grid .outil-lie-card {
    margin: 0;
}

.outil-lie-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
}

.outil-lie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.outil-lie-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.outil-lie-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.outil-lie-logo span {
    font-size: 2rem;
}

.outil-lie-info {
    flex: 1;
    min-width: 0;
}

.outil-lie-info h3,
.outil-lie-info strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.outil-lie-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.outil-lie-arrow,
.outil-lie-card .link-arrow {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.outil-lie-card:hover .outil-lie-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .article-banner {
        max-height: 250px;
    }

    .outil-lie-card {
        flex-direction: column;
        text-align: center;
    }

    .blog-cta-tools {
        padding: 3rem 1rem;
    }

    .blog-cta-tools h3 {
        font-size: 1.5rem;
    }
}

/* =====================
   PAGES SECTEURS
   ===================== */

/* Fil d'Ariane dans le header - Design amélioré pages secteurs */
.page-header .breadcrumb {
    margin-bottom: 1.5rem;
}

.page-header-secteur .breadcrumb-wrapper {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.page-header-secteur .breadcrumb-list {
    padding: 0.5rem 1rem 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header-secteur .secteur-hero-content {
    text-align: center;
}

.page-header-secteur .secteur-hero-desc {
    margin-bottom: 1.5rem !important;
}

.page-header-secteur .secteur-stats {
    display: inline-flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-header-secteur .secteur-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.page-header-secteur .secteur-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.page-header-secteur .secteur-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.page-header .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0.75rem 1rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.page-header .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.page-header .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.page-header .breadcrumb-item.active span {
    color: white;
    font-weight: 600;
}

.page-header .breadcrumb-separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Section Outils du secteur - Design Moderne */
.secteur-outils {
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
    padding: 5rem 0;
    position: relative;
}

.secteur-outils::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.secteur-outils h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-intro {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.75;
}

/* Grille d'outils - Pages Secteurs */
.tools-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.tools-grid-small .tool-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.tools-grid-small .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tools-grid-small .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.tools-grid-small .tool-card:hover::before {
    opacity: 1;
}

.tools-grid-small .tool-card.featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid var(--accent-warm);
}

.tools-grid-small .tool-card.featured::before {
    background: var(--gradient-warm);
    opacity: 1;
}

.tools-grid-small .featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gradient-warm);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.tools-grid-small .tool-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tools-grid-small .tool-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.tools-grid-small .tool-header h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tools-grid-small .tool-header h3 a:hover {
    color: var(--primary-color);
}

.tools-grid-small .tool-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    flex-grow: 1;
}

.tools-grid-small .tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tools-grid-small .tool-tags .tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border: 1px solid #bfdbfe;
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tools-grid-small .tool-tags .tag:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateY(-2px);
}

.tools-grid-small .tool-pricing {
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    border: 1px solid #bbf7d0;
    margin-bottom: 1.25rem;
}

.tools-grid-small .tool-pricing strong {
    color: #166534;
    font-size: 0.95rem;
    font-weight: 700;
}

.tools-grid-small .tool-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tools-grid-small .tool-actions .btn {
    width: 100%;
    justify-content: center;
}

.tools-grid-small .rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    width: fit-content;
}

.tools-grid-small .rating-stars {
    color: var(--accent-warm);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tools-grid-small .rating-value {
    font-weight: 700;
    color: #92400e;
    font-size: 0.9rem;
}

.tools-grid-small .rating-count {
    color: #b45309;
    font-size: 0.8rem;
    font-weight: 500;
}

.see-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.see-more .btn {
    padding: 1rem 2.5rem;
}

.no-tools {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Section contenu SEO - Design Moderne */
.seo-section {
    padding: 5rem 0;
    background: white;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: none;
    position: relative;
}

.seo-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.seo-content p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.seo-content p strong {
    color: var(--text-dark);
    font-weight: 600;
    background: linear-gradient(180deg, transparent 60%, rgba(79, 70, 229, 0.15) 60%);
}

.seo-content ul,
.seo-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
    color: var(--text-light);
}

.seo-content li {
    margin-bottom: 1rem;
    line-height: 1.75;
    font-size: 1.05rem;
    padding-left: 2rem;
    position: relative;
}

.seo-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.seo-content li strong {
    color: var(--text-dark);
}

/* Section FAQ - Design Moderne */
.faq-section-wrapper {
    background: linear-gradient(180deg, var(--background-light) 0%, white 100%);
    padding: 5rem 0;
}

.faq-section-wrapper > .container {
    max-width: 800px;
}

.faq-section-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: center;
    position: relative;
}

.faq-section-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-section-wrapper .faq-section {
    background: transparent;
    padding: 0;
}

.faq-section-wrapper .faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.faq-section-wrapper .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-section-wrapper .faq-item:hover {
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.12);
    transform: translateX(4px);
}

.faq-section-wrapper .faq-item:hover::before {
    opacity: 1;
}

.faq-section-wrapper .faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-left: 0.5rem;
}

.faq-section-wrapper .faq-answer {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    padding-left: 0.5rem;
}

.faq-section-wrapper .faq-answer p {
    margin: 0;
}

/* Responsive Pages Secteurs - Desktop */
@media (max-width: 1024px) {
    .tools-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Pages Secteurs - Tablette */
@media (max-width: 768px) {
    .tools-grid-small {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .secteur-outils,
    .seo-section {
        padding: 3rem 0;
    }
    
    .faq-section-wrapper {
        padding: 3rem 0;
    }
    
    .secteur-outils h2 {
        font-size: 1.5rem;
    }
    
    .faq-section-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .faq-section-wrapper h2::after {
        width: 50px;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .seo-content {
        padding: 0 0.5rem;
    }
    
    .seo-content h2 {
        font-size: 1.375rem;
        margin-top: 2.5rem;
    }
    
    .seo-content h2::after {
        width: 45px;
        height: 3px;
    }
    
    .seo-content h3 {
        font-size: 1.15rem;
        margin-top: 2rem;
        padding-left: 0.75rem;
    }
    
    .seo-content p {
        font-size: 0.9375rem;
        text-align: left;
        line-height: 1.8;
    }
    
    .seo-content li {
        font-size: 0.9375rem;
        padding-left: 1.5rem;
    }
    
    /* Breadcrumb mobile */
    .page-header .breadcrumb {
        margin-bottom: 1.25rem;
    }
    
    .page-header .breadcrumb-list {
        padding: 0.5rem 0.75rem;
        gap: 0;
    }
    
    .page-header .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .page-header .breadcrumb-separator {
        margin: 0 0.5rem;
        font-size: 0.7rem;
    }
    
    /* FAQ mobile */
    .faq-section-wrapper .faq-item {
        padding: 1.25rem 1.25rem;
    }
    
    .faq-section-wrapper .faq-question {
        font-size: 1.05rem;
    }
    
    .faq-section-wrapper .faq-answer {
        font-size: 0.9375rem;
    }
    
    /* Tool cards mobile secteur */
    .tools-grid-small .tool-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .tools-grid-small .tool-header h3 {
        font-size: 1.1rem;
    }
    
    .tools-grid-small .tool-description {
        font-size: 0.9rem;
    }
    
    .tools-grid-small .rating {
        padding: 0.4rem 0.65rem;
    }
    
    .tools-grid-small .rating-stars {
        font-size: 0.85rem;
    }
    
    .tools-grid-small .rating-value,
    .tools-grid-small .rating-count {
        font-size: 0.8rem;
    }
    
    .tools-grid-small .tool-tags .tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
    
    .tools-grid-small .tool-pricing {
        padding: 0.75rem;
    }
    
    .tools-grid-small .tool-pricing strong {
        font-size: 0.85rem;
    }
    
    .tools-grid-small .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    /* See more button */
    .see-more {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .see-more .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}

/* Responsive Pages Secteurs - Mobile small */
@media (max-width: 480px) {
    .secteur-outils,
    .seo-section,
    .faq-section-wrapper {
        padding: 2.5rem 0;
    }
    
    .secteur-outils h2,
    .faq-section-wrapper h2 {
        font-size: 1.35rem;
    }
    
    .section-intro {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .seo-content h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .seo-content h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .seo-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .seo-content li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    /* Breadcrumb very small mobile */
    .page-header .breadcrumb-list {
        padding: 0.4rem 0.6rem;
        flex-wrap: wrap;
    }
    
    .page-header .breadcrumb-item {
        font-size: 0.75rem;
    }
    
    .page-header .breadcrumb-separator {
        margin: 0 0.35rem;
    }
    
    /* FAQ very small mobile */
    .faq-section-wrapper .faq-item {
        padding: 1rem 1rem;
        border-radius: 10px;
    }
    
    .faq-section-wrapper .faq-question {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-section-wrapper .faq-answer {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    /* Tool cards very small mobile */
    .tools-grid-small .tool-card {
        padding: 1rem;
    }
    
    .tools-grid-small .tool-card:hover {
        transform: translateY(-4px);
    }
    
    .tools-grid-small .tool-header h3 {
        font-size: 1rem;
    }
    
    .tools-grid-small .tool-description {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 0.875rem;
    }
    
    .tools-grid-small .tool-tags {
        gap: 0.35rem;
        margin-bottom: 0.875rem;
    }
    
    .tools-grid-small .tool-tags .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.55rem;
    }
    
    .tools-grid-small .tool-pricing {
        padding: 0.625rem;
        margin-bottom: 0.875rem;
    }
    
    .tools-grid-small .tool-actions .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* See more button mobile */
    .see-more .btn {
        width: 100%;
        max-width: 280px;
    }
}
