/* ═══════════════════════════════════════════════════════════════════════════
   AMSES MARTINIQUE - Design Premium 2025
   Association Médicale de Sauvegarde de l'Environnement et de la Santé
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   FONTS - Google Fonts
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES - Palette AMSES
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Couleurs principales - Basées sur le logo AMSES */
    --amses-blue-primary: #1E5A8C;
    --amses-blue-dark: #0F3A5C;
    --amses-blue-light: #3A7DB8;
    --amses-blue-pale: #E8F4FC;
    
    /* Couleurs environnement */
    --amses-green: #10B981;
    --amses-green-dark: #059669;
    --amses-green-light: #D1FAE5;
    
    /* Couleurs accent Martinique */
    --amses-gold: #F59E0B;
    --amses-coral: #F97316;
    
    /* Neutres */
    --amses-white: #FFFFFF;
    --amses-off-white: #F8FAFC;
    --amses-gray-50: #F1F5F9;
    --amses-gray-100: #E2E8F0;
    --amses-gray-200: #CBD5E1;
    --amses-gray-300: #94A3B8;
    --amses-gray-400: #64748B;
    --amses-gray-500: #475569;
    --amses-gray-600: #334155;
    --amses-gray-700: #1E293B;
    --amses-gray-900: #0F172A;
    
    /* Typographie */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Tailles fluides */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5rem);
    
    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-blue: 0 10px 40px -10px rgba(30, 90, 140, 0.3);
    
    /* Bordures */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Container */
    --container-max: 1280px;
    --container-padding: clamp(1rem, 5vw, 3rem);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--amses-gray-700);
    background-color: var(--amses-white);
    overflow-x: hidden;
}

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

a {
    color: var(--amses-blue-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--amses-blue-dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--amses-gray-900);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-md);
}

.lead {
    font-size: var(--text-xl);
    color: var(--amses-gray-500);
    font-weight: 300;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--alt {
    background-color: var(--amses-gray-50);
}

.section--blue {
    background: linear-gradient(135deg, var(--amses-blue-dark) 0%, var(--amses-blue-primary) 100%);
    color: var(--amses-white);
}

.section--blue h2,
.section--blue h3 {
    color: var(--amses-white);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--amses-gray-100);
    transition: all var(--transition-base);
}

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

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    gap: var(--space-md);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.header__logo img {
    height: 45px;
    width: auto;
}

.header__logo-text {
    display: none;
}

@media (min-width: 900px) {
    .header__logo-text {
        display: flex;
        flex-direction: column;
        white-space: nowrap;
    }
    
    .header__logo-text span:first-child {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 600;
        color: var(--amses-blue-primary);
        line-height: 1.2;
    }
    
    .header__logo-text span:last-child {
        font-size: 0.65rem;
        color: var(--amses-gray-400);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

/* Navigation */
.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        flex-shrink: 0;
    }
}

.nav__link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amses-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: var(--space-sm) var(--space-sm);
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amses-blue-primary), var(--amses-green));
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--amses-blue-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: var(--amses-blue-primary);
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--amses-gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--amses-white);
    padding: 100px var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-slow);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile__link {
    display: block;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--amses-gray-700);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--amses-gray-100);
    transition: all var(--transition-fast);
}

