:root {
  --blue-dark: #1f4e79;
  --blue-deep: #143653;
  --blue-soft: #eaf4fb;
  --blue-light: #f7fbfe;
  --turquoise: #3fa9c7;

  --green-cta: #92e036;
  --green-cta-dark: #6fb820;

  --gold: #c79a3b;
  --gold-dark: #a67c2d;
  --text: #263238;
  --muted: #687985;
  --white: #ffffff;
  --border: #d8e6ee;
  --success: #15803d;
  --error: #b91c1c;

  --shadow-soft: 0 20px 45px rgba(20, 54, 83, 0.14);
  --shadow-card: 0 10px 28px rgba(20, 54, 83, 0.08);
  --shadow-hover: 0 22px 48px rgba(20, 54, 83, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1140px;

  --font-main: Arial, Helvetica, sans-serif;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blue-light);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ANIMATIONS */

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal-item:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-group .reveal-item:nth-child(2) {
  transition-delay: 0.14s;
}

.reveal-group .reveal-item:nth-child(3) {
  transition-delay: 0.23s;
}

.reveal-group .reveal-item:nth-child(4) {
  transition-delay: 0.32s;
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-nav a {
  position: relative;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-dark);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--green-cta);
}

.nav-don {
  background: var(--green-cta);
  color: var(--blue-deep) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-don:hover {
  background: var(--green-cta-dark);
  color: var(--blue-deep) !important;
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-dark);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 10px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 54, 83, 0.14);
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-don {
  background: var(--green-cta);
  color: var(--white);
}

.btn-don:hover {
  background: var(--green-cta-dark);
}

/* HERO */

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.92), rgba(31, 78, 121, 0.68), rgba(31, 78, 121, 0.18)),
    url("../images/hero-neryaale.jpg") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(63, 169, 199, 0.23), transparent 34%),
    linear-gradient(0deg, rgba(20, 54, 83, 0.16), rgba(20, 54, 83, 0.16));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding: 90px 0;
  color: var(--white);
}

.hero-label {
  margin-bottom: 18px;
  color: #dff2f9;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-contact a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  text-decoration: none;
}

/* SECTIONS */

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--blue-soft);
}

.section-label {
  margin-bottom: 12px;
  color: var(--green-cta);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-label {
  color: #f4d58a;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.intro-title h2,
.trust-content h2,
.form-intro h2,
.don-content h2 {
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading p,
.intro-text p,
.trust-content p,
.form-intro p,
.don-content p {
  color: var(--muted);
  font-size: 18px;
}

.center-button {
  margin-top: 34px;
  text-align: center;
}

/* INTRO */

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-text p + p {
  margin-top: 18px;
}

/* MISSIONS */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-hover);
}

.mission-card:hover .mission-image {
  transform: scale(1.08);
}

.mission-image {
  min-height: 155px;
  background: linear-gradient(135deg, var(--blue-dark), var(--turquoise));
  transition: transform 0.6s ease;
}

.mission-image-1 {
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.86), rgba(63, 169, 199, 0.76)),
    url("../images/mission-informer.jpg") center / cover no-repeat;
}

.mission-image-2 {
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.86), rgba(199, 154, 59, 0.68)),
    url("../images/mission-conseiller.jpg") center / cover no-repeat;
}

.mission-image-3 {
  background:
    linear-gradient(135deg, rgba(20, 54, 83, 0.88), rgba(63, 169, 199, 0.7)),
    url("../images/mission-accompagner.jpg") center / cover no-repeat;
}

.mission-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: var(--white);
}

.mission-content h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 26px;
}

.mission-content p {
  margin-bottom: 20px;
  color: var(--muted);
}

.mission-content a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.mission-content a:hover {
  color: var(--green-cta-dark);
}

/* TRUST */

.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  gap: 60px;
  align-items: center;
}

.trust-content p + p {
  margin-top: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green-cta-dark);
}

.trust-card {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 34px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.counters-box {
  animation: gentleFloat 6s ease-in-out infinite;
}

.trust-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:first-child {
  padding-top: 0;
}

.trust-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 38px;
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
}

/* PATH */

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.path-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63, 169, 199, 0.12), rgba(199, 154, 59, 0.1));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.path-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(31, 78, 121, 0.22);
  box-shadow: var(--shadow-hover);
}

.path-card:hover::before {
  opacity: 1;
}

.path-card span,
.path-card h3,
.path-card p {
  position: relative;
  z-index: 2;
}

.path-card span {
  margin-bottom: 24px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

.path-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 21px;
  line-height: 1.25;
}

.path-card p {
  color: var(--muted);
}

/* VIDEOS */

.video-section {
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.video-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--blue-deep);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content {
  padding: 26px;
}

.video-content h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 23px;
}

.video-content p {
  color: var(--muted);
}

/* RESOURCES */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.resource-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.resource-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.resource-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 23px;
}

.resource-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.resource-card a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

/* BLOG PREVIEW */

.blog-preview-section {
  background: var(--white);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-category {
  margin-bottom: 8px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
}

.blog-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

/* TESTIMONIAL */

.testimonial-section {
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.06), rgba(199, 154, 59, 0.08)),
    var(--white);
}

.testimonial-inner {
  max-width: 860px;
  text-align: center;
}

.testimonial-inner blockquote {
  margin: 8px auto 20px;
  color: var(--blue-deep);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.28;
}

.testimonial-author {
  color: var(--muted);
  font-weight: 900;
}

/* DON */

.don-section {
  background: var(--blue-deep);
  color: var(--white);
  padding: 58px 0;
}

.don-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.don-content {
  max-width: 780px;
}

.don-content h2 {
  color: var(--white);
}

.don-content p {
  color: rgba(255, 255, 255, 0.78);
}

.don-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  flex-shrink: 0;
}

.don-small-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.don-small-link:hover {
  color: var(--white);
}

/* FORM */

