/* ==========================================
   CIVICDASH - OBJECTIF 2027
   Modern Landing Page Styles
   ========================================== */

/* === CSS Variables === */
:root {
    /* Colors - Tricolore inspired with modern twist */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    --accent-red: #ef4444;
    --accent-amber: #f59e0b;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    --accent-indigo: #6366f1;
    
    /* Neutrals - Slate palette */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-tricolore: linear-gradient(135deg, #1e40af 0%, #8b5cf6 50%, #ef4444 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.3), transparent);
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px 24px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-900);
    background: var(--slate-50);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
.text-gradient {
    background: var(--gradient-tricolore);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--slate-300);
    color: var(--slate-700);
}

.btn-outline:hover {
    background: var(--slate-100);
    border-color: var(--slate-400);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-600);
    padding: 10px;
    border-radius: var(--radius-lg);
}

.btn-ghost:hover {
    background: var(--slate-100);
    color: var(--primary-600);
}

.btn-white {
    background: white;
    color: var(--primary-700);
}

.btn-white:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-warning {
    background: var(--slate-800);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-warning:hover {
    background: var(--slate-700);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-600);
    background: var(--primary-50);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--slate-50) 0%, white 50%, var(--slate-50) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-400);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -100px;
    left: -100px;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-red);
    top: 50%;
    right: 20%;
    opacity: 0.2;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.hero-title .title-block {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--slate-800);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 20px;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--slate-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.2s both;
}

.hero-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--slate-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--slate-800);
    border-bottom: 1px solid var(--slate-700);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    padding: 8px 16px;
    background: var(--slate-700);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--slate-400);
    font-family: monospace;
}

.browser-content {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 100%);
}

.placeholder-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
}

.placeholder-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
    animation: float 4s ease-in-out infinite;
}

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

.placeholder-text {
    text-align: center;
}

.placeholder-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.placeholder-subtitle {
    display: block;
    font-size: 14px;
    color: var(--slate-400);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.floating-icon {
    font-size: 20px;
}

.floating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 12px;
    font-weight: 500;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--slate-300);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--slate-400);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* === Warning Banner === */