.nav-mobile__link:hover {
    color: var(--amses-blue-primary);
    padding-left: var(--space-md);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amses-blue-dark) 0%, var(--amses-blue-primary) 50%, var(--amses-green-dark) 100%);
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 90, 140, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Animated decorative elements */
.hero__decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.hero__decoration--1 {
    width: 400px;
    height: 400px;
    background: var(--amses-green);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero__decoration--2 {
    width: 300px;
    height: 300px;
    background: var(--amses-gold);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.hero__decoration--3 {
    width: 200px;
    height: 200px;
    background: var(--amses-white);
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(-20px, -10px) scale(1.02); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-2xl);
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--amses-white);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--amses-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__title span {
    display: block;
    background: linear-gradient(90deg, var(--amses-gold), #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeIn 1s ease 1s forwards, bounce 2s ease-in-out infinite 1.5s;
    opacity: 0;
}

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

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

.hero__scroll svg {
    width: 24px;
    height: 24px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--amses-blue-dark);
}

.btn--secondary {
    background: transparent;
    color: var(--amses-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--amses-white);
    color: var(--amses-white);
}

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

.btn--blue:hover {
    background: var(--amses-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
    color: var(--amses-white);
}

.btn--green {
    background: var(--amses-green);
    color: var(--amses-white);
}

.btn--green:hover {
    background: var(--amses-green-dark);
    transform: translateY(-2px);
    color: var(--amses-white);
}

.btn--outline {
    background: transparent;
    color: var(--amses-blue-primary);
    border: 2px solid var(--amses-blue-primary);
}

.btn--outline:hover {
    background: var(--amses-blue-primary);
    color: var(--amses-white);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURES / MISSIONS
   ───────────────────────────────────────────────────────────────────────────── */
.features {
    padding: var(--space-4xl) 0;
    background: var(--amses-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--amses-gray-50) 0%, transparent 100%);
}

.features__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--amses-green);
    margin-bottom: var(--space-md);
    position: relative;
    padding: 0 var(--space-lg);
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--amses-green);
}

.section-label::before { left: -10px; }
.section-label::after { right: -10px; }

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    position: relative;
}

.feature-card {
    background: var(--amses-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--amses-gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amses-blue-primary), var(--amses-green));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 28px;
}

.feature-card__icon--blue {
    background: var(--amses-blue-pale);
    color: var(--amses-blue-primary);
}

.feature-card__icon--green {
    background: var(--amses-green-light);
    color: var(--amses-green);
}

.feature-card__icon--gold {
    background: #FEF3C7;
    color: var(--amses-gold);
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--amses-gray-900);
}

.feature-card__text {
    color: var(--amses-gray-500);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ABOUT SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.about {
    padding: var(--space-4xl) 0;
    background: var(--amses-gray-50);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.about__image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 90, 140, 0.2) 0%, transparent 60%);
}

.about__badge {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: var(--amses-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.about__badge-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--amses-blue-primary);
    line-height: 1;
}

.about__badge-text {
    font-size: var(--text-sm);
    color: var(--amses-gray-500);
}

.about__content h2 {
    margin-bottom: var(--space-lg);
}

