/* ================================
   GOOGLE FONTS - MONTSERRAT
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');

/* ================================
   FONTS NOHEMI
   ================================ */
@font-face {
    font-family: 'Nohemi';
    src: url('fonts/Nohemi-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nohemi';
    src: url('fonts/Nohemi-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nohemi';
    src: url('fonts/Nohemi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nohemi';
    src: url('fonts/Nohemi-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nohemi';
    src: url('fonts/Nohemi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nohemi';
    src: url('fonts/Nohemi-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ================================
   RESET & BASE
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

/* Amélioration du touch sur mobile */
a, button, .feature-card, .news-item, .news-featured {
    -webkit-tap-highlight-color: rgba(72, 72, 219, 0.1);
}

/* Prévenir le zoom sur les inputs iOS */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}



/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    color: #4848DB;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    transform: translateY(-2px);
}


nav {
    display: flex;
    gap: 32px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

nav a:hover {
    color: #4848DB;
}

/* Contact Button */
.contact-btn {
    background: #4848DB;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.contact-btn:hover {
    background: #5A5AE8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 72, 219, 0.4);
}

/* Menu mobile hamburger (caché par défaut sur desktop) */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* ================================
   FLOATING NAVIGATION (LIQUID GLASS)
   ================================ */
.floating-nav {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 16px 32px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.floating-nav.visible {
    top: 20px;
    opacity: 1;
    visibility: visible;
}

.floating-nav nav {
    display: flex;
    gap: 32px;
    align-items: center;
    position: relative;
    left: auto;
    transform: none;
    height: 100%;
}

.floating-nav nav a {
    color: rgba(26, 26, 26, 0.8);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.floating-nav nav a:hover {
    color: #4848DB;
}

/* Styles pour le menu sur le hero (texte blanc) */
.floating-nav.on-hero nav a {
    color: rgba(255, 255, 255, 0.9);
}

.floating-nav.on-hero nav a:hover {
    color: #4848DB;
}

.floating-nav.on-hero .dropdown-trigger {
    color: rgba(255, 255, 255, 0.9);
}

.floating-nav.on-hero .dropdown-trigger:hover {
    color: #4848DB;
}



/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 90vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    background: url('img/hero.webp') no-repeat center center;
    background-size: cover;
}

.hero-card {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
        line-height: 1.1;
    color: #ffffff;
    text-wrap: balance;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.5;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    max-width: 800px;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

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

.hero-cta .btn-primary {
    background: #4848DB;
    color: #ffffff;
    padding: 20px 32px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-cta .btn-primary:hover {
    background: #5A5AE8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 72, 219, 0.4);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 20px 32px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-cta .btn-secondary:hover {
    border-color: #4848DB;
    background: rgba(72, 72, 219, 0.15);
    color: #ffffff;
}

/* ================================
   FEATURES SECTION
   ================================ */
.features {
    padding: 120px 48px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.features-inner {
    max-width: 1240px;
    width: 100%;
}

.features-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c35;
    position: relative;
    padding-bottom: 16px;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4848DB 0%, #D100AA 100%);
    border-radius: 2px;
}

.features-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(0, 0, 0, 0.7);
}

.features-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(72, 72, 219, 0.08);
    border: 1px solid rgba(72, 72, 219, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(72, 72, 219, 0.15);
    border-color: rgba(72, 72, 219, 0.4);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.25) 0%, rgba(209, 0, 170, 0.2) 100%);
    transform: scale(1.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.15) 0%, rgba(209, 0, 170, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c35;
}

.feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(28, 28, 53, 0.7);
}

.feature-image {
    width: 400px;
    height: 100%;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.15) 0%, rgba(209, 0, 170, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ================================
   PARTNERS SECTION
    ================================ */
/* ================================
   PARTNERS SECTION
   ================================ */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f5f3ff 25%, #faf9ff 50%, #f3f4ff 75%, #f9fafb 100%);
    overflow: hidden;
}

.partners-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.partners-inner h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c35;
    text-align: center;
    margin-bottom: 16px;
}

.partners-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(28, 28, 53, 0.7);
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partners-track {
    display: flex;
    gap: 120px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-logos {
    display: flex;
    gap: 120px;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    flex-shrink: 0;
}

.partner-logo {
    height: 50px;
    width: 150px;
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ================================
   NEWS SECTION
   ================================ */
.news {
    padding: 100px 48px;
    background: #ffffff;
}

.news-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.news-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1c1c35;
}

.news-link {
    font-size: 15px;
    font-weight: 500;
    color: #4848DB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: #D100AA;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

.news-featured {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(72, 72, 219, 0.2);
    box-shadow: 0 16px 40px rgba(72, 72, 219, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(72, 72, 219, 0.15);
    border-color: rgba(72, 72, 219, 0.4);
}

.news-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f6fa;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-featured:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-category {
    font-size: 13px;
    font-weight: 600;
    color: #D100AA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-featured h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1c1c35;
    line-height: 1.3;
}

.news-featured p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(28, 28, 53, 0.7);
    line-height: 1.6;
}

.news-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(28, 28, 53, 0.5);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.news-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(72, 72, 219, 0.2);
    box-shadow: 0 16px 40px rgba(72, 72, 219, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    flex: 1;
    align-items: center;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(72, 72, 219, 0.15);
    border-color: rgba(72, 72, 219, 0.4);
}

.news-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f6fa;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.news-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c35;
    line-height: 1.4;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 100px 48px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4ff 50%, #faf5ff 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #4848DB;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c35;
}

.contact-title .highlight {
    color: #4848DB;
}

.contact-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(28, 28, 53, 0.7);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-link {
    text-decoration: none;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.contact-link:hover {
    transform: translateX(4px);
}

.contact-link:hover .contact-icon {
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.25) 0%, rgba(209, 0, 170, 0.2) 100%);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.15) 0%, rgba(209, 0, 170, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4848DB;
    flex-shrink: 0;
}

.contact-label {
    font-size: 13px;
    color: rgba(28, 28, 53, 0.6);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c35;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(72, 72, 219, 0.1);
    border: 1px solid rgba(72, 72, 219, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1c1c35;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(72, 72, 219, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Nohemi', sans-serif;
    background: #f8f9fa;
    color: #1c1c35;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4848DB;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(72, 72, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(28, 28, 53, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234848DB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-submit-btn {
    background: #4848DB;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nohemi', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background: #5A5AE8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 72, 219, 0.4);
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit-btn.loading {
    position: relative;
    pointer-events: none;
}

.form-submit-btn.success {
    background: #10b981;
}

.form-submit-btn.success:hover {
    background: #059669;
}

/* Loader ldrs */
.form-submit-btn l-orbit {
    display: inline-block;
}

/* Notification de succès */
.form-notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.form-notification.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.form-notification svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

.form-notification strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #065f46;
}

.form-notification p {
    font-size: 14px;
    margin: 0;
    color: rgba(6, 95, 70, 0.8);
    font-family: 'Montserrat', sans-serif;
}

/* ================================
   LEGAL PAGES
   ================================ */
.legal-page {
    padding: 120px 48px 80px;
    background: #ffffff;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(72, 72, 219, 0.1);
}

.legal-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #1c1c35;
    margin-bottom: 16px;
}

.legal-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(28, 28, 53, 0.6);
    font-weight: 500;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #4848DB;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c35;
    margin: 24px 0 16px;
}

.legal-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(28, 28, 53, 0.8);
    margin-bottom: 16px;
}

.legal-section p strong {
    color: #1c1c35;
    font-weight: 600;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-section ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(28, 28, 53, 0.8);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #4848DB;
    font-weight: bold;
    font-size: 20px;
}

.legal-section a {
    color: #4848DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #D100AA;
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(72, 72, 219, 0.1);
}

.legal-footer .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #4848DB;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-footer .btn-primary:hover {
    background: #5A5AE8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 72, 219, 0.4);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: linear-gradient(135deg, #1c1c35 0%, #2a2a4a 100%);
    color: #ffffff;
    padding: 80px 48px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    transform: translateY(-2px);
}

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #8B8BF5;
    margin-top: 8px;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 350px;
}

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

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #4848DB;
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #4848DB;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #4848DB;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 1024px) {
    .features {
        padding: 100px 32px;
    }

    .features-inner {
        padding: 48px 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-image {
        width: 100%;
        min-height: 360px;
        order: -1;
    }

    .features-left,
    .features-right {
        gap: 20px;
    }

    header {
        padding: 20px 32px;
    }
    
    .hero {
        padding: 40px 20px 30px;
        min-height: 85vh;
    }

    .news {
        padding: 80px 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 16px;
    }
    
    .logo {
        font-size: 18px;
        z-index: 1001;
        order: 0;
        grid-column: 2;
        justify-self: center;
    }

    .logo-img {
        height: 36px;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transform: none;
    }
    
    nav.active {
        left: 0;
    }
    
    nav a {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(72, 72, 219, 0.1);
    }
    
    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
        z-index: 1001;
        order: 1;
        grid-column: 3;
        white-space: nowrap;
    }
    
    /* Bouton hamburger */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
        order: -1;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: #4848DB;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }
    
    /* Overlay pour fermer le menu */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Navigation flottante mobile */
    .floating-nav {
        display: none !important;
    }
    
    .hero {
        padding: 40px 20px 30px;
        min-height: 85vh;
    }
    
    .hero-title {
        margin-bottom: 20px;
        font-size: clamp(32px, 10vw, 48px) !important;
    }
    
    .hero-subtitle {
        font-size: 15px !important;
        margin-bottom: 40px !important;
        padding: 0 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        max-width: 280px;
        min-width: 220px;
        text-align: center;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .discover-section {
        padding: 70px 24px;
    }

    .discover-wrapper {
        gap: 40px;
    }

    .discover-visual {
        width: 100%;
    }

    .discover-badge {
        top: 16px;
        right: 16px;
    }

    .badge-value {
        font-size: 28px;
    }

    .badge-label {
        letter-spacing: 0.18em;
    }

    .discover-copy {
        gap: 18px;
        padding-bottom: 0;
    }

    .discover-cards {
        position: static;
        width: 100%;
        margin-top: 32px;
        gap: 20px;
        justify-content: center;
    }

    .discover-card {
        flex: 1 1 260px;
        max-width: 340px;
        min-height: 220px;
    }

    .partners {
        padding: 60px 0;
    }

    .partners-inner {
        padding: 0 24px;
    }

    .partners-inner h2 {
        margin-bottom: 36px;
    }

    .partners-logos {
        gap: 80px;
    }
    
    .partner-logo {
        height: 50px;
        width: 120px;
    }

    .features {
        padding: 60px 20px;
    }

    .features-inner {
        padding: 32px 20px;
    }
    
    .features-header {
        padding: 0 10px;
    }
    
    .features-header h2 {
        font-size: clamp(28px, 8vw, 36px) !important;
        padding-bottom: 12px;
    }
    
    .features-header p {
        font-size: 15px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon img {
        width: 28px;
        height: 28px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }

    .feature-image {
        width: 100%;
        min-height: 280px;
        order: -1;
        border-radius: 20px;
    }

    .features-left,
    .features-right {
        gap: 16px;
    }

    .news {
        padding: 60px 24px;
    }

    .news-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-image {
        height: 240px;
    }

    .news-content {
        padding: 0 24px 24px;
    }

    .news-featured h3 {
        font-size: 22px;
    }

    .news-featured p {
        font-size: 14px;
    }

    .news-thumb {
        width: 80px;
        height: 80px;
    }

    .news-item {
        padding: 16px;
    }

    .news-item h4 {
        font-size: 15px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-title {
        font-size: clamp(28px, 8vw, 36px) !important;
    }
    
    .contact-description {
        font-size: 15px;
    }
    
    .contact-details {
        gap: 16px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-value {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero {
        padding: 30px 16px 20px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(28px, 9vw, 40px) !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        padding: 0 5px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        max-width: 260px;
        min-width: 200px;
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .features {
        padding: 50px 16px;
    }
    
    .features-inner {
        padding: 24px 16px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .partners {
        padding: 50px 0;
    }
    
    .partners-inner {
        padding: 0 16px;
    }
    
    .partners-logos {
        gap: 60px;
    }
    
    .partner-logo {
        height: 40px;
        width: 100px;
    }
    
    .news {
        padding: 50px 16px;
    }
    
    .news-header h2 {
        font-size: clamp(26px, 7vw, 32px) !important;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 0 20px 20px;
    }
    
    .news-featured h3 {
        font-size: 20px;
    }
    
    .news-item {
        padding: 12px;
        gap: 12px;
    }
    
    .news-thumb {
        width: 70px;
        height: 70px;
    }
    
    .contact-section {
        padding: 50px 16px;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .form-submit-btn {
        width: 100%;
        padding: 14px 24px;
    }

    .footer {
        padding: 50px 16px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 32px;
    }
    
    .footer-brand {
        gap: 12px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-logo-img {
        height: 45px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .legal-page {
        padding: 80px 16px 50px;
    }
}

/* Styles supplémentaires pour mobile */
@media (max-width: 390px) {
    .hero-title {
        font-size: 26px !important;
    }
    
    .features-header h2 {
        font-size: 24px !important;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .news-header h2 {
        font-size: 24px !important;
    }
    
    .contact-title {
        font-size: 24px !important;
    }
}

/* ================================
   MODAL PÔLES
   ================================ */
.pole-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.pole-modal.active {
    display: block;
}

.pole-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.pole-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(72, 72, 219, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pole-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pole-modal-close:hover {
    background: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.pole-modal-close svg {
    color: #1c1c35;
}

.pole-modal-body {
    overflow-y: auto;
    max-height: 85vh;
    scroll-behavior: smooth;
}

.pole-modal-body::-webkit-scrollbar {
    width: 8px;
}

.pole-modal-body::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.pole-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.pole-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.pole-modal-header {
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.1) 0%, rgba(209, 0, 170, 0.08) 100%);
    padding: 48px 40px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(72, 72, 219, 0.15);
}

.pole-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(72, 72, 219, 0.2) 0%, rgba(209, 0, 170, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(72, 72, 219, 0.15);
}

.pole-modal-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.pole-modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c35;
    margin: 0;
}

.pole-modal-text {
    padding: 40px;
}

.pole-modal-text #pole-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(28, 28, 53, 0.8);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(72, 72, 219, 0.1);
}

.pole-modal-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c35;
    margin: 32px 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pole-modal-details h3:first-child {
    margin-top: 0;
}

.pole-modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pole-modal-details li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(28, 28, 53, 0.8);
    padding-left: 32px;
    position: relative;
}

.pole-modal-details li::before {
    content: "→";
    position: absolute;
    left: 8px;
    color: #4848DB;
    font-weight: bold;
    font-size: 18px;
}

.feature-card {
    cursor: pointer;
}

/* Responsive Pole Modal */
@media (max-width: 768px) {
    .pole-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }

    .pole-modal-header {
        padding: 50px 20px 28px;
    }

    .pole-modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .pole-modal-icon img {
        width: 36px;
        height: 36px;
    }

    .pole-modal-header h2 {
        font-size: 24px;
    }

    .pole-modal-text {
        padding: 28px 20px;
    }

    .pole-modal-text #pole-description {
        font-size: 15px;
        margin-bottom: 28px;
        padding-bottom: 20px;
        line-height: 1.7;
    }

    .pole-modal-details h3 {
        font-size: 17px;
        margin: 20px 0 10px 0;
    }

    .pole-modal-details li {
        font-size: 14px;
        padding-left: 26px;
        line-height: 1.5;
    }
    
    .pole-modal-details li::before {
        font-size: 16px;
    }

    .pole-modal-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .pole-modal-header h2 {
        font-size: 22px;
    }
    
    .pole-modal-text {
        padding: 24px 16px;
    }
}

/* ================================
   MODAL ARTICLE
   ================================ */
.article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.article-modal.active {
    display: block;
}

.article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.article-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.article-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-modal-close:hover {
    background: white;
    transform: rotate(90deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.article-modal-close svg {
    color: #1f2937;
}

.article-modal-body {
    overflow-y: auto;
    max-height: 85vh;
    scroll-behavior: smooth;
}

.article-modal-body::-webkit-scrollbar {
    width: 8px;
}

.article-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.article-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.article-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.article-modal-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.article-modal-text {
    padding: 40px 50px 50px;
}

.article-modal-text .news-category {
    display: inline-block;
    margin-bottom: 16px;
}

.article-modal-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-modal-text .news-date {
    display: block;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.article-modal-content-text {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.article-modal-content-text p {
    margin-bottom: 20px;
}

/* Formatage du contenu HTML dans le modal */
.article-modal-content-text strong {
    font-weight: 700;
    color: #1f2937;
}

.article-modal-content-text em {
    font-style: italic;
}

.article-modal-content-text u {
    text-decoration: underline;
}

.article-modal-content-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 32px 0 16px 0;
    line-height: 1.3;
}

.article-modal-content-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

.article-modal-content-text ul {
    margin: 20px 0;
    padding-left: 24px;
}

.article-modal-content-text li {
    margin-bottom: 8px;
    color: #374151;
}

.article-modal-content-text a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-modal-content-text a:hover {
    color: #2563eb;
}

.news-featured,
.news-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured:hover,
.news-item:hover {
    transform: translateY(-4px);
}

.news-featured:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Article Modal */
@media (max-width: 768px) {
    .article-modal-content {
        width: 95%;
        max-height: 92vh;
        border-radius: 16px;
    }

    .article-modal-image {
        height: 220px;
    }

    .article-modal-text {
        padding: 28px 20px 36px;
    }

    .article-modal-text h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .article-modal-text .news-category {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .article-modal-text .news-date {
        font-size: 13px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .article-modal-content-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .article-modal-content-text h2 {
        font-size: 20px;
        margin: 24px 0 12px 0;
    }
    
    .article-modal-content-text h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
    
    .article-modal-content-text p {
        margin-bottom: 16px;
    }

    .article-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .article-modal-image {
        height: 200px;
    }
    
    .article-modal-text {
        padding: 24px 16px 32px;
    }
    
    .article-modal-text h2 {
        font-size: 20px;
    }
    
    .article-modal-content-text {
        font-size: 14px;
    }
}

/* ================================
   RESPONSIVE - GRAND ÉCRAN (90% WIDTH)
   ================================ */
@media (min-width: 1500px) {
    header {
        max-width: 80%;
    }

    .hero-card {
        max-width: 80%;
    }

    .features-inner {
        max-width: 80%;
    }

    .partners-inner {
        max-width: 80%;
    }

    .news-inner {
        max-width: 80%;
    }

    .contact-container {
        max-width: 80%;
    }

    .footer-container {
        max-width: 80%;
    }
}