/* ===========================
   JEUNE-S Landing Page Styles
   Mobile-First Approach
   =========================== */

/* --- CSS Custom Properties --- */
:root {
  --blue-primary: #1B3A6B;
  --blue-dark: #0E2240;
  --blue-light: #EBF1FA;
  --red-primary: #E63228;
  --red-hover: #CC2A21;
  --red-light: #FEF0EF;
  --charcoal: #1E1E2E;
  --slate: #5A6677;
  --off-white: #F8F9FB;
  --white: #FFFFFF;
  --cream: #FDF8F0;
  --shadow-sm: 0 2px 8px rgba(27, 58, 107, 0.08);
  --shadow-md: 0 4px 20px rgba(27, 58, 107, 0.12);
  --shadow-lg: 0 12px 48px rgba(27, 58, 107, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-primary);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 50, 40, 0.35);
}

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

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

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

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

/* --- Section Utilities --- */
.section {
  padding: 64px 0;
  position: relative;
}

.section-header {
  margin-bottom: 48px;
}

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

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-header .section-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red-primary);
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-header--center .section-line {
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 520px;
}

.section-header--center p {
  margin: 0 auto;
}

/* ===========================
   1. NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links { display: none; }

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

/* Show lang switch inside mobile menu */
.nav-links.active::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--blue-light);
  margin: 8px 0;
}

.nav-right .nav-cta {
  display: none;
}

.nav-links a {
  padding: 12px 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  background: var(--off-white);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid var(--blue-light);
}

.lang-btn {
  padding: 5px 12px;
  border: none;
  background: transparent;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

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

.lang-btn:hover:not(.active) {
  color: var(--blue-primary);
}

.nav-cta { display: none; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   2. HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 34, 64, 0.92) 0%,
    rgba(27, 58, 107, 0.75) 45%,
    rgba(27, 58, 107, 0.5) 100%
  );
}

/* Decorative shapes in hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--white);
}

.hero-shape--1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  opacity: 0.04;
}

.hero-shape--2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 15%;
  opacity: 0.06;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape--3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 30%;
  opacity: 0.1;
  background: var(--red-primary);
  border-radius: 20%;
  transform: rotate(15deg);
}

.hero-chevron {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-chevron--left {
  left: -40px;
  bottom: 15%;
  width: 120px;
  height: 120px;
  border-left: 3px solid rgba(230, 50, 40, 0.2);
  border-bottom: 3px solid rgba(230, 50, 40, 0.2);
  transform: rotate(-45deg);
}

.hero-chevron--right {
  right: 8%;
  top: 18%;
  width: 60px;
  height: 60px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-45deg);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Sora', sans-serif;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--red-primary), #FF6B5B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero floating cards - hidden on mobile, shown on desktop */
.hero-cards {
  display: none;
}

.hero-float-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}

.hero-float-card + .hero-float-card {
  margin-top: 16px;
}

.hero-float-card .card-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-float-card .card-number--red {
  color: var(--red-primary);
}

.hero-float-card .card-label {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 2px;
}

.hero-float-card .card-sub {
  font-size: 0.75rem;
  opacity: 0.5;
}

.hero-float-card--wide {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-float-card--wide .card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230, 50, 40, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card--wide .card-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-float-card--wide .card-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.5s infinite;
}

.hero-scroll svg {
  color: rgba(255, 255, 255, 0.4);
}

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

/* ===========================
   3. QUI SOMMES-NOUS
   =========================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 40px;
}

.about-text .eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--slate);
  margin-bottom: 16px;
}

.about-visual {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* Offset decorative frame behind image */
.about-visual::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--blue-primary);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  text-align: center;
  padding: 16px 10px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: transform var(--transition);
  border: 1px solid transparent;
}

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

.stat-card .stat-icon {
  color: var(--blue-primary);
  margin-bottom: 6px;
}

.stat-card h4 {
  font-size: 0.8rem;
  color: var(--blue-primary);
  margin-bottom: 2px;
}

.stat-card p {
  font-size: 0.7rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* ===========================
   4. MISSION
   =========================== */
.mission {
  background: var(--blue-primary);
  color: var(--white);
  overflow: hidden;
}

/* Angled top edge */
.mission::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.mission .section-header h2 {
  color: var(--white);
}

.mission .section-header .section-line {
  background: var(--red-primary);
}

.mission .section-header p {
  color: rgba(255,255,255,0.65);
}

.mission-statement {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.mission-statement p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.mission-pillars {
  display: grid;
  gap: 20px;
}

.pillar-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

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

.pillar-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.pillar-icon.blue {
  background: rgba(235, 241, 250, 0.15);
  color: var(--white);
}

.pillar-icon.red {
  background: rgba(230, 50, 40, 0.2);
  color: var(--red-primary);
}

.pillar-card h3 {
  font-size: 1.05rem;
  color: var(--white);
}

.pillar-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* ===========================
   5. OBJECTIFS
   =========================== */
.objectives {
  background: var(--off-white);
}

/* Angled top from mission */
.objectives::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--blue-primary);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.objectives .section-header {
  padding-top: 20px;
}

.objectives-grid {
  display: grid;
  gap: 16px;
}

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.objective-item:hover {
  border-left-color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.objective-item:nth-child(even):hover {
  border-left-color: var(--red-primary);
}

.objective-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-primary);
  color: var(--white);
}

