/* ==========================================================================
   LE TEMPS D'UNE POSE — Design System
   Couleurs du logo : Bleu marine #1b1464 + Teal #00a99d
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Bleu marine du logo + variations */
  --navy-900: #0f0a3f;
  --navy-800: #1b1464;        /* Couleur principale du logo */
  --navy-700: #2a2380;
  --navy-600: #3d3699;
  --navy-500: #5a52b8;

  /* Teal du logo + variations */
  --teal-900: #006e66;
  --teal-800: #00897e;
  --teal-700: #00a99d;        /* Couleur teal du logo */
  --teal-600: #1cbcb0;
  --teal-500: #4dd1c6;
  --teal-400: #7fdcd3;
  --teal-200: #c4ede9;
  --teal-50: #ebf8f6;

  /* Accent doré pour les highlights subtils */
  --gold-500: #d4a850;
  --gold-400: #e0bb6f;

  /* Neutres */
  --neutral-50: #fafaf8;
  --neutral-100: #f5f4ee;
  --neutral-200: #e8e6df;
  --neutral-300: #d1cec4;
  --neutral-400: #a8a59a;
  --neutral-600: #6b6960;
  --neutral-800: #2c2b26;
  --neutral-900: #1a1a17;

  --white: #ffffff;

  /* Typo */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

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

  /* Container */
  --container-max: 1280px;
  --container-px: 1.5rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.3s var(--ease);

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(27, 20, 100, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 20, 100, 0.08);
  --shadow-lg: 0 12px 40px rgba(27, 20, 100, 0.12);
  --shadow-xl: 0 24px 60px rgba(27, 20, 100, 0.16);
}

/* 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: 16px; line-height: 1.6; color: var(--neutral-800); background: var(--neutral-50); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--teal-700); color: white; }

/* TYPOGRAPHIE */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy-800); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-variation-settings: "opsz" 96; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-variation-settings: "opsz" 36; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--neutral-600); }

.eyebrow { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-700); display: inline-block; margin-bottom: var(--space-sm); }
.eyebrow::before { content: "—"; margin-right: 0.6rem; color: var(--teal-700); }

/* LAYOUT */
.container { max-width: var(--container-max); margin: 0 auto; padding-left: var(--container-px); padding-right: var(--container-px); }
section { padding: var(--space-3xl) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--space-2xl) 0; } }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250, 250, 248, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: var(--transition); }
.site-header.scrolled { border-bottom-color: var(--neutral-200); background: rgba(250, 250, 248, 0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 2rem; }

.logo { display: block; flex-shrink: 0; transition: opacity var(--transition); }
.logo:hover { opacity: 0.85; }
.logo img { height: 44px; width: auto; }
@media (max-width: 480px) { .logo img { height: 36px; } }

.nav-list { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-list a { font-size: 0.88rem; font-weight: 500; color: var(--neutral-800); position: relative; padding: 0.5rem 0; transition: color var(--transition); }
.nav-list a:hover { color: var(--teal-700); }
.nav-list a.active { color: var(--navy-800); }
.nav-list a.active::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--teal-700); }

.nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.4rem; background: var(--navy-800); color: white !important; border-radius: 100px; font-size: 0.85rem; font-weight: 600; transition: all var(--transition); }
.nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 169, 157, 0.3); }

.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-800); transition: var(--transition); }

@media (max-width: 1080px) {
  .nav-list { position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; justify-content: center; padding: 4rem 2rem; gap: 1.5rem; box-shadow: var(--shadow-xl); transition: right 0.4s var(--ease); }
  .nav-list.open { right: 0; }
  .nav-list a { font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* HERO */
.hero { min-height: 92vh; padding: 11rem 0 6rem; position: relative; overflow: hidden; background: var(--neutral-50); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(ellipse at top right, rgba(0, 169, 157, 0.15), transparent 50%), radial-gradient(ellipse at bottom left, rgba(27, 20, 100, 0.08), transparent 50%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(27, 20, 100, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(27, 20, 100, 0.04) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-2xl); align-items: center; position: relative; z-index: 1; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: italic; font-weight: 400; color: var(--teal-700); }
.hero-lead { font-size: 1.15rem; line-height: 1.7; color: var(--neutral-600); margin-bottom: var(--space-lg); max-width: 540px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 1.8rem; border-radius: 100px; font-size: 0.95rem; font-weight: 600; transition: all var(--transition); cursor: pointer; }
.btn-primary { background: var(--navy-800); color: white; }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 169, 157, 0.35); }
.btn-secondary { background: transparent; color: var(--navy-800); border: 1.5px solid var(--navy-800); }
.btn-secondary:hover { background: var(--navy-800); color: white; }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-xl); background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 50%, var(--teal-800) 100%); }
.hero-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 169, 157, 0.4), transparent 50%); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px); background-size: 40px 40px; }