.form-section {
  background: var(--blue-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-box {
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-box p {
  color: var(--muted);
  font-size: 16px;
}

.contact-box p + p {
  margin-top: 8px;
}

.contact-box a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.callback-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 18px;
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-weight: 900;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  padding: 14px 15px;
  transition: 0.2s ease;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(63, 169, 199, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-message {
  min-height: 22px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--error);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* FOOTER */

.site-footer {
  background: #ebeff2;
  color: var(--white);
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 38px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
  text-decoration: none;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-logo-text strong {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-logo-text small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 17px;
}

.footer-column a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .main-nav {
    gap: 11px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .nav-don {
    margin-top: 10px;
    padding: 13px 16px !important;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.78)),
      url("../images/hero-neryaale.jpg") center / cover no-repeat;
  }

  .intro-grid,
  .mission-grid,
  .trust-grid,
  .form-grid,
  .resource-grid,
  .blog-preview-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .don-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .don-actions {
    width: 100%;
    display: grid;
  }

  .don-actions .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo span {
    font-size: 19px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-contact {
    display: grid;
    gap: 7px;
  }

  .section {
    padding: 64px 0;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .two-fields {
    grid-template-columns: 1fr;
  }

  .callback-form {
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================
   PAGES INTERNES
============================ */

.inner-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.inner-hero-comprendre {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.62), rgba(31, 78, 121, 0.18)),
    url("../images/hero-comprendre.jpg") center / cover no-repeat;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 32%, rgba(63, 169, 199, 0.26), transparent 34%),
    linear-gradient(0deg, rgba(20, 54, 83, 0.14), rgba(20, 54, 83, 0.14));
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 82px 0;
}

.inner-hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.inner-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* SOMMAIRE */

.guide-summary-section {
  background: var(--white);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.comprendre-summary-section .summary-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.summary-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.summary-card:hover {
  transform: translateY(-7px);
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.summary-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

.summary-card h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.25;
}

.summary-card p {
  color: var(--muted);
}

/* EDITORIAL LAYOUT */

.editorial-section {
  background: var(--white);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.editorial-side {
  position: sticky;
  top: 110px;
}

.editorial-side h2 {
  color: var(--blue-deep);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.editorial-content {
  color: var(--muted);
  font-size: 18px;
}

.editorial-content p + p {
  margin-top: 18px;
}

.highlight-box {
  margin-top: 30px;
  padding: 28px;
  background: var(--blue-soft);
  border-left: 5px solid var(--green-cta);
  border-radius: var(--radius-md);
}

.highlight-box h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 23px;
}

.highlight-box p {
  color: var(--muted);
}

/* COMPARISON */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.comparison-card-strong {
  border-color: rgba(199, 154, 59, 0.45);
  box-shadow: var(--shadow-soft);
}

.comparison-card h3 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 29px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.comparison-card li:last-child {
  border-bottom: 0;
}

.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green-cta);
  font-size: 26px;
  line-height: 1;
}

.comparison-vs {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--green-cta);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.container-narrow {
  max-width: 820px;
  margin: 38px auto 0;
  text-align: center;
}

.large-note {
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
}

/* PRINCIPLES */

.principles-section {
  background: var(--white);
}

.principles-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principle-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.06), rgba(63, 169, 199, 0.08)),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.principle-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.principle-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--blue-deep);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.principle-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 28px;
}

.principle-card p {
  color: var(--muted);
  font-size: 17px;
}

.quote-panel {
  max-width: 980px;
  margin: 38px auto 0;
  padding: 34px;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

/* OBJECTIVES TIMELINE */

.objectives-timeline {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.objective-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: start;
}

.objective-marker {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--green-cta);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.objective-content {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.objective-content h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 28px;
}

.objective-content p {
  color: var(--muted);
}

.objective-content p + p {
  margin-top: 14px;
}

/* CHECKLIST */

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.check-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.check-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.check-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

.check-card h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 21px;
  line-height: 1.25;
}

.check-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* RESOURCE FOCUS */

.resource-focus-section {
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.06), rgba(199, 154, 59, 0.08)),
    var(--white);
}

.focus-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.focus-content h2 {
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.focus-content p {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
}

.focus-cards {
  display: grid;
  gap: 16px;
}

.mini-focus-card {
  display: block;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.mini-focus-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.mini-focus-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-focus-card strong {
  color: var(--blue-deep);
  font-size: 22px;
}

/* NEXT STEP */

.next-step-section {
  padding: 62px 0;
  background: var(--blue-deep);
  color: var(--white);
}

.next-step-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.next-step-box h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.next-step-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.next-step-actions {
  display: grid;
  gap: 12px;
  flex-shrink: 0;
}

.next-step-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.next-step-link:hover {
  color: var(--white);
}

/* RESPONSIVE PAGES INTERNES */

@media (max-width: 1100px) {
  .summary-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-vs {
    margin: 0 auto;
  }
}

@media (max-width: 940px) {
  .inner-hero {
    min-height: 420px;
  }

  .editorial-layout,
  .focus-layout,
  .principles-layout {
    grid-template-columns: 1fr;
  }

  .editorial-side {
    position: static;
  }

  .next-step-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .next-step-actions {
    width: 100%;
  }

  .next-step-actions .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .inner-hero {
    min-height: 390px;
  }

  .inner-hero-content {
    padding: 66px 0;
  }

  .inner-hero-content h1 {
    font-size: 40px;
  }

  .inner-hero-content p {
    font-size: 17px;
  }

  .inner-hero-actions .btn {
    width: 100%;
  }

  .summary-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .objective-step {
    grid-template-columns: 1fr;
  }

  .objective-marker {
    width: 54px;
    height: 54px;
  }

  .quote-panel p {
    font-size: 18px;
  }
}
/* ============================
   PAGE CHOISIR UNE ECOLE
============================ */

.inner-hero-choisir {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.58), rgba(31, 78, 121, 0.14)),
    url("../images/hero-choisir-ecole.jpg") center / cover no-repeat;
}

/* DECISION */

.decision-section {
  background: var(--white);
}

.decision-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 58px;
  align-items: center;
}

.decision-main h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.decision-main p {
  color: var(--muted);
  font-size: 18px;
}

.decision-main p + p {
  margin-top: 16px;
}

.decision-aside {
  position: relative;
}

.aside-quote {
  padding: 34px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.aside-quote p {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.aside-quote strong {
  color: var(--green-cta-dark);
}

/* CRITERIA */

.criteria-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.criteria-column {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.criteria-column-strong {
  border-color: rgba(199, 154, 59, 0.5);
  box-shadow: var(--shadow-soft);
}

.criteria-header {
  padding: 28px;
  background: var(--blue-deep);
  color: var(--white);
}

.criteria-column-strong .criteria-header {
  background: var(--green-cta);
}

.criteria-header span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.criteria-header h3 {
  font-size: 28px;
  line-height: 1.2;
}

.criteria-list {
  list-style: none;
  counter-reset: item;
  padding: 6px 28px 24px;
}

.criteria-list li {
  position: relative;
  padding: 20px 0 20px 48px;
  border-bottom: 1px solid var(--border);
  counter-increment: item;
}

.criteria-list li:last-child {
  border-bottom: 0;
}

.criteria-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.criteria-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 18px;
}

.criteria-list p {
  color: var(--muted);
  font-size: 15.5px;
}

.criteria-vs {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--green-cta);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.source-note {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* IDENTITY SECTION */

.identity-section {
  background: var(--blue-deep);
  color: var(--white);
  padding: 76px 0;
}

.identity-box {
  max-width: 960px;
}

.identity-content h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.identity-content p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.identity-content p + p {
  margin-top: 16px;
}

/* WHY CHOICE */

.why-choice-section {
  background: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.why-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.why-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.why-content h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.why-content p {
  color: var(--muted);
  font-size: 18px;
}

.why-content p + p {
  margin-top: 16px;
}

/* MISTAKES */

.mistake-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mistake-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.mistake-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.mistake-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

.mistake-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 21px;
  line-height: 1.25;
}

.mistake-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* METHOD */

.method-section {
  background: var(--white);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.method-step {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.06), rgba(63, 169, 199, 0.08)),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.method-step:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.method-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--blue-deep);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.method-step h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.25;
}

.method-step p {
  color: var(--muted);
  font-size: 15.8px;
}

/* CHOICE CHECKLIST */

.choice-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.choice-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.choice-check-item span {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  flex-shrink: 0;
  border: 3px solid var(--green-cta);
  border-radius: 50%;
  position: relative;
}

.choice-check-item span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--green-cta);
  border-bottom: 3px solid var(--green-cta);
  transform: rotate(42deg);
}

.choice-check-item p {
  color: var(--blue-deep);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

/* TESTIMONIAL DEEP */

.testimonial-deep-section {
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.06), rgba(199, 154, 59, 0.08)),
    var(--white);
}