.about__list {
    list-style: none;
    margin-top: var(--space-xl);
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.about__list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--amses-green-light);
    color: var(--amses-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__list-icon svg {
    width: 14px;
    height: 14px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ARTICLES / NEWS
   ───────────────────────────────────────────────────────────────────────────── */
.articles {
    padding: var(--space-4xl) 0;
}

.articles__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.articles__header h2 {
    margin-bottom: 0;
}

.articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.article-card {
    background: var(--amses-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--amses-gray-100);
    transition: all var(--transition-base);
}

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

.article-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-card__image img {
    transform: scale(1.05);
}

.article-card__category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--amses-blue-primary);
    color: var(--amses-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-card__content {
    padding: var(--space-xl);
}

.article-card__date {
    font-size: var(--text-xs);
    color: var(--amses-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.article-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--amses-gray-900);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    transition: color var(--transition-fast);
}

.article-card:hover .article-card__title {
    color: var(--amses-blue-primary);
}

.article-card__excerpt {
    color: var(--amses-gray-500);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--amses-blue-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.article-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.article-card:hover .article-card__link svg {
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.stats {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--amses-blue-dark) 0%, var(--amses-blue-primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
}

@media (min-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: var(--amses-white);
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--amses-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item__label {
    font-size: var(--text-sm);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.cta {
    padding: var(--space-4xl) 0;
    background: var(--amses-gray-50);
    text-align: center;
}

.cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: var(--text-lg);
    color: var(--amses-gray-500);
    margin-bottom: var(--space-xl);
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER - Vert profond avec filigrane tropical
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #0d3320 0%, #145a38 50%, #0f4429 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

/* Filigrane - Feuilles tropicales en SVG */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M100 500 Q150 400 100 300 Q50 200 100 100 Q80 200 120 300 Q160 400 100 500'/%3E%3Cpath d='M700 100 Q650 200 700 300 Q750 400 700 500 Q720 400 680 300 Q640 200 700 100'/%3E%3Cpath d='M300 550 Q350 450 300 350 Q250 250 300 150 Q280 250 320 350 Q360 450 300 550'/%3E%3Cpath d='M500 50 Q450 150 500 250 Q550 350 500 450 Q520 350 480 250 Q440 150 500 50'/%3E%3Ccircle cx='150' cy='150' r='80'/%3E%3Ccircle cx='650' cy='450' r='100'/%3E%3Ccircle cx='400' cy='300' r='60'/%3E%3Cpath d='M50 400 Q100 350 150 400 Q200 450 250 400 L250 420 Q200 470 150 420 Q100 370 50 420 Z'/%3E%3Cpath d='M550 200 Q600 150 650 200 Q700 250 750 200 L750 220 Q700 270 650 220 Q600 170 550 220 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

/* Deuxième couche de filigrane - Silhouette Martinique stylisée */
.footer::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 400px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 300'%3E%3Cpath fill='%23ffffff' fill-opacity='0.04' d='M100 10 Q130 30 120 60 Q140 80 130 110 Q150 130 140 160 Q160 180 150 210 Q170 230 160 260 Q140 280 100 290 Q60 280 40 260 Q30 230 50 210 Q40 180 60 160 Q50 130 70 110 Q60 80 80 60 Q70 30 100 10 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand img {
    height: 50px;
    margin-bottom: var(--space-lg);
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.7);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--amses-white);
    transform: translateY(-3px);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--amses-white);
    margin-bottom: var(--space-lg);
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--amses-white);
    padding-left: var(--space-sm);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
    color: var(--amses-white);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ARTICLE PAGE
   ───────────────────────────────────────────────────────────────────────────── */
.article-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--amses-blue-dark) 0%, var(--amses-blue-primary) 100%);
    color: var(--amses-white);
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.article-hero__category {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-hero__date {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.article-hero h1 {
    color: var(--amses-white);
    margin-bottom: var(--space-lg);
    max-width: 900px;
}

.article-hero__intro {
    font-size: var(--text-xl);
    opacity: 0.9;
    max-width: 700px;
    font-weight: 300;
}

.article-content {
    padding: var(--space-3xl) 0;
}

.article-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.article-content__inner h2 {
    margin-top: var(--space-2xl);
}

.article-content__inner h3 {
    margin-top: var(--space-xl);
}

.article-content__inner p {
    margin-bottom: var(--space-lg);
}

.article-content__inner ul,
.article-content__inner ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.article-content__inner li {
    margin-bottom: var(--space-sm);
}

.article-content__inner img {
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-lg);
}

.article-content__inner blockquote {
    border-left: 4px solid var(--amses-blue-primary);
    padding-left: var(--space-xl);
    margin: var(--space-2xl) 0;
    font-style: italic;
    color: var(--amses-gray-600);
    font-size: var(--text-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RUBRIQUE PAGE
   ───────────────────────────────────────────────────────────────────────────── */
.rubrique-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: var(--amses-gray-50);
    border-bottom: 1px solid var(--amses-gray-100);
}

.rubrique-hero h1 {
    margin-bottom: var(--space-md);
}

.rubrique-hero__desc {
    font-size: var(--text-lg);
    color: var(--amses-gray-500);
    max-width: 700px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────────────────────────────── */
.contact-form {
    background: var(--amses-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--amses-gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--amses-gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amses-blue-primary);
    box-shadow: 0 0 0 3px rgba(30, 90, 140, 0.1);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE - FORMULAIRE PREMIUM
   ───────────────────────────────────────────────────────────────────────────── */

/* Hero Contact */
.contact-hero {
    padding: calc(70px + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--amses-blue-dark) 0%, var(--amses-blue-primary) 100%);
    color: var(--amses-white);
    text-align: center;
}

.contact-hero h1 {
    color: var(--amses-white);
    margin-bottom: var(--space-md);
}

.contact-hero__desc {
    font-size: var(--text-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Content */
.contact-content {
    background: var(--amses-gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }
}

/* Formulaire Wrapper */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--amses-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Header du formulaire */
.contact-form__header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid var(--amses-gray-100);
}

.contact-form__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--amses-blue-primary), var(--amses-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: 0 4px 14px rgba(30, 90, 140, 0.3);
}

.contact-form__icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-form__header h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
    color: var(--amses-gray-900);
}

.contact-form__header p {
    font-size: var(--text-sm);
    color: var(--amses-gray-500);
    margin: 0;
}

.required {
    color: #ef4444;
    font-weight: 600;
}

.optional {
    color: var(--amses-gray-400);
    font-weight: 400;
    font-size: 0.85em;
}

/* Body du formulaire */
.contact-form__body {
    padding: var(--space-2xl);
}

/* Form Row (2 colonnes) */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Group */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--amses-gray-700);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--amses-gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--amses-gray-800);
    background: var(--amses-white);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--amses-gray-400);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--amses-gray-300);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--amses-blue-primary);
    box-shadow: 0 0 0 4px rgba(30, 90, 140, 0.1);
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: var(--amses-green);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: #ef4444;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