.hero-visual-stat { position: absolute; background: white; padding: 1.25rem 1.5rem; border-radius: 8px; box-shadow: var(--shadow-lg); z-index: 2; }
.hero-visual-stat--top { top: 2rem; left: -2rem; animation: float 6s ease-in-out infinite; }
.hero-visual-stat--bottom { bottom: 2rem; right: -2rem; animation: float 6s ease-in-out infinite 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.stat-number { font-family: var(--font-display); font-size: 2rem; color: var(--navy-800); line-height: 1; }
.stat-number-teal { color: var(--teal-700); }
.stat-label { font-size: 0.8rem; color: var(--neutral-600); margin-top: 0.4rem; font-weight: 500; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero { padding-top: 9rem; }
  .hero-visual-stat--top { left: 1rem; }
  .hero-visual-stat--bottom { right: 1rem; }
}

/* CERTIFICATIONS */
.certifications { background: var(--white); padding: 3rem 0; border-top: 1px solid var(--neutral-200); border-bottom: 1px solid var(--neutral-200); }
.certifications-inner { display: flex; align-items: center; gap: var(--space-xl); flex-wrap: wrap; justify-content: center; }
.certifications-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--neutral-600); flex-shrink: 0; }
.certif-grid { display: flex; gap: var(--space-lg); align-items: center; flex-wrap: wrap; justify-content: center; }
.certif-badge { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.2rem; background: var(--neutral-50); border: 1px solid var(--neutral-200); border-radius: 6px; font-size: 0.85rem; font-weight: 600; color: var(--navy-800); transition: all var(--transition); }
.certif-badge:hover { border-color: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.certif-badge .icon { width: 28px; height: 28px; background: var(--teal-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal-900); font-weight: 700; }

/* SERVICES */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: end; margin-bottom: var(--space-xl); }
.services-header p { font-size: 1.05rem; max-width: 480px; }
@media (max-width: 768px) { .services-header { grid-template-columns: 1fr; } }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.service-card { background: white; border: 1px solid var(--neutral-200); border-radius: 12px; padding: var(--space-lg); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--navy-800), var(--teal-700)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out); }
.service-card:hover { border-color: var(--teal-500); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--teal-50); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); color: var(--teal-700); transition: all var(--transition); }
.service-card:hover .service-icon { background: var(--navy-800); color: var(--teal-500); }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; margin-bottom: var(--space-md); }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--teal-700); letter-spacing: 0.02em; }
.service-link svg { transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* PROCESS */
.process { background: var(--navy-800); color: white; position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(0, 169, 157, 0.18), transparent 40%), radial-gradient(circle at 80% 30%, rgba(0, 169, 157, 0.1), transparent 40%); }
.process .container { position: relative; z-index: 1; }
.process h2 { color: white; }
.process .eyebrow { color: var(--teal-500); }
.process .eyebrow::before { color: var(--teal-500); }
.process p { color: rgba(255, 255, 255, 0.7); }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); counter-reset: step; }
.process-step { position: relative; padding: var(--space-lg) var(--space-md); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; transition: all var(--transition); }
.process-step:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--teal-500); }
.process-step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--teal-500); line-height: 1; display: block; margin-bottom: var(--space-sm); }
.process-step h4 { color: white; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.9rem; }

/* STATS */
.stats-section { padding: var(--space-2xl) 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-lg); }
.stat-block { text-align: center; padding: var(--space-lg); border-right: 1px solid var(--neutral-200); }
.stat-block:last-child { border-right: none; }
.stat-value { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 400; color: var(--navy-800); line-height: 1; margin-bottom: 0.5rem; font-variation-settings: "opsz" 144; }
.stat-value sup { font-size: 0.5em; color: var(--teal-700); margin-left: 0.2rem; }
.stat-text { font-size: 0.9rem; color: var(--neutral-600); font-weight: 500; }
@media (max-width: 768px) { .stat-block { border-right: none; border-bottom: 1px solid var(--neutral-200); padding: var(--space-md); } .stat-block:last-child { border-bottom: none; } }

/* CTA / FORMULAIRE */
.cta-section { background: var(--teal-50); position: relative; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(0, 169, 157, 0.08), transparent 60%); pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; position: relative; }
.cta-content h2 { margin-bottom: var(--space-md); }
.cta-content p { font-size: 1.05rem; margin-bottom: var(--space-lg); }

.cta-features { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.cta-features li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; color: var(--navy-800); font-weight: 500; }
.cta-features li::before { content: ""; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-700); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-position: center; background-repeat: no-repeat; flex-shrink: 0; }

.contact-form { background: white; padding: var(--space-lg); border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--neutral-200); }
.contact-form h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.contact-form-subtitle { font-size: 0.9rem; color: var(--neutral-600); margin-bottom: var(--space-md); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; font-family: inherit; font-size: 0.95rem; background: var(--neutral-50); border: 1px solid var(--neutral-200); border-radius: 6px; color: var(--neutral-800); transition: all var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal-700); background: white; box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.15); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; padding: 1rem; background: var(--navy-800); color: white; border-radius: 6px; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; transition: all var(--transition); margin-top: 0.5rem; }
.form-submit:hover { background: var(--teal-700); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 169, 157, 0.3); }
.form-note { font-size: 0.78rem; color: var(--neutral-600); margin-top: 0.8rem; text-align: center; }