.testimonial-deep-box {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-deep-box blockquote {
  margin: 10px auto 20px;
  color: var(--blue-deep);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.25;
}

/* RESPONSIVE PAGE CHOISIR */

@media (max-width: 1100px) {
  .criteria-comparison,
  .decision-layout,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .criteria-vs {
    margin: 0 auto;
  }

  .mistake-grid,
  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-visual img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .mistake-grid,
  .method-steps,
  .choice-checklist {
    grid-template-columns: 1fr;
  }

  .criteria-header h3 {
    font-size: 24px;
  }

  .why-visual img {
    height: 260px;
  }

  .identity-section {
    padding: 62px 0;
  }

  .identity-content p {
    font-size: 17px;
  }
}
/* ============================
   PAGE CONSEILS AUX PARENTS
============================ */

.inner-hero-conseils {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.56), rgba(31, 78, 121, 0.12)),
    url("../images/hero-conseils-parents.jpg") center / cover no-repeat;
}

/* INTRO */

.parent-intro-section {
  background: var(--white);
}

.parent-intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 58px;
  align-items: center;
}

.parent-intro-main h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.parent-intro-main p {
  color: var(--muted);
  font-size: 18px;
}

.parent-intro-main p + p {
  margin-top: 16px;
}

.parent-intro-box {
  padding: 34px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.parent-intro-box span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.parent-intro-box strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 34px;
  line-height: 1.15;
}

.parent-intro-box p {
  color: var(--muted);
}

/* HUB */

.parent-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.parent-hub-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.parent-hub-card:hover {
  transform: translateY(-8px);
  background: var(--blue-soft);
  box-shadow: var(--shadow-hover);
}

.parent-hub-card span {
  margin-bottom: 28px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

.parent-hub-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.25;
}

.parent-hub-card p {
  color: var(--muted);
  font-size: 15.8px;
}

/* PREMIERE ANNEE */

.first-year-section {
  background: var(--white);
}

.first-year-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.first-year-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.first-year-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.first-year-visual:hover img {
  transform: scale(1.05);
}

.first-year-content h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.first-year-content p {
  color: var(--muted);
  font-size: 18px;
}

.first-year-content p + p {
  margin-top: 16px;
}

.first-year-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.first-year-points div {
  padding: 18px 20px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.first-year-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 20px;
}

.first-year-points span {
  color: var(--muted);
}

/* ADVICE LIST */

.parent-advice-list {
  display: grid;
  gap: 16px;
}

.parent-advice-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.parent-advice-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
}

.advice-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--green-cta);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.parent-advice-item h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.25;
}

.parent-advice-item p {
  color: var(--muted);
  font-size: 17px;
}

/* PRACTICAL */

.practical-section {
  background: var(--white);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.practical-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.05), rgba(63, 169, 199, 0.08)),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.practical-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.practical-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.25;
}

.practical-card p {
  color: var(--muted);
  font-size: 15.8px;
}

/* VIDEOS */

.parent-video-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.parent-video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.parent-video-text h3 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 34px;
  line-height: 1.15;
}

.parent-video-text p {
  color: var(--muted);
  font-size: 18px;
}

.parent-video-text p + p {
  margin-top: 16px;
}

/* GUIDES */

.guides-section {
  background: var(--white);
}

.guides-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-download-card {
  padding: 32px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.guide-download-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.guide-download-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-download-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1.2;
}

.guide-download-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 58px;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.faq-intro p {
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-cta-dark);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* RESPONSIVE CONSEILS */

@media (max-width: 1100px) {
  .parent-hub-grid,
  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guides-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .parent-intro-layout,
  .first-year-layout,
  .parent-video-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .first-year-visual img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .parent-hub-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .parent-advice-item {
    grid-template-columns: 1fr;
  }

  .parent-advice-item:hover {
    transform: translateY(-6px);
  }

  .parent-intro-box strong {
    font-size: 28px;
  }

  .first-year-visual img {
    height: 260px;
  }

  .parent-video-text h3 {
    font-size: 28px;
  }
}
/* ============================
   PAGE ACTUALITES
============================ */

.inner-hero-actualites {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.56), rgba(31, 78, 121, 0.12)),
    url("../images/hero-actualites.jpg") center / cover no-repeat;
}

/* INTRO */

.news-intro-section {
  background: var(--white);
}

.news-intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 58px;
  align-items: center;
}

.news-intro-content h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.news-intro-content p {
  color: var(--muted);
  font-size: 18px;
}

.news-intro-content p + p {
  margin-top: 16px;
}

.news-intro-card {
  padding: 34px;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.news-intro-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-intro-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.15;
}

.news-intro-card p {
  color: rgba(255, 255, 255, 0.82);
}

/* CATEGORIES */

.news-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-category-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.news-category-card:hover {
  transform: translateY(-8px);
  background: var(--blue-soft);
  box-shadow: var(--shadow-hover);
}

.news-category-card span {
  margin-bottom: 34px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

.news-category-card h3 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 28px;
  line-height: 1.2;
}

.news-category-card p {
  color: var(--muted);
}

/* NEWS SECTIONS */

.news-section {
  background: var(--white);
}

.news-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 36px;
}

.news-section-heading h2 {
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.news-feature-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.news-feature-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.news-feature-image {
  overflow: hidden;
}

.news-feature-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-feature-card:hover .news-feature-image img {
  transform: scale(1.05);
}

.news-feature-content {
  padding: 32px;
}

.news-feature-content span,
.news-small-card span,
.event-content span,
.update-main-card span,
.update-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-feature-content h3 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 32px;
  line-height: 1.18;
}

.news-feature-content p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.news-side-list {
  display: grid;
  gap: 18px;
}

.news-small-card {
  padding: 28px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.news-small-card h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.25;
}

.news-small-card p {
  color: var(--muted);
}

/* EVENTS */

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.event-image {
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-content {
  padding: 26px;
}

.event-content h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.22;
}

.event-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

/* UPDATES */

