/* ============================================
   Cap sur ma voie — Site vitrine
   Palette : Ocean / Coral / Sand
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --ocean-50: #f0fafb;
  --ocean-100: #d0f0f4;
  --ocean-200: #a3e0e9;
  --ocean-300: #67c7d6;
  --ocean-400: #36a9bc;
  --ocean-500: #1e8da1;
  --ocean-600: #1a7187;
  --ocean-700: #1b5b6e;
  --ocean-800: #1e4b5b;
  --ocean-900: #0f3340;
  --ocean-950: #0a1f2e;

  --coral-50: #fff5ed;
  --coral-100: #ffe8d5;
  --coral-200: #fecbaa;
  --coral-300: #fda674;
  --coral-400: #fb7a3c;
  --coral-500: #f95a18;
  --coral-600: #e63f0d;
  --coral-700: #be2e0d;

  --sand-50: #fefcf7;
  --sand-100: #fdf6e8;
  --sand-200: #faecc8;
  --sand-300: #f5dda0;
  --sand-400: #efc86e;
  --sand-500: #e9b349;
  --sand-600: #d4952d;

  --night: #0a1628;
  --cream: #FFF9F2;

  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ocean-900);
  background-color: var(--cream);
  background-image: url('../images/texture-paper.jpg');
  background-blend-mode: soft-light;
  background-size: 600px;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--coral-500);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--coral-600);
}

/* --- Utilitaires --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: linear-gradient(135deg, var(--ocean-950), var(--ocean-900));
  color: #fff;
}

.section--light {
  background: var(--ocean-50);
}

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

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.6rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 12px; }

.gradient-text {
  background: linear-gradient(135deg, var(--coral-400), var(--sand-400), var(--coral-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral-500);
  margin-bottom: 12px;
}

.section--dark .subtitle-tag {
  color: var(--coral-400);
}

.section-desc {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.section--dark .section-desc {
  color: var(--ocean-300);
}

.caveat {
  font-family: 'Caveat', cursive;
}

.bold-word {
  font-weight: 800;
  color: var(--ocean-800);
}

.section--dark .bold-word {
  color: var(--coral-400);
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--coral {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 90, 24, 0.3);
}

.btn--coral:hover {
  box-shadow: 0 6px 30px rgba(249, 90, 24, 0.45);
  color: #fff;
}

.btn--white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn--white:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.btn--ocean {
  background: linear-gradient(135deg, var(--ocean-500), var(--ocean-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 141, 161, 0.3);
}

.btn--ocean:hover {
  box-shadow: 0 6px 30px rgba(30, 141, 161, 0.45);
  color: #fff;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

.header.scrolled {
  background: rgba(255, 249, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s;
}

.header:not(.scrolled) .logo img {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.header.scrolled .logo img {
  box-shadow: 0 0 0 1px var(--ocean-100);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean-900);
  transition: color 0.3s;
}

.header:not(.scrolled) .logo-text {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav a {
  color: var(--ocean-900);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s;
  text-decoration: none;
}

.header:not(.scrolled) .nav a {
  color: rgba(255,255,255,0.85);
}

.nav a:hover {
  color: var(--coral-500);
}

.nav .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ocean-900);
  margin: 6px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,31,46,0.85) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero .tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--sand-300);
  margin-bottom: 24px;
}

.hero .hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

/* Wave dividers */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider--flip {
  transform: rotate(180deg);
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--ocean-100);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 141, 161, 0.12);
}

.stat-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
}

.stat-card:nth-child(1) .icon { background: var(--ocean-100); color: var(--ocean-600); }
.stat-card:nth-child(2) .icon { background: var(--coral-100); color: var(--coral-600); }
.stat-card:nth-child(3) .icon { background: var(--sand-100); color: var(--sand-600); }
.stat-card:nth-child(4) .icon { background: var(--ocean-100); color: var(--ocean-600); }

.stat-card .nombre {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--ocean-600), var(--ocean-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .label {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.stat-card .source {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 8px;
}

/* --- Insights (dark section) --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.insight-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.insight-col .emoji {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.insight-col h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.insight-col ul {
  list-style: none;
  padding: 0;
}

.insight-col li {
  padding: 8px 0;
  color: var(--ocean-200);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  padding-left: 20px;
}

.insight-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-400);
}

.insight-box {
  margin-top: 40px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(249,90,24,0.15), rgba(233,179,73,0.1));
  border: 1px solid rgba(249,90,24,0.2);
  border-radius: var(--radius);
  text-align: center;
}

.insight-box p {
  color: var(--sand-300);
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- Mission --- */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mission-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--ocean-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 141, 161, 0.1);
}