@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.7); padding: var(--space-2xl) 0 var(--space-md); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--navy-800), var(--teal-700), var(--navy-800)); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand { max-width: 360px; }
.footer-brand .logo img { height: 56px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); line-height: 1.7; }

.footer-col h4 { color: white; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--teal-500); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: var(--space-md); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.83rem; color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--teal-500); }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* PAGES INTÉRIEURES */
.page-hero { padding: 11rem 0 var(--space-xl); background: var(--neutral-50); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(ellipse at top right, rgba(0, 169, 157, 0.12), transparent 60%); }
.page-hero-content { position: relative; max-width: 720px; }

.breadcrumb { display: flex; gap: 0.6rem; font-size: 0.8rem; color: var(--neutral-600); margin-bottom: var(--space-md); letter-spacing: 0.02em; }
.breadcrumb a { color: var(--neutral-600); }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb span { color: var(--neutral-400); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero-lead { font-size: 1.1rem; line-height: 1.7; color: var(--neutral-600); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.split--reverse > *:first-child { order: 2; }
.split-image { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--teal-800), var(--navy-800)); position: relative; box-shadow: var(--shadow-xl); }
.split-image::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%), radial-gradient(circle at 70% 70%, rgba(0, 169, 157, 0.3), transparent 50%); }
.split-image::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 40px 40px; }

.split-content h2 { margin-bottom: var(--space-md); }
.split-content > p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.2rem; }

.feature-list { list-style: none; margin-top: var(--space-md); display: flex; flex-direction: column; gap: 1rem; }
.feature-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--neutral-200); }
.feature-list li:last-child { border-bottom: none; }
.feature-list strong { display: block; color: var(--navy-800); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin-bottom: 0.3rem; }
.feature-list span { color: var(--neutral-600); font-size: 0.93rem; line-height: 1.6; }
.feature-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--teal-50); color: var(--teal-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--space-xl); } .split--reverse > *:first-child { order: 0; } }

/* AIDES */
.aids-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.aid-card { padding: var(--space-lg); background: white; border-radius: 12px; border: 1px solid var(--neutral-200); position: relative; overflow: hidden; transition: all var(--transition); }
.aid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-400); }
.aid-card--featured { background: var(--navy-800); color: white; border-color: var(--navy-800); }
.aid-card--featured:hover { border-color: var(--teal-700); }
.aid-card--featured h3, .aid-card--featured h4 { color: white; }
.aid-card--featured p { color: rgba(255, 255, 255, 0.7); }

.aid-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px; background: var(--teal-50); color: var(--teal-800); margin-bottom: 1rem; }
.aid-card--featured .aid-tag { background: rgba(0, 169, 157, 0.2); color: var(--teal-400); }

.aid-amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--navy-800); line-height: 1; margin: 0.5rem 0 1rem; font-variation-settings: "opsz" 144; }
.aid-card--featured .aid-amount { color: var(--teal-500); }
.aid-amount small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--neutral-600); }
.aid-card--featured .aid-amount small { color: rgba(255, 255, 255, 0.6); }

/* PROJETS */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-lg); }
.project-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--neutral-200); transition: all var(--transition); }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-400); }
.project-image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--teal-700), var(--navy-800)); position: relative; overflow: hidden; }
.project-image::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%); }
.project-info { padding: var(--space-md); }
.project-info h4 { margin-bottom: 0.5rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.project-meta { display: flex; gap: 1rem; margin-top: 0.8rem; font-size: 0.8rem; color: var(--neutral-600); }
.project-meta span::before { content: "•"; margin-right: 0.5rem; color: var(--teal-700); }
.project-meta span:first-child::before { content: ""; margin: 0; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-lg); }
.article-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--neutral-200); transition: all var(--transition); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-400); }
.article-image { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-800), var(--teal-700)); position: relative; }
.article-content { padding: var(--space-md); }
.article-category { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-700); margin-bottom: 0.7rem; }
.article-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; line-height: 1.3; }
.article-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--neutral-600); padding-top: 1rem; border-top: 1px solid var(--neutral-200); }

/* À PROPOS */
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.value-card { padding: var(--space-lg); background: white; border-radius: 12px; border: 1px solid var(--neutral-200); border-top: 3px solid var(--teal-700); transition: all var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.7rem; }
.value-number { font-family: var(--font-display); font-size: 1rem; color: var(--teal-700); margin-bottom: 1rem; font-weight: 500; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-2xl); align-items: start; }
.contact-info { position: sticky; top: 100px; }
.contact-block { margin-bottom: var(--space-lg); }
.contact-block h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-700); margin-bottom: 0.5rem; }
.contact-block p { font-size: 1.05rem; color: var(--navy-800); line-height: 1.6; }
.contact-block a:hover { color: var(--teal-700); }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .contact-info { position: static; } }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