.updates-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.update-main-card {
  padding: 38px;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.update-main-card span {
  color: var(--green-cta);
}

.update-main-card h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.update-main-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.update-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.update-links a {
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  transition: background 0.25s ease;
}

.update-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.update-list {
  display: grid;
  gap: 18px;
}

.update-item {
  padding: 26px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.update-item h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.25;
}

.update-item p {
  color: var(--muted);
}

/* NEWSLETTER */

.newsletter-section {
  background:
    linear-gradient(135deg, rgba(31, 78, 121, 0.06), rgba(199, 154, 59, 0.08)),
    var(--white);
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
  padding: 46px;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.newsletter-content h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 900;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.newsletter-form input {
  width: 100%;
  padding: 15px 16px;
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
}

/* RESPONSIVE ACTUALITES */

@media (max-width: 1100px) {
  .news-intro-layout,
  .news-feature-layout,
  .updates-layout,
  .newsletter-box {
    grid-template-columns: 1fr;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .news-category-grid {
    grid-template-columns: 1fr;
  }

  .news-section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .news-intro-card strong {
    font-size: 28px;
  }

  .news-feature-image img,
  .event-image img {
    height: 240px;
  }

  .news-feature-content,
  .update-main-card,
  .newsletter-box {
    padding: 28px;
  }
}
/* ============================
   HEADER MENU PLUS
============================ */

.main-nav {
  gap: 18px;
}

.main-nav a {
  white-space: nowrap;
}

.nav-more {
  position: relative;
}

.nav-more-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 8px 0;
}

.nav-more-button span {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.nav-more.open .nav-more-button span {
  transform: rotate(180deg);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 50;
  min-width: 210px;
  display: none;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
}

.nav-more.open .nav-more-menu {
  display: grid;
}

.nav-more-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 800;
}

.nav-more-menu a:hover,
.nav-more-menu a.active {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

/* HEADER PLUS RESPONSIVE */

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a,
  .nav-more-button {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .nav-more {
    width: 100%;
  }

  .nav-more-button {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }

  .nav-more-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
    border-radius: var(--radius-sm);
  }

  .nav-more-menu a {
    padding: 11px 14px;
  }
}
/* ============================
   DIRECTION GRAPHIQUE CHALEUREUSE
   Ner Yaale - Association humaine
============================ */

:root {
  --blue-dark: #24577d;
  --blue-deep: #173f5f;
  --blue-soft: #eef7fb;
  --blue-light: #f8fcfe;

  --cream: #fbf6ed;
  --cream-light: #fffaf2;
  --sand: #ead8b8;
  --sand-soft: #f5ead7;

  --green-cta: #92e036;
  --green-cta-dark: #6fb820;

  --gold: #c99a42;
  --gold-dark: #a87826;

  --text: #2d3436;
  --muted: #6d7a80;

  --white: #ffffff;
  --border: rgba(23, 63, 95, 0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --shadow-card: 0 14px 34px rgba(23, 63, 95, 0.08);
  --shadow-soft: 0 24px 70px rgba(23, 63, 95, 0.12);
  --shadow-hover: 0 28px 80px rgba(23, 63, 95, 0.16);
}

/* GLOBAL */

body {
  background: var(--cream-light);
  color: var(--text);
}

.section {
  position: relative;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(234, 216, 184, 0.35), transparent 28%),
    linear-gradient(180deg, var(--cream-light), var(--blue-soft));
}

.section-heading h2,
.intro-title h2,
.editorial-side h2,
.decision-main h2,
.accompany-intro-content h2,
.parent-intro-main h2,
.news-intro-content h2 {
  letter-spacing: -0.02em;
}

/* HEADER PLUS CHALEUREUX */

.site-header {
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 63, 95, 0.09);
}

.logo span {
  color: var(--blue-deep);
  font-weight: 900;
}

.main-nav a,
.nav-more-button {
  color: var(--blue-deep);
}

.main-nav a:hover,
.main-nav a.active,
.nav-more-button:hover {
  color: var(--green-cta-dark);
}

.nav-don {
  background: var(--green-cta);
  color: var(--white) !important;
  box-shadow: 0 10px 26px rgba(201, 154, 66, 0.28);
}

.nav-don:hover {
  background: var(--green-cta-dark);
  transform: translateY(-2px);
}

/* HERO ACCUEIL PLUS HUMAIN */

.hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(23, 63, 95, 0.86), rgba(23, 63, 95, 0.48), rgba(23, 63, 95, 0.16)),
    url("../images/hero-neryaale.jpg") center / cover no-repeat;
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 34%, rgba(234, 216, 184, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(23, 63, 95, 0.1), rgba(23, 63, 95, 0.35));
}

.hero-label,
.section-label {
  color: var(--green-cta);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.light-label {
  color: var(--sand);
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 25px;
}

.hero-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-contact {
  margin-top: 30px;
  padding: 16px 20px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 250, 242, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-contact a,
.hero-contact span {
  color: rgba(255, 255, 255, 0.9);
}

/* HERO PAGES INTERNES PLUS DOUX */

.inner-hero {
  min-height: 500px;
}

.inner-hero-content {
  max-width: 860px;
}

.inner-hero-content h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.inner-hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

.inner-hero-overlay {
  background:
    radial-gradient(circle at 22% 30%, rgba(234, 216, 184, 0.28), transparent 34%),
    linear-gradient(0deg, rgba(23, 63, 95, 0.14), rgba(23, 63, 95, 0.14));
}

/* BOUTONS PLUS CHALEUREUX */

.btn {
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  background: var(--green-cta);
  color: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(201, 154, 66, 0.28);
}

.btn-primary:hover {
  background: var(--green-cta-dark);
  color: var(--blue-deep);
  transform: translateY(-3px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-3px);
}

.btn-don {
  background: var(--green-cta);
  color: var(--white);
}

.btn-don:hover {
  background: var(--green-cta-dark);
}

/* CARTES PLUS ASSOCIATIVES */

.mission-card,
.path-card,
.resource-card,
.blog-card,
.summary-card,
.principle-card,
.check-card,
.criteria-column,
.method-step,
.mistake-card,
.accompany-pillar,
.parent-hub-card,
.practical-card,
.guide-download-card,
.news-category-card,
.event-card,
.news-small-card,
.update-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 63, 95, 0.1);
  box-shadow: 0 12px 34px rgba(23, 63, 95, 0.07);
}

.mission-card:hover,
.path-card:hover,
.resource-card:hover,
.blog-card:hover,
.summary-card:hover,
.principle-card:hover,
.check-card:hover,
.criteria-column:hover,
.method-step:hover,
.mistake-card:hover,
.accompany-pillar:hover,
.parent-hub-card:hover,
.practical-card:hover,
.guide-download-card:hover,
.news-category-card:hover,
.event-card:hover {
  box-shadow: 0 22px 60px rgba(23, 63, 95, 0.13);
}

/* BLOCS HUMAINS */

.highlight-box,
.parent-intro-box,
.aside-quote,
.accompany-intro-card,
.news-intro-card {
  border-radius: 30px;
}

.highlight-box {
  background: var(--cream);
  border-left: 6px solid var(--green-cta);
}

.quote-panel,
.next-step-section,
.identity-section,
.rabbanim-box,
.update-main-card,
.newsletter-box {
  background:
    radial-gradient(circle at 18% 24%, rgba(234, 216, 184, 0.16), transparent 34%),
    var(--blue-deep);
}

/* FORMULAIRE PLUS DOUX */

.form-section {
  background:
    linear-gradient(180deg, var(--cream-light), var(--blue-soft));
}

.callback-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 63, 95, 0.1);
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(23, 63, 95, 0.1);
}

.form-row input,
.form-row textarea {
  background: var(--cream-light);
  border: 1px solid rgba(23, 63, 95, 0.14);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--green-cta);
  box-shadow: 0 0 0 4px rgba(201, 154, 66, 0.14);
}

/* FOOTER PLUS CHAUD */

.site-footer {
  background:
    radial-gradient(circle at 14% 20%, rgba(234, 216, 184, 0.14), transparent 34%),
    #24577d;
}

/* PETITES TOUCHES ASSOCIATIVES */

.association-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  background: rgba(255, 250, 242, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.association-note::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--green-cta);
  border-radius: 50%;
}

/* IMAGES PLUS DOUCES */

img {
  border-radius: inherit;
}

.mission-image,
.first-year-visual,
.why-visual,
.independent-visual,
.news-feature-image,
.event-image {
  border-radius: 30px;
}

/* RESPONSIVE */