.mission-card .emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.mission-card h3 {
  color: var(--ocean-800);
  margin-bottom: 12px;
}

.mission-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Différenciation */
.diff-card {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--ocean-950), var(--ocean-900));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}

.diff-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}

.diff-list {
  display: grid;
  gap: 12px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.diff-item .diff-emoji {
  font-size: 1.3rem;
  min-width: 32px;
  text-align: center;
}

.diff-item .diff-label {
  font-size: 0.9rem;
  color: var(--ocean-300);
  min-width: 130px;
}

.diff-item .diff-value {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--ocean-100);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--ocean-400), var(--ocean-500)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral-400), var(--coral-500)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--sand-400), var(--sand-500)); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card .emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  color: var(--ocean-800);
  margin-bottom: 8px;
}

.service-card .service-desc {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ocean-700);
  border-bottom: 1px solid var(--ocean-50);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: "\2713";
  color: var(--ocean-500);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Marquee outils */
.tools-marquee {
  margin-top: 48px;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.tools-marquee::before,
.tools-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.tools-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.tools-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--ocean-100);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ocean-700);
  white-space: nowrap;
}

/* --- Témoignage --- */
.temoignage-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ocean-100);
  text-align: center;
  position: relative;
}

.temoignage-wrap .quote-icon {
  font-size: 3rem;
  color: var(--coral-400);
  margin-bottom: 20px;
  display: block;
}

.temoignage-wrap blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--ocean-800);
  margin-bottom: 24px;
}

.temoignage-wrap blockquote strong {
  color: var(--coral-500);
}

.temoignage-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-400), var(--sand-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.author-info .name {
  font-weight: 600;
  color: var(--ocean-900);
  font-size: 0.95rem;
}

.author-info .detail {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* --- Equipe --- */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.membre-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--ocean-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

.membre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.membre-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.membre-card:nth-child(1) .membre-avatar { background: linear-gradient(135deg, var(--coral-400), var(--coral-500)); }
.membre-card:nth-child(2) .membre-avatar { background: linear-gradient(135deg, var(--ocean-400), var(--ocean-500)); }
.membre-card:nth-child(3) .membre-avatar { background: linear-gradient(135deg, var(--sand-400), var(--sand-500)); }
.membre-card:nth-child(4) .membre-avatar { background: linear-gradient(135deg, var(--coral-500), var(--sand-400)); }

.membre-card .role-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--ocean-50);
  color: var(--ocean-600);
  margin-bottom: 12px;
}

.membre-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ocean-900);
}

.membre-card .bio {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.membre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.membre-tags span {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--coral-50);
  color: var(--coral-600);
  font-weight: 500;
}

.ambition-box {
  margin-top: 40px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--ocean-50), var(--sand-50));
  border: 1px solid var(--ocean-100);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  color: var(--ocean-700);
  font-weight: 500;
}

/* --- Roadmap --- */
.timeline {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ocean-400), var(--sand-400));
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral-500);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--coral-200);
}

.timeline-item .date {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--coral-500);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 1.15rem;
  color: var(--ocean-800);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.7;
}

/* --- Contact --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--ocean-950), var(--ocean-900));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

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

.contact-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item .ci-label {
  font-size: 0.8rem;
  color: var(--ocean-300);
  display: block;
}

.contact-item .ci-value {
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-item a {
  color: #fff;
}

.pour-qui {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pour-qui h4 {
  font-size: 1rem;
  color: var(--sand-300);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.pour-qui li {
  list-style: none;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ocean-200);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--ocean-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ocean-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--ocean-100);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--ocean-50);
  color: var(--ocean-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean-400);
  box-shadow: 0 0 0 3px rgba(30, 141, 161, 0.12);
}

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

.form-success {
  display: none;
  padding: 20px;
  background: var(--ocean-50);
  border: 1px solid var(--ocean-200);
  border-radius: 12px;
  text-align: center;
  color: var(--ocean-700);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--night);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 24px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer .logo-text {
  color: #fff;
}

.footer .logo img {
  border-radius: 8px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--sand-400);
  margin-top: 8px;
}

.footer-nav a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--coral-400);
}

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

.footer-heart {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .stats-grid,
  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .mission-cards,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,249,242,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 105;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    color: var(--ocean-900) !important;
    font-size: 1.2rem;
    padding: 16px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero .tagline { font-size: 1.3rem; }
  .hero { min-height: 90vh; }
  .section { padding: 60px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .equipe-grid { grid-template-columns: 1fr; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .temoignage-wrap {
    padding: 32px 20px;
  }

  .diff-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .diff-item .diff-label {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