.warning-banner {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    border-top: 1px solid #f59e0b;
    border-bottom: 1px solid #f59e0b;
    padding: 20px;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-icon-wrapper {
    flex-shrink: 0;
}

.warning-icon {
    font-size: 32px;
}

.warning-text {
    flex: 1;
}

.warning-text strong {
    display: block;
    font-size: 16px;
    color: #92400e;
    margin-bottom: 4px;
}

.warning-text p {
    font-size: 14px;
    color: #78350f;
    margin: 0;
}

/* === Section Styles === */
section {
    padding: var(--section-padding);
}

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

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-label-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* === Features Section === */
.features {
    background: white;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block-reverse {
    direction: rtl;
}

.feature-block-reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 540px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.feature-badge-purple { background: #f3e8ff; color: #7c3aed; }
.feature-badge-amber { background: #fef3c7; color: #d97706; }
.feature-badge-green { background: #d1fae5; color: #059669; }
.feature-badge-red { background: #fee2e2; color: #dc2626; }
.feature-badge-indigo { background: #e0e7ff; color: #4f46e5; }

.feature-emoji {
    font-size: 16px;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 17px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--slate-700);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Screenshot Placeholder */
.feature-visual {
    position: relative;
}

.screenshot-placeholder {
    position: relative;
    aspect-ratio: 16/11;
    background: linear-gradient(145deg, var(--slate-100) 0%, var(--slate-200) 100%);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--slate-300);
    overflow: hidden;
    transition: var(--transition-base);
}

.screenshot-placeholder:hover {
    border-color: var(--primary-400);
    background: linear-gradient(145deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.placeholder-icon {
    font-size: 56px;
    opacity: 0.6;
}

.placeholder-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-600);
}

.placeholder-sublabel {
    font-size: 14px;
    color: var(--slate-500);
}

.placeholder-corners {
    position: absolute;
    inset: 12px;
    pointer-events: none;
}

.placeholder-corners span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--slate-400);
    border-style: solid;
}

.placeholder-corners span:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.placeholder-corners span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.placeholder-corners span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.placeholder-corners span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* === How It Works === */
.how-it-works {
    background: var(--slate-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.step-card {
    flex: 1;
    max-width: 340px;
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

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

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.step-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    color: var(--slate-300);
    flex-shrink: 0;
    margin-top: 80px;
}

/* === FranceConnect+ Section === */
.franceconnect-section {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.franceconnect-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 70% 20%, rgba(59, 130, 246, 0.15), transparent),
        radial-gradient(ellipse 40% 30% at 30% 80%, rgba(139, 92, 246, 0.1), transparent);
    pointer-events: none;
}

.fc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.fc-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fc-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-intro {
    font-size: 18px;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 40px;
}

.fc-intro strong {
    color: white;
}

.fc-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.fc-benefit {
    display: flex;
    gap: 16px;
}

.fc-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.fc-icon-green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.fc-icon-purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.fc-icon-amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.fc-icon-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.fc-benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.fc-benefit-content p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
}

.fc-benefit-content strong {
    color: white;
}

.fc-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.fc-note-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.fc-note p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
    margin: 0;
}

/* FC Process Card */
.fc-visual {
    position: relative;
}

.fc-process-card {
    background: linear-gradient(145deg, rgba(30, 64, 175, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.fc-process-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.fc-badge-official {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: white;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
}

.fc-badge-icon {
    width: 28px;
    height: 28px;
    background: #034EA2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: white;
}

.fc-badge-official > span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-600);
}

.fc-process-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 32px;
}

.fc-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.fc-step-check {
    background: var(--accent-green);
}

.fc-step-check svg {
    width: 20px;
    height: 20px;
}

.fc-step-content {
    display: flex;
    flex-direction: column;
}

.fc-step-content strong {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.fc-step-content span {
    font-size: 13px;
    color: var(--slate-400);
}

.fc-step-arrow {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    color: var(--primary-400);
}

.fc-step-arrow svg {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
}

.fc-step-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.fc-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
}

.fc-result-icon {
    font-size: 32px;
}

.fc-result-text {
    display: flex;
    flex-direction: column;
}

.fc-result-text strong {
    font-size: 18px;
    color: #34d399;
}

.fc-result-text span {
    font-size: 14px;
    color: var(--slate-400);
}

/* === Association Section === */
.association-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.association-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.association-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 24px;
}

.association-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.value-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.association-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === Roadmap === */
.roadmap {
    background: var(--slate-50);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--slate-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: white;
    border: 2px solid var(--slate-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
}

.timeline-item-done .timeline-marker {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.timeline-item-done .timeline-marker svg {
    width: 16px;
    height: 16px;
}

.timeline-item-current .timeline-marker {
    border-color: var(--primary-500);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 6px 12px;
    background: var(--slate-100);
    color: var(--slate-600);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.timeline-item-done .timeline-tags span {
    background: #d1fae5;
    color: #059669;
}

.timeline-item-current .timeline-tags span {
    background: var(--primary-50);
    color: var(--primary-700);
}

/* === Final CTA === */
.final-cta {
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    color: var(--slate-600);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-note {
    font-size: 14px;
    color: var(--slate-500);
}

/* === Footer === */
.footer {
    background: var(--slate-900);
    color: white;
    padding: 80px 24px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--slate-400);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-association {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-800);
}

.footer-association h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 8px;
}

.footer-association > p {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 12px;
}

.footer-association strong {
    color: var(--primary-400);
}

.footer-association-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-400);
    transition: var(--transition-base);
}

.footer-association-link:hover {
    background: rgba(59, 130, 246, 0.2);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: var(--transition-base);
}

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

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: var(--slate-400);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--slate-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--slate-500);
}

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

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-card-1 {
        right: 0;
    }
    
    .floating-card-2 {
        left: 0;
    }
    
    .feature-block,
    .feature-block-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .feature-content {
        max-width: 100%;
    }
    
    .fc-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links.active,
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-xl);
        gap: 8px;
    }
    
    .nav-actions.active {
        top: auto;
        border-top: 1px solid var(--slate-200);
    }
    
    .nav-links.active a {
        padding: 16px;
        width: 100%;
        text-align: center;
    }
    
    .nav-actions.active .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .fc-process-card {
        padding: 28px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-lg, .btn-xl {
        width: 100%;
    }
    
    .floating-card {
        display: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .association-cta {
        flex-direction: column;
    }
}

/* === Print === */
@media print {
    .navbar,
    .scroll-indicator,
    .warning-banner {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ==========================================
   ÉLECTIONS MUNICIPALES 2026
   ========================================== */

.elections-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, var(--slate-50) 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.elections-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, #059669, transparent);
}

.elections-section .section-title {
    color: var(--slate-900);
}

.elections-section .section-subtitle {
    color: var(--slate-600);
}

.elections-section .section-label {
    background: #d1fae5;
    color: #059669;
}

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

@media (max-width: 1024px) {
    .election-grid {
        grid-template-columns: 1fr;
    }
}

.election-card {
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.election-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

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

.election-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.election-card p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.election-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-event {
    background: var(--slate-50);
    border-radius: 0.75rem;
    padding: 1rem;
    border-left: 3px solid #a7f3d0;
    transition: all 0.2s ease;
}

.timeline-event:hover {
    background: #ecfdf5;
    border-left-color: #10b981;
}

.timeline-event-main {
    background: #ecfdf5;
    border-left-color: #10b981;
}

.event-date {
    font-weight: 700;
    color: #059669;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.event-desc {
    color: var(--slate-700);
    font-size: 0.95rem;
}

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

.election-features li {
    padding: 0.5rem 0;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.election-card-candidates {
    background: white;
    border-color: #e0e7ff;
}

.election-card-candidates:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.candidate-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.candidate-cta .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    justify-content: center;
}

.verification-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, #eff6ff 0%, #ecfdf5 100%);
    border: 1px solid #bfdbfe;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
}

.verification-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.verification-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.verification-text h4 {
    color: var(--slate-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verification-text p {
    color: var(--slate-600);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .verification-content {
        flex-direction: column;
        text-align: center;
    }
}

/* === Comprendre la Democratie Section === */
.comprendre-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.comprendre-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(59, 130, 246, 0.15), transparent);
    pointer-events: none;
}

.comprendre-section .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.comprendre-section .section-title {
    color: white;
}

.comprendre-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.comprendre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.comprendre-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
}

.comprendre-content p strong {
    color: white;
}

.comprendre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.comprendre-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.comprendre-feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.comprendre-highlight {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.comprendre-highlight h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comprendre-pages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comprendre-page {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
    color: white;
    text-decoration: none;
}

.comprendre-page:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.comprendre-page-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.comprendre-page-text {
    display: flex;
    flex-direction: column;
}

.comprendre-page-text strong {
    font-size: 15px;
    font-weight: 600;
}

.comprendre-page-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .comprendre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .comprendre-features {
        grid-template-columns: 1fr;
    }
}

/* === Paliers Section === */
.paliers-section-main {
    background: linear-gradient(180deg, var(--slate-900) 0%, #0f1629 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.paliers-section-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59, 130, 246, 0.1), transparent);
    pointer-events: none;
}

.paliers-section-main .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.paliers-section-main .section-title {
    color: white;
}

.paliers-section-main .section-subtitle {
    color: var(--slate-400);
}

.paliers-current {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
}

.paliers-current-count {
    font-size: 64px;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.paliers-current-label {
    font-size: 16px;
    color: var(--slate-400);
    margin-bottom: 20px;
}

.paliers-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.paliers-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 6px;
    transition: width 1s ease-out;
}

.paliers-progress-text {
    font-size: 14px;
    color: var(--slate-400);
}

.paliers-progress-text strong {
    color: #60a5fa;
}

.paliers-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.palier-card-main {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    text-align: center;
}

.palier-card-main:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.palier-card-main.next-goal {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.08);
}

.palier-count-main {
    font-size: 48px;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.palier-card-main.next-goal .palier-count-main {
    color: #3b82f6;
}

.palier-label-main {
    display: block;
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 16px;
}

.palier-card-main h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.palier-card-main p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.palier-features-main {
    list-style: none;
    padding: 0;
    text-align: left;
}

.palier-features-main li {
    font-size: 13px;
    color: var(--slate-400);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.palier-features-main li::before {
    content: '→';
    color: #60a5fa;
    flex-shrink: 0;
}

.paliers-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
}

.paliers-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.paliers-cta p {
    font-size: 16px;
    color: var(--slate-400);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .paliers-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .paliers-grid-main {
        grid-template-columns: 1fr;
    }
}