@media (max-width: 680px) {
  .hero {
    min-height: 700px;
  }

  .hero-contact {
    border-radius: 24px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .logo-text strong {
    font-size: 16px;
  }

  .logo-text small {
    font-size: 10px;
  }

  .footer-logo-text strong {
    font-size: 17px;
  }

  .footer-logo-text small {
    font-size: 10px;
  }
}
/* ============================
   IMAGE DE FOND - ASSOCIATION DE TERRAIN PAGE INDEX
============================ */

.association-bg-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0.72)),
    url("../images/association-terrain.jpg") center / cover no-repeat;
}

.association-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(234, 216, 184, 0.35), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.22));
  pointer-events: none;
}

.association-bg-section > .container {
  position: relative;
  z-index: 2;
}
/* ============================
   CARTABLE ANIMÉ AU SCROLL
============================ */

.scroll-schoolbag {
  position: fixed;
  top: 150px;
  right: 34px;
  z-index: 20;
  width: 86px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0) rotate(-6deg);
  transition: opacity 0.35s ease;
}

.scroll-schoolbag img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(23, 63, 95, 0.18));
}

.scroll-schoolbag.is-visible {
  opacity: 1;
}

@media (max-width: 960px) {
  .scroll-schoolbag {
    display: none;
  }
}
/* ============================
   CARTABLE ZIGZAG AVEC ROUTE
============================ */

.schoolbag-road {
  position: fixed;
  top: 115px;
  right: 18px;
  z-index: 18;
  width: 180px;
  height: 760px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.schoolbag-road.is-visible {
  opacity: 1;
}

.road-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Ombre extérieure de la route */
.road-shadow {
  fill: none;
  stroke: rgba(23, 63, 95, 0.16);
  stroke-width: 34;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 18px rgba(23, 63, 95, 0.18));
}

/* Corps de la route */
.road-base {
  fill: none;
  stroke: #8fa3ad;
  stroke-width: 26;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ligne centrale de la route */
.road-center {
  fill: none;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 18 18;
}

/* Cartable */
.schoolbag-img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 86px;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 16px 20px rgba(23, 63, 95, 0.24));
  transition: opacity 0.2s ease;
}

/* Pour donner un côté plus doux / illustré */
.schoolbag-road::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.22), transparent 10%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 10%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.12), transparent 10%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .schoolbag-road {
    right: -2px;
    width: 145px;
  }

  .schoolbag-img {
    width: 70px;
  }

  .road-shadow {
    stroke-width: 30;
  }

  .road-base {
    stroke-width: 22;
  }
}

@media (max-width: 960px) {
  .schoolbag-road {
    display: none;
  }
}
/* ============================
   PAGE BLOG DYNAMIQUE
============================ */

.inner-hero-blog {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.56), rgba(31, 78, 121, 0.12)),
    url("../images/hero-blog.jpg") center / cover no-repeat;
}

.blog-intro-section {
  background: var(--white);
}

.blog-intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 58px;
  align-items: center;
}

.blog-intro-content h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.blog-intro-content p {
  color: var(--muted);
  font-size: 18px;
}

.blog-intro-card {
  padding: 34px;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.blog-intro-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-intro-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.15;
}

.blog-intro-card p {
  color: rgba(255, 255, 255, 0.82);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.blog-filter {
  padding: 11px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  color: var(--blue-deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.blog-filter:hover,
.blog-filter.active {
  background: var(--green-cta);
  color: var(--white);
  transform: translateY(-2px);
}

.dynamic-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dynamic-blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.dynamic-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.dynamic-blog-image {
  display: block;
  overflow: hidden;
  height: 230px;
}

.dynamic-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.dynamic-blog-card:hover .dynamic-blog-image img {
  transform: scale(1.06);
}

.dynamic-blog-content {
  padding: 26px;
}

.dynamic-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dynamic-blog-content h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.22;
}

.dynamic-blog-content h3 a {
  color: inherit;
  text-decoration: none;
}

.dynamic-blog-content h3 a:hover {
  color: var(--green-cta-dark);
}

.dynamic-blog-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.blog-loading,
.blog-empty {
  grid-column: 1 / -1;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-card);
}

@media (max-width: 1100px) {
  .dynamic-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-intro-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .dynamic-blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-intro-card strong {
    font-size: 27px;
  }

  .dynamic-blog-image {
    height: 210px;
  }
}
/* ============================
   ACCUEIL - DERNIERS ARTICLES BLOG
============================ */

.home-blog-section {
  position: relative;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.home-blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.home-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.home-blog-image {
  display: block;
  overflow: hidden;
  height: 220px;
}

.home-blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-blog-card:hover .home-blog-image img {
  transform: scale(1.06);
}

.home-blog-content {
  padding: 26px;
}

.home-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-blog-content h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.22;
}

.home-blog-content h3 a {
  color: inherit;
  text-decoration: none;
}

.home-blog-content h3 a:hover {
  color: var(--green-cta-dark);
}

.home-blog-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.home-blog-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

@media (max-width: 1100px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-image {
    height: 210px;
  }
}
/* ============================
   PAGE ARTICLE BLOG
============================ */

.article-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.94), rgba(31, 78, 121, 0.62), rgba(31, 78, 121, 0.18)),
    url("../images/blog-default.jpg") center / cover no-repeat;
  color: var(--white);
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(234, 216, 184, 0.28), transparent 34%),
    linear-gradient(0deg, rgba(23, 63, 95, 0.14), rgba(23, 63, 95, 0.14));
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 86px 0;
}

.article-back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-decoration: none;
}

.article-back-link:hover {
  color: var(--white);
}

.article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px 14px;
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.article-hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.article-section {
  background: var(--cream-light);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-image-wrap {
  overflow: hidden;
  margin-bottom: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.article-image-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.article-content {
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.article-content h2 {
  margin: 36px 0 14px;
  color: var(--blue-deep);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 28px 0 12px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.22;
}

.article-content p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

.article-content p + p {
  margin-top: 18px;
}

.article-content ul {
  margin: 20px 0;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.article-video {
  margin-top: 34px;
}

.article-video-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  background: var(--blue-deep);
}

.article-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.article-share-box {
  margin-top: 34px;
  padding: 34px;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.article-share-box h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.18;
}

.article-share-box p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.article-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.article-side-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.article-side-card h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.22;
}

.article-side-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}

.related-articles {
  display: grid;
  gap: 12px;
}

.related-article-link {
  display: block;
  padding: 15px;
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.related-article-link:hover {
  transform: translateX(5px);
  background: var(--cream);
}

.related-article-link span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-cta-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.related-article-link strong {
  color: var(--blue-deep);
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .article-hero {
    min-height: 480px;
  }

  .article-hero-inner {
    padding: 70px 0;
  }

  .article-hero p {
    font-size: 17px;
  }

  .article-content {
    padding: 28px;
  }

  .article-content p,
  .article-content li {
    font-size: 16.5px;
  }

  .article-share-actions .btn {
    width: 100%;
  }
}
.article-video-block {
  margin-top: 34px;
}

.article-video-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration: none;
}

.article-video-link:hover {
  color: var(--green-cta-dark);
}
/* ============================
   PAGE ÊTRE ACCOMPAGNÉ
============================ */

.inner-hero-accompagnement {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.92), rgba(31, 78, 121, 0.56), rgba(31, 78, 121, 0.12)),
    url("../images/hero-accompagnement.jpg") center / cover no-repeat;
}