/* Input avec icône */
.input-icon {
    position: relative;
}

.input-icon svg {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--amses-gray-400);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-icon input {
    padding-left: calc(var(--space-md) + 28px);
}

.input-icon:focus-within svg {
    color: var(--amses-blue-primary);
}

/* Hints */
.form-group__hint {
    display: block;
    font-size: var(--text-xs);
    color: var(--amses-gray-400);
    margin-top: var(--space-xs);
}

.form-group__hint--counter {
    text-align: right;
}

.form-group__hint.error {
    color: #ef4444;
}

/* Checkbox personnalisée */
.form-group--checkbox {
    margin-top: var(--space-xl);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: var(--text-sm);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--amses-gray-300);
    border-radius: var(--radius-sm);
    background: var(--amses-white);
    transition: all var(--transition-fast);
    position: relative;
    margin-top: 2px;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--amses-blue-primary);
    border-color: var(--amses-blue-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input:focus + .checkbox-custom {
    box-shadow: 0 0 0 4px rgba(30, 90, 140, 0.1);
}

.checkbox-text {
    color: var(--amses-gray-600);
}

.checkbox-text a {
    color: var(--amses-blue-primary);
    text-decoration: underline;
}

/* Actions du formulaire */
.form-actions {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--amses-gray-100);
}

.btn--large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    justify-content: center;
}

.btn--large svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .btn--large {
        width: auto;
    }
}

/* Message de succès */
.contact-form__success {
    padding: var(--space-3xl);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--amses-green), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    animation: successPulse 2s ease infinite;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
}

.contact-form__success h3 {
    color: var(--amses-green);
    margin-bottom: var(--space-md);
}

.contact-form__success p {
    color: var(--amses-gray-600);
    margin-bottom: var(--space-xl);
}

/* Cartes d'information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info__card {
    background: var(--amses-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

.contact-info__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amses-blue-primary), var(--amses-blue-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.contact-info__icon--green {
    background: linear-gradient(135deg, var(--amses-green), #059669);
}

.contact-info__icon--gold {
    background: linear-gradient(135deg, var(--amses-gold), #d97706);
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-info__card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--amses-gray-900);
}

.contact-info__card p {
    font-size: var(--text-sm);
    color: var(--amses-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Note médecins */
.contact-info__note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
}

.contact-info__note svg {
    width: 24px;
    height: 24px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__note p {
    font-size: var(--text-sm);
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS - Scroll reveal
   ───────────────────────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
    .header,
    .footer,
    .nav-mobile,
    .nav-overlay,
    .hero__scroll,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .hero {
        min-height: auto;
        padding: 2cm 0;
        background: #fff;
        color: #000;
    }
    
    .hero__title {
        color: #000;
        font-size: 24pt;
    }
}