.objective-item:nth-child(even) .objective-icon {
  background: var(--red-primary);
}

.objective-item h3 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.objective-item p {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===========================
   6. NOS ACTIONS
   =========================== */
.actions {
  background: var(--white);
}

.actions-grid {
  display: grid;
  gap: 24px;
}

.action-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.action-card-image {
  height: 200px;
  overflow: hidden;
}

.action-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover .action-card-image img {
  transform: scale(1.08);
}

.action-card-body {
  padding: 24px;
}

.action-card-body .action-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.action-card:nth-child(2) .action-tag {
  background: var(--red-primary);
}

.action-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.action-card-body p {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.6;
}

.actions-quote {
  margin-top: 48px;
  text-align: center;
}

.actions-quote blockquote {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

.actions-quote blockquote::before {
  content: '\201C';
  font-size: 4rem;
  font-style: normal;
  color: var(--red-primary);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ===========================
   7. VALEURS
   =========================== */
.values {
  background: var(--off-white);
  overflow: hidden;
}

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

.value-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid var(--blue-light);
}

.value-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.value-card:nth-child(1) .value-icon { background: #E8F4FD; color: #2D7DD2; }
.value-card:nth-child(2) .value-icon { background: #FEF0EF; color: var(--red-primary); }
.value-card:nth-child(3) .value-icon { background: #E8F8E8; color: #3D8B37; }
.value-card:nth-child(4) .value-icon { background: #F3EEFA; color: #7C4DBA; }
.value-card:nth-child(5) .value-icon { background: #FFF4E5; color: #D4880F; }
.value-card:nth-child(6) .value-icon { background: #EBF1FA; color: var(--blue-primary); }

.value-card h3 {
  font-size: 0.82rem;
  color: var(--charcoal);
  font-weight: 600;
}

/* ===========================
   8. PARTENAIRES
   =========================== */
.partners {
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.partner-card {
  padding: 28px 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.partner-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue-primary);
  margin: 0 auto 12px;
}

.partner-card h3 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.partner-card p {
  color: var(--slate);
  font-size: 0.78rem;
}

/* ===========================
   9. CONTACT
   =========================== */
.contact {
  background: var(--blue-dark);
  color: var(--white);
  overflow: hidden;
}

/* Decorative circle */
.contact::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(230, 50, 40, 0.06);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}

.contact .section-header h2 {
  color: var(--white);
}

.contact .section-header .section-line {
  background: var(--red-primary);
}

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

.contact-grid {
  display: grid;
  gap: 40px;
}

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

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

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.contact-item h3 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.contact-item a:hover {
  color: var(--white);
}

.contact-cta {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.contact-cta h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ===========================
   10. FOOTER
   =========================== */
.footer {
  background: #091625;
  color: rgba(255, 255, 255, 0.55);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-legal h4 {
  color: rgba(255,255,255,0.9);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-legal p {
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
}

/* ===========================
   RESPONSIVE - Tablet (768px+)
   =========================== */
@media (min-width: 768px) {
  .container { padding: 0 40px; }
  .section { padding: 88px 0; }
  .section-header h2 { font-size: 2.2rem; }

  /* Nav */
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-right .nav-cta { display: inline-flex; }

  /* Hero */
  .hero h1 { font-size: 2.8rem; }
  .hero-desc { font-size: 1.1rem; }
  .hero-btns { flex-direction: row; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .about-text h2 { font-size: 1.8rem; }

  /* Mission */
  .mission-pillars { grid-template-columns: repeat(3, 1fr); }

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

  /* Actions */
  .actions-grid { grid-template-columns: repeat(3, 1fr); }

  /* Values */
  .values-grid { grid-template-columns: repeat(3, 1fr); }

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ===========================
   RESPONSIVE - Desktop (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .section { padding: 100px 0; }
  .section-header h2 { font-size: 2.5rem; }

  /* Hero */
  .hero h1 { font-size: 3.2rem; }
  .hero-desc { font-size: 1.15rem; }

  .hero-inner {
    grid-template-columns: 1fr 340px;
    gap: 60px;
  }

  .hero-cards {
    display: block;
  }

  /* About */
  .about-grid { gap: 64px; }
  .about-text h2 { font-size: 2rem; }

  /* Objectives */
  .objectives-grid { grid-template-columns: repeat(3, 1fr); }

  /* Mission angle bigger */
  .mission::before { height: 80px; }
  .objectives::before { height: 80px; }
}

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

.hero-float-card:first-child {
  animation: float 5s ease-in-out infinite;
}

.hero-float-card:last-child {
  animation: float 5s ease-in-out infinite 1.5s;
}

/* AOS overrides */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