.accompany-human-section {
  background: var(--cream-light);
}

.accompany-human-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 58px;
  align-items: center;
}

.accompany-human-content h2 {
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.accompany-human-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.accompany-human-content p + p {
  margin-top: 16px;
}

.accompany-human-card {
  padding: 36px;
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 216, 184, 0.22), transparent 36%),
    var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.accompany-human-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.accompany-human-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 31px;
  line-height: 1.16;
}

.accompany-human-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.accompany-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.accompany-pillar {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.accompany-pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--green-cta);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 14px 28px rgba(201, 154, 66, 0.24);
}

.accompany-pillar h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1.2;
}

.accompany-pillar p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.accompany-steps {
  display: grid;
  gap: 18px;
}

.accompany-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.accompany-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.accompany-step span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  border-radius: 50%;
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 20px;
}

.accompany-step h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.22;
}

.accompany-step p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
}

.field-accompany-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 63, 95, 0.92), rgba(23, 63, 95, 0.58), rgba(23, 63, 95, 0.18)),
    url("../images/accompagnement-terrain.jpg") center / cover no-repeat;
  color: var(--white);
}

.field-accompany-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 34%, rgba(234, 216, 184, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(23, 63, 95, 0.08), rgba(23, 63, 95, 0.28));
  pointer-events: none;
}

.field-accompany-inner {
  position: relative;
  z-index: 2;
}

.field-accompany-content {
  max-width: 760px;
  padding: 90px 0;
}

.field-accompany-content h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.field-accompany-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.field-accompany-content p + p {
  margin-top: 14px;
}

.field-accompany-content .btn {
  margin-top: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.2;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15.8px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .accompany-human-grid {
    grid-template-columns: 1fr;
  }

  .accompany-pillars-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .accompany-step {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .field-accompany-section {
    min-height: 640px;
  }

  .field-accompany-content {
    padding: 72px 0;
  }

  .field-accompany-content h2 {
    font-size: 34px;
  }

  .field-accompany-content p {
    font-size: 16.5px;
  }
}
/* ============================
   ACCOMPAGNEMENT - CHOISIR SA ROUTE
============================ */

.route-choice-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(234, 216, 184, 0.32), transparent 30%),
    var(--cream-light);
  overflow: hidden;
}

.route-choice-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Carré visuel avec image de fond */

.route-choice-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 242, 0.72),
      rgba(255, 250, 242, 0.88)
    ),
    linear-gradient(
      90deg,
      rgba(23, 63, 95, 0.14),
      rgba(23, 63, 95, 0.03)
    ),
    url("../images/fond-route-ecole.jpg") center / cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.route-choice-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.42), transparent 30%),
    radial-gradient(circle at 78% 76%, rgba(234, 216, 184, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(23, 63, 95, 0.09));
  pointer-events: none;
}

/* Route SVG */

.route-svg {
  position: absolute;
  z-index: 2;
  inset: 34px 24px 24px 24px;
  width: calc(100% - 48px);
  height: calc(100% - 58px);
  overflow: visible;
}

.route-shadow,
.route-base,
.route-center {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-shadow {
  stroke: rgba(23, 63, 95, 0.16);
  stroke-width: 46;
  filter: drop-shadow(0 18px 22px rgba(23, 63, 95, 0.16));
}

.route-base {
  stroke: #7f939d;
  stroke-width: 34;
}

.route-center {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 5;
  stroke-dasharray: 22 22;
}

/* Voiture qui suit réellement la route */

.route-car {
  position: absolute;
  z-index: 5;
  width: 76px;
  height: 76px;

  offset-path: path("M70 270 C170 180, 250 330, 350 230 C430 150, 500 170, 555 95");
  offset-rotate: auto;
  offset-distance: 0%;

  left: 24px;
  top: 34px;

  animation: routeCarDrive 7.5s ease-in-out infinite;
}

.route-car img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(23, 63, 95, 0.24));
}

/* Si tu n’as pas encore l’image voiture, ce fallback affiche un rond propre */

.route-car:empty {
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

.route-car:empty::before {
  content: "🚗";
  font-size: 36px;
}

/* Points d’étape */

.route-marker {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  background: var(--green-cta);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(201, 154, 66, 0.18),
    0 10px 18px rgba(23, 63, 95, 0.14);
}

.route-marker span {
  position: absolute;
  left: 50%;
  top: -46px;
  transform: translateX(-50%);
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.marker-start {
  left: 15%;
  bottom: 22%;
}

.marker-middle {
  left: 52%;
  bottom: 32%;
}

.marker-end {
  right: 13%;
  top: 24%;
}

@keyframes routeCarDrive {
  0% {
    offset-distance: 0%;
  }

  18% {
    offset-distance: 0%;
  }

  38% {
    offset-distance: 43%;
  }

  50% {
    offset-distance: 43%;
  }

  76% {
    offset-distance: 100%;
  }

  88% {
    offset-distance: 100%;
  }

  100% {
    offset-distance: 0%;
  }
}

/* Texte */

.route-choice-content h2 {
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.route-choice-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.route-choice-content p + p {
  margin-top: 14px;
}

.route-quote {
  margin: 26px 0 28px;
  padding: 22px 26px;
  background: var(--white);
  border-left: 6px solid var(--green-cta);
  border-radius: var(--radius-md);
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: var(--shadow-card);
}

@media (max-width: 1000px) {
  .route-choice-grid {
    grid-template-columns: 1fr;
  }

  .route-choice-visual {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .route-choice-visual {
    min-height: 320px;
  }

  .route-car {
    width: 58px;
    height: 58px;
  }

  .route-marker span {
    font-size: 12px;
  }

  .route-quote {
    font-size: 20px;
  }
}
/* ============================
   HERO VIDEO - CONSEILS PARENTS
============================ */

.video-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 30%, rgba(234, 216, 184, 0.28), transparent 34%),
    linear-gradient(
      90deg,
      rgba(20, 54, 83, 0.92),
      rgba(31, 78, 121, 0.62),
      rgba(31, 78, 121, 0.22)
    ),
    linear-gradient(
      180deg,
      rgba(20, 54, 83, 0.12),
      rgba(20, 54, 83, 0.42)
    );
  pointer-events: none;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 100px 0;
}

.video-hero-content h1 {
  max-width: 840px;
  color: var(--white);
}

.video-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
}

/* Bouton son en haut à droite */

.video-sound-icon {
  position: absolute;
  top: 112px;
  right: 34px;
  z-index: 4;

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-radius: 50%;

  font-size: 22px;
  cursor: pointer;

  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(23, 63, 95, 0.22);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.video-sound-icon:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.42);
}

.video-sound-icon .sound-on {
  display: none;
}

.video-sound-icon .sound-off {
  display: block;
}

.video-sound-icon.is-active {
  background: var(--green-cta);
  border-color: var(--green-cta);
}

.video-sound-icon.is-active .sound-on {
  display: block;
}

.video-sound-icon.is-active .sound-off {
  display: none;
}

@media (max-width: 680px) {
  .video-sound-icon {
    top: 92px;
    right: 18px;
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
}

@media (max-width: 680px) {
  .video-hero {
    min-height: 560px;
  }

  .video-hero-content {
    padding: 80px 0;
  }
}
/* ============================
   CHOISIR UNE ÉCOLE - VIDÉO POURQUOI CHOISIR
============================ */

.choice-video-card {
  position: relative;
  min-height: 500px;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-deep);
  box-shadow: var(--shadow-soft);
}

.choice-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.choice-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 54, 83, 0.04), rgba(20, 54, 83, 0.72)),
    linear-gradient(90deg, rgba(20, 54, 83, 0.36), rgba(20, 54, 83, 0.06));
  pointer-events: none;
}

.choice-video-content {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: var(--white);
}

.choice-video-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.choice-video-content strong {
  display: block;
  max-width: 480px;
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

@media (max-width: 900px) {
  .choice-video-card {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .choice-video-card {
    min-height: 300px;
  }

  .choice-video-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .choice-video-content strong {
    font-size: 27px;
  }
}
/* ============================
   PAGE CONTACT
============================ */

.inner-hero-contact {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.92), rgba(31, 78, 121, 0.56), rgba(31, 78, 121, 0.12)),
    url("../images/hero-contact.jpg") center / cover no-repeat;
}

.contact-main-section {
  background: var(--cream-light);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 58px;
  align-items: start;
}

.contact-main-content h2 {
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-main-content > p {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-direct-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-direct-item {
  display: block;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.contact-direct-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 154, 66, 0.36);
  box-shadow: var(--shadow-hover);
}

.contact-direct-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-direct-item strong {
  display: block;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.25;
}

.contact-address-card {
  position: sticky;
  top: 110px;
  padding: 36px;
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 216, 184, 0.22), transparent 36%),
    var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.contact-address-card > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-address-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.1;
}

.contact-address-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.contact-address-note {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.contact-address-card .text-link {
  color: var(--green-cta);
}

.contact-address-card .text-link:hover {
  color: var(--white);
}

.contact-follow-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(234, 216, 184, 0.32), transparent 30%),
    var(--cream-light);
}

.contact-follow-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-follow-box h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.contact-follow-box p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1100px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-address-card {
    position: static;
  }

  .contact-follow-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-direct-list {
    grid-template-columns: 1fr;
  }

  .contact-direct-item strong {
    font-size: 20px;
  }

  .contact-address-card,
  .contact-follow-box {
    padding: 28px;
  }
}
/* ============================
   PAGE TÉMOIGNAGES
============================ */

.inner-hero-temoignages {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.92), rgba(31, 78, 121, 0.56), rgba(31, 78, 121, 0.12)),
    url("../images/hero-temoignages.jpg") center / cover no-repeat;
}

.featured-testimonial-section {
  background: var(--cream-light);
}

.featured-testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.featured-testimonial-quote {
  position: relative;
  padding: 42px;
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 216, 184, 0.2), transparent 38%),
    var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.featured-testimonial-quote > span {
  display: block;
  margin-bottom: 16px;
  color: var(--green-cta);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 0.7;
}

.featured-testimonial-quote blockquote {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.featured-testimonial-quote p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 800;
}

.featured-testimonial-content h2 {
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.featured-testimonial-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.featured-testimonial-content p + p {
  margin-top: 14px;
}

/* Grille propre témoignages */

.testimonials-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.testimonial-clean-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.testimonial-clean-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 154, 66, 0.28);
  box-shadow: var(--shadow-hover);
}

.testimonial-clean-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonial-clean-icon {
  flex: 0 0 auto;
  color: var(--green-cta);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 0.72;
}

.testimonial-clean-header h3 {
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.15;
}

.testimonial-clean-header span {
  display: block;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-clean-card > p {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.75;
}

.testimonial-clean-wide {
  grid-column: span 3;
  min-height: 220px;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 216, 184, 0.28), transparent 32%),
    var(--white);
}

.testimonial-clean-wide > p {
  max-width: 980px;
  font-size: 22px;
  line-height: 1.58;
}

/* Bloc image / expérience */

.testimonial-experience-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 63, 95, 0.92), rgba(23, 63, 95, 0.58), rgba(23, 63, 95, 0.18)),
    url("../images/temoignages-familles.jpg") center / cover no-repeat;
  color: var(--white);
}

.testimonial-experience-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 34%, rgba(234, 216, 184, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(23, 63, 95, 0.08), rgba(23, 63, 95, 0.28));
  pointer-events: none;
}

.testimonial-experience-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 90px 0;
}

.testimonial-experience-content h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.testimonial-experience-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.testimonial-experience-content .btn {
  margin-top: 30px;
}

/* Impact */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.impact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.impact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.impact-card span {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .featured-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-clean-wide {
    grid-column: span 2;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .testimonials-clean-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-clean-wide {
    grid-column: span 1;
  }

  .testimonial-clean-card {
    min-height: auto;
    padding: 28px;
  }

  .testimonial-clean-wide > p {
    font-size: 17px;
  }

  .featured-testimonial-quote {
    padding: 30px;
  }

  .testimonial-experience-section {
    min-height: 620px;
  }

  .testimonial-experience-content {
    padding: 72px 0;
  }

  .testimonial-experience-content h2 {
    font-size: 34px;
  }

  .testimonial-experience-content p {
    font-size: 16.5px;
  }
}
/* ============================
   TÉMOIGNAGES - MUR DE PAROLES
============================ */

.inner-hero-temoignages {
  overflow: hidden;
}

.testimonial-words {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.testimonial-words span {
  position: absolute;
  display: inline-flex;
  max-width: 360px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: blur(10px);
  animation: testimonialFloat 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.2s);
}

.testimonial-words span:nth-child(1) {
  top: 18%;
  right: 8%;
}

.testimonial-words span:nth-child(2) {
  top: 35%;
  right: 18%;
}

.testimonial-words span:nth-child(3) {
  bottom: 22%;
  right: 7%;
}

.testimonial-words span:nth-child(4) {
  top: 16%;
  left: 8%;
}

.testimonial-words span:nth-child(5) {
  bottom: 18%;
  left: 12%;
}

.testimonial-words span:nth-child(6) {
  top: 52%;
  left: 5%;
}

@keyframes testimonialFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.28;
  }

  25% {
    transform: translateY(-28px) translateX(22px) scale(1.03);
    opacity: 0.78;
  }

  50% {
    transform: translateY(18px) translateX(-18px) scale(0.98);
    opacity: 0.58;
  }

  75% {
    transform: translateY(-18px) translateX(-28px) scale(1.02);
    opacity: 0.72;
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.28;
  }
}

.inner-hero-temoignages .inner-hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .testimonial-words span {
    display: none;
  }
}
/* Effet lettre / carte au survol */

.testimonial-clean-card {
  transform-style: preserve-3d;
}

.testimonial-clean-card:hover {
  transform: translateY(-10px) rotateX(1.5deg) rotateY(-1.5deg);
}
/* ============================
   TÉMOIGNAGES - CHEMIN DES FAMILLES
============================ */

.family-path-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 216, 184, 0.34), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(63, 169, 199, 0.1), transparent 28%),
    var(--cream-light);
  overflow: hidden;
}

.family-path-timeline {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 0;
}

/* Route verticale */

.family-path-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 48px;
  width: 18px;
  background: #7f939d;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(23, 63, 95, 0.12);
  opacity: 0.95;
  z-index: 0;
}

.family-path-timeline::after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 56px;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0 18px,
    transparent 18px 34px
  );
  border-radius: 999px;
  opacity: 0.95;
  z-index: 0;
}

/* Voiture vue de dessus */

.family-path-car {
  position: absolute;
  top: 22px;
  left: 57px;
  z-index: 7;
  width: 42px;
  height: 72px;
  transform: translateX(-50%);
  animation: familyCarDrive 10s ease-in-out infinite;
  pointer-events: none;
}

.family-path-car img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(23, 63, 95, 0.26));
}

/* fallback si pas encore d'image */
.family-path-car:empty {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

.family-path-car:empty::before {
  content: "🚗";
  font-size: 24px;
}

/* Étapes */

.family-path-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: stretch;
}

.family-path-number {
  position: relative;
  z-index: 6;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 4px solid var(--green-cta);
  border-radius: 50%;
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.family-path-content {
  position: relative;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.family-path-content::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 38px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.family-path-step:hover .family-path-content {
  transform: translateX(8px);
  border-color: rgba(201, 154, 66, 0.32);
  box-shadow: var(--shadow-hover);
}

.family-path-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-cta-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.family-path-content h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 28px;
  line-height: 1.18;
}

.family-path-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Animation voiture avec pauses aux 4 étapes */

@keyframes familyCarDrive {
  0% {
    top: 22px;
  }

  14% {
    top: 22px;
  }

  28% {
    top: 198px;
  }

  40% {
    top: 198px;
  }

  56% {
    top: 375px;
  }

  68% {
    top: 375px;
  }

  84% {
    top: 552px;
  }

  94% {
    top: 552px;
  }

  100% {
    top: 22px;
  }
}

@media (max-width: 680px) {
  .family-path-timeline::before {
    left: 28px;
    width: 14px;
  }

  .family-path-timeline::after {
    left: 34px;
  }

  .family-path-step {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .family-path-number {
    width: 58px;
    height: 58px;
    border-width: 3px;
    font-size: 16px;
  }

  .family-path-content {
    padding: 24px;
  }

  .family-path-content::before {
    top: 24px;
  }

  .family-path-content h3 {
    font-size: 24px;
  }

  .family-path-content p {
    font-size: 16px;
  }

  .family-path-car {
    left: 35px;
    width: 30px;
    height: 52px;
  }

  @keyframes familyCarDrive {
    0% {
      top: 22px;
    }

    14% {
      top: 22px;
    }

    28% {
      top: 176px;
    }

    40% {
      top: 176px;
    }

    56% {
      top: 330px;
    }

    68% {
      top: 330px;
    }

    84% {
      top: 486px;
    }

    94% {
      top: 486px;
    }

    100% {
      top: 22px;
    }
  }
}
/* ============================
   ACTUALITÉS - VIDÉO VIE ASSOCIATION
============================ */

.news-feature-video {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: var(--blue-deep);
}

.news-feature-video video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.news-feature-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 54, 83, 0.02), rgba(20, 54, 83, 0.24)),
    linear-gradient(90deg, rgba(20, 54, 83, 0.16), rgba(20, 54, 83, 0.02));
  pointer-events: none;
}

@media (max-width: 680px) {
  .news-feature-video,
  .news-feature-video video {
    min-height: 260px;
  }
}
/* ============================
   ACTUALITÉS - VIDÉOS YOUTUBE
============================ */

.event-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blue-deep);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.event-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.event-card {
  overflow: hidden;
}

@media (max-width: 680px) {
  .event-video-frame {
    aspect-ratio: 16 / 10;
  }
}
/* ============================
   CONSEILS PARENTS - VIDEO YOUTUBE
============================ */

.parent-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.parent-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .parent-video-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .parent-video-embed {
    aspect-ratio: 16 / 10;
  }
}
/* ============================
   PAGE DON
============================ */

.inner-hero-don {
  background:
    linear-gradient(90deg, rgba(20, 54, 83, 0.92), rgba(31, 78, 121, 0.58), rgba(31, 78, 121, 0.16)),
    url("../images/hero-don.jpg") center / cover no-repeat;
}

/* Intro */

.donation-intro-section {
  background: var(--white);
}

.donation-intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
}

.donation-intro-content h2 {
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.donation-intro-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.donation-intro-content p + p {
  margin-top: 14px;
}

.donation-impact-card {
  padding: 38px;
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 216, 184, 0.28), transparent 36%),
    var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.donation-impact-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.donation-impact-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.donation-impact-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

/* Don en ligne */

.don-online-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.don-online-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.don-online-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 154, 66, 0.34);
  box-shadow: var(--shadow-hover);
}

.don-online-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--cream-light);
  border: 1px solid rgba(201, 154, 66, 0.28);
  border-radius: 50%;
  color: var(--green-cta-dark);
  font-size: 38px;
  font-weight: 900;
}

.don-online-card h3 {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 30px;
  line-height: 1.15;
}

.don-online-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Paiements */

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.payment-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.payment-card h3 {
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: 30px;
}

.payment-block {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.payment-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.payment-block h4 {
  margin-bottom: 10px;
  color: var(--green-cta-dark);
  font-size: 17px;
  font-weight: 900;
}

.payment-block p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
}

/* Fiscalité / SEIF46 */

.donation-tax-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 216, 184, 0.34), transparent 30%),
    var(--cream-light);
}

.donation-tax-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: center;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.donation-tax-logo {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.donation-tax-logo img {
  max-width: 180px;
  max-height: 140px;
  object-fit: contain;
}

.donation-tax-content h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.donation-tax-content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.75;
}

.donation-tax-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

/* Témoignage */

.donation-testimonial-section {
  background: var(--white);
}

.donation-testimonial-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 52px;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 216, 184, 0.24), transparent 34%),
    var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.donation-testimonial-box blockquote {
  margin: 18px auto 20px;
  max-width: 820px;
  color: var(--blue-deep);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.donation-testimonial-box .testimonial-author {
  margin-bottom: 18px;
  color: var(--green-cta-dark);
  font-weight: 900;
}

/* CTA final */

.don-final-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(234, 216, 184, 0.18), transparent 32%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  color: var(--white);
}

.don-final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.don-final-box h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.don-final-box p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.don-final-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.don-final-link {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.don-final-link:hover {
  color: var(--green-cta);
}

/* Responsive */

@media (max-width: 1000px) {
  .donation-intro-layout,
  .payment-methods-grid,
  .donation-tax-box,
  .don-final-box {
    grid-template-columns: 1fr;
  }

  .don-final-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .don-online-grid {
    grid-template-columns: 1fr;
  }

  .donation-tax-box,
  .donation-testimonial-box,
  .payment-card,
  .don-online-card,
  .donation-impact-card {
    padding: 28px;
  }

  .donation-tax-logo {
    min-height: 170px;
  }

  .don-final-section {
    padding: 64px 0;
  }
}
/* ============================
   COULEUR CTA VERTE
============================ */

.btn-primary,
.btn-don,
.paypal-button {
  background: var(--green-cta);
  color: var(--blue-deep);
}

.btn-primary:hover,
.btn-don:hover,
.paypal-button:hover {
  background: var(--green-cta-dark);
  color: var(--blue-deep);
}

.nav-don {
  background: var(--green-cta);
  color: var(--blue-deep) !important;
}

.nav-don:hover,
.nav-don.active {
  background: var(--green-cta-dark);
  color: var(--blue-deep) !important;
}

.home-hero .hero-label,
.hero-section .hero-label {
  color: var(--green-cta);
}
