/* Theme-specific components retained from the React design system. */
.ilo-main {
  min-height: 60vh;
}
.ilo-home-header + .ilo-main {
  padding-top: 0;
}
.ilo-home-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  background: #081f18;
  transition: opacity 0.7s ease;
}
.ilo-home-loader.is-pending {
  visibility: hidden;
  opacity: 0;
}
.ilo-home-loader.is-complete {
  opacity: 0;
}
.ilo-home-loader-half {
  height: 50%;
  flex: 1;
  background: #081f18;
}
.ilo-home-loader-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.9);
}
.ilo-home-loader-content img {
  width: clamp(8rem, 16vw, 12rem);
  height: clamp(8rem, 16vw, 12rem);
  object-fit: contain;
  animation: ilo-home-pulse 2s ease-in-out infinite;
}
.ilo-home-loader-type {
  position: relative;
  width: 16rem;
  height: 1.5em;
  font-size: 0;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}
.ilo-home-loader-type::after {
  content: "Héritage...";
  display: block;
  font:
    italic 300 clamp(1.25rem, 2vw, 1.5rem)/1 "Playfair Display",
    serif;
  animation: ilo-home-text-cycle 4s linear forwards;
}
.ilo-home-loader-content i {
  width: 16rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.ilo-home-loader-content i b {
  display: block;
  width: 100%;
  height: 100%;
  background: #16c04c;
  box-shadow: 0 0 10px #16c04c;
  animation: ilo-home-progress 4s linear;
}
@keyframes ilo-home-progress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes ilo-home-pulse {
  50% {
    opacity: 0.55;
    transform: scale(1.03);
  }
}
@keyframes ilo-home-text-cycle {
  0%,
  33% {
    content: "Héritage...";
    opacity: 1;
  }
  34%,
  66% {
    content: "Inclusion...";
    opacity: 1;
  }
  67%,
  92% {
    content: "Avenir...";
    opacity: 1;
  }
  100% {
    content: "Avenir...";
    opacity: 0;
  }
}
.ilo-home-back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid #16c04c;
  border-radius: 50%;
  color: #0e1b12;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem);
  transition: 0.4s ease;
  cursor: pointer;
  font-size: 1.5rem;
}
.ilo-home-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ilo-home-back-to-top:hover {
  transform: translateY(-0.3rem);
}
.ilo-page-shell {
  max-width: 80rem;
  margin-inline: auto;
  padding: 5rem 1.5rem;
}
.ilo-content-section {
  padding-block: 6rem;
}
.ilo-hero {
  min-height: 42rem;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #081f18, #176b3a);
  color: white;
  padding-top: 5rem;
}
.ilo-hero h1 {
  max-width: 48rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  margin-block: 1rem 1.5rem;
}
.ilo-hero p:not(.ilo-eyebrow) {
  max-width: 40rem;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ilo-mission-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: center;
}
.ilo-mission-section h2,
.ilo-content-section > h2 {
  max-width: 50rem;
  margin: 0.75rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
  color: #0e1b12;
}
.ilo-mission-section > p {
  margin: 0;
  color: #4b5563;
  font-size: 1.15rem;
  line-height: 1.8;
}
.ilo-stats-section {
  background: #081f18;
  color: white;
}
.ilo-stats-section .ilo-page-shell {
  padding-block: 3rem;
}
.ilo-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ilo-stats-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ilo-stats-grid strong {
  color: #16c04c;
  font:
    700 clamp(2.5rem, 6vw, 4.5rem)/1 "Playfair Display",
    serif;
}
.ilo-stats-grid span {
  color: #d1fae5;
  font-weight: 700;
}
.ilo-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.ilo-project-card {
  overflow: hidden;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ilo-project-card img {
  display: block;
  width: 100%;
  height: 15rem;
  object-fit: cover;
}
.ilo-project-card > div {
  padding: 1.5rem;
}
.ilo-project-card h3 {
  margin: 0.5rem 0;
  font:
    700 1.7rem/1.15 "Playfair Display",
    serif;
  color: #0e1b12;
}
.ilo-project-card p:not(.ilo-eyebrow) {
  color: #4b5563;
  line-height: 1.7;
}
.ilo-text-link {
  color: #0e1b12;
  font-weight: 800;
  text-decoration: none;
}
.ilo-text-link:hover {
  color: #16c04c;
}
.ilo-eyebrow {
  color: #16c04c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ilo-donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #16c04c;
  color: #0e1b12;
  font-weight: 800;
  text-decoration: none;
}
.ilo-donate-button:hover {
  background: #13a541;
}
.ilo-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.ilo-post-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  background: white;
}
.ilo-post-card img,
.ilo-featured-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}
.ilo-post-card h2 {
  margin-block: 0.75rem;
  font-size: 1.35rem;
}
.ilo-post-card a {
  color: inherit;
  text-decoration: none;
}
.ilo-entry {
  max-width: 56rem;
  margin-inline: auto;
}
.ilo-entry h1 {
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.ilo-entry p,
.ilo-entry li {
  line-height: 1.8;
}
.ilo-form-notice {
  padding: 1rem;
  background: #fff7ed;
  color: #9a3412;
}
.ilo-faq-intro {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: center;
}
.ilo-faq-search-label {
  display: block;
  max-width: 42rem;
  margin: 0 auto 0.5rem;
  color: #374151;
  font-weight: 700;
}
.ilo-faq-search {
  display: block;
  width: min(100%, 42rem);
  margin: 0 auto 3rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  background: #fff;
  font: inherit;
}
.ilo-faq-search:focus {
  outline: 3px solid rgba(22, 192, 76, 0.2);
  border-color: #16c04c;
}
.ilo-faq-list {
  display: grid;
  gap: 1rem;
  max-width: 68rem;
  margin-inline: auto;
}
.ilo-faq-item {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
}
.ilo-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
}
.ilo-faq-item summary::-webkit-details-marker {
  display: none;
}
.ilo-faq-item summary span {
  color: #16c04c;
  transition: transform 0.2s ease;
}
.ilo-faq-item[open] summary span {
  transform: rotate(180deg);
}
.ilo-faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.8;
}
.ilo-faq-editor-content {
  margin-top: 3rem;
}
.ilo-project-page {
  background: #fff;
}
.ilo-project-hero {
  top: 0.5rem;
  position: relative;
  min-height: 37.5rem;
  display: flex;
  align-items: center;
  padding: 5rem max(1.5rem, calc((100vw - 80rem) / 2));
  background-position: center;
  background-size: cover;
  color: #fff;
}
.ilo-project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08));
}
.ilo-project-hero-content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}
.ilo-project-hero h1 {
  max-width: 52rem;
  margin: 1.25rem 0;
  font:
    900 clamp(2.4rem, 6vw, 3.75rem)/1.1 "Playfair Display",
    serif;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.ilo-project-hero-content > p:not(.ilo-project-tag) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.65;
}
.ilo-project-tag {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ilo-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.ilo-project-glass-button,
.ilo-support-volunteer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.75rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}
.ilo-project-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  color: #0d1b13;
  background: #16c04c;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(18, 206, 96, 0.4);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.ilo-project-primary-button:hover {
  color: #0d1b13;
  background: #13a541;
  transform: scale(1.04);
}
.ilo-project-glass-button {
  cursor: pointer;
  font: inherit;
}
.ilo-project-glass-button span,
.ilo-project-tag span,
.ilo-pillar-icon span,
.ilo-pillar-content a span,
.ilo-stat-icon,
.ilo-garden-circle span,
.ilo-timeline-marker span,
.ilo-support-icon,
.ilo-video-close {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 400;
}
.ilo-project-section,
.ilo-support-section {
  padding: 5rem max(1.5rem, calc((100vw - 80rem) / 2));
}
.ilo-project-section-muted,
.ilo-support-section {
  background: #f7faf8;
}
.ilo-project-section-heading {
  max-width: 42rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.ilo-project-section-heading h2,
.ilo-voices-heading h2,
.ilo-support-card h2 {
  margin: 0 0 0.75rem;
  color: #0d1b13;
  font:
    700 clamp(2rem, 4vw, 2.5rem)/1.15 "Playfair Display",
    serif;
}
.ilo-project-section-heading p,
.ilo-voices-heading p {
  color: #6b7280;
  line-height: 1.65;
}
.ilo-pillar-grid,
.ilo-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ilo-pillar-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem 3rem;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}
.ilo-pillar-card:hover {
  transform: translateY(-0.5rem);
}
.ilo-pillar-image {
  height: 14rem;
  background-position: center;
  background-size: cover;
}
.ilo-pillar-content {
  padding: 2rem;
}
.ilo-pillar-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
}
.ilo-pillar-primary {
  color: #16c04c;
  background: rgba(22, 192, 76, 0.18);
}
.ilo-pillar-orange {
  color: #ea580c;
  background: #ffedd5;
}
.ilo-pillar-blue {
  color: #2980b9;
  background: rgba(41, 128, 185, 0.18);
}
.ilo-pillar-content h3 {
  margin: 0 0 0.75rem;
  color: #0d1b13;
  font-size: 1.25rem;
}
.ilo-pillar-content p {
  min-height: 5.5rem;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
}
.ilo-pillar-content a,
.ilo-voices-heading a {
  color: #16c04c;
  font-weight: 800;
  text-decoration: none;
}
.ilo-garden-section {
  position: relative;
}
.ilo-garden-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 60rem;
  margin: auto;
}
.ilo-garden-process::before {
  position: absolute;
  top: 2.5rem;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(22, 192, 76, 0.3);
  content: "";
}
.ilo-garden-step {
  position: relative;
  z-index: 1;
  padding: 1rem;
  text-align: center;
  background: #fff;
}
.ilo-garden-circle {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
}
.ilo-garden-circle-solid {
  color: #fff;
  background: #16c04c;
}
.ilo-garden-circle-border {
  color: #16c04c;
  border: 2px solid #16c04c;
}
.ilo-garden-circle-dark {
  color: #16c04c;
  background: #0d1b13;
}
.ilo-garden-step h3 {
  margin: 0 0 0.25rem;
  color: #0d1b13;
  font-size: 1.1rem;
}
.ilo-garden-step p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}
.ilo-project-stats {
  padding: 5rem max(1.5rem, calc((100vw - 60rem) / 2));
  color: #fff;
  background: #102218;
}
.ilo-project-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ilo-project-stat {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}
.ilo-project-stat strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
}
.ilo-project-stat span {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ilo-timeline {
  position: relative;
  max-width: 56rem;
  margin: auto;
}
.ilo-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #d1d5db;
  content: "";
}
.ilo-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3rem;
}
.ilo-timeline-copy {
  width: 42%;
}
.ilo-timeline-item:nth-child(odd) .ilo-timeline-copy {
  padding-right: 2rem;
  text-align: right;
}
.ilo-timeline-item:nth-child(even) .ilo-timeline-copy {
  order: 3;
  padding-left: 2rem;
}
.ilo-timeline-spacer {
  width: 42%;
}
.ilo-timeline-marker {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.ilo-timeline-primary {
  color: #fff;
  background: #16c04c;
}
.ilo-timeline-blue {
  color: #fff;
  background: #2980b9;
}
.ilo-timeline-copy strong {
  color: #0d1b13;
  font-size: 1.25rem;
}
.ilo-timeline-copy h3 {
  margin: 0.25rem 0 0.5rem;
  color: #16c04c;
  font-size: 1rem;
}
.ilo-timeline-copy p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.45;
}
.ilo-voices-section {
  background: #fff;
}
.ilo-voices-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ilo-voices-heading h2 {
  margin-bottom: 0.5rem;
}
.ilo-voices-heading p {
  margin: 0;
}
.ilo-voice-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  background: #111;
  color: #fff;
}
.ilo-voice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ilo-voice-card:hover img {
  transform: scale(1.08);
}
.ilo-voice-card::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  content: "";
}
.ilo-voice-card > div {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1rem;
}
.ilo-voice-card strong,
.ilo-voice-card small {
  display: block;
}
.ilo-voice-card small {
  margin-top: 0.2rem;
  opacity: 0.9;
}
.ilo-voice-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
}
.ilo-support-card {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #16c04c, #0e9f4a);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.ilo-support-content {
  max-width: 42rem;
  margin: auto;
}
.ilo-support-icon {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 4rem;
}
.ilo-support-card h2 {
  color: #fff;
}
.ilo-support-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.65;
}
.ilo-support-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  color: #16c04c;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}
.ilo-video-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
}
.ilo-video-modal[hidden] {
  display: none;
}
.ilo-video-dialog {
  position: relative;
  width: min(100%, 64rem);
  overflow: hidden;
  border-radius: 1rem;
  background: #000;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}
.ilo-video-dialog video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.ilo-video-close {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-size: 1.25rem;
}
body.ilo-video-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  .ilo-pillar-grid,
  .ilo-garden-process,
  .ilo-project-stat-grid,
  .ilo-voices-grid {
    grid-template-columns: 1fr;
  }
  .ilo-garden-process::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    border-top: 0;
    border-left: 2px dashed rgba(22, 192, 76, 0.3);
  }
  .ilo-garden-step {
    background: transparent;
  }
  .ilo-timeline::before {
    left: 1.25rem;
  }
  .ilo-timeline-item {
    justify-content: flex-start;
    gap: 1rem;
  }
  .ilo-timeline-copy,
  .ilo-timeline-spacer {
    width: auto;
  }
  .ilo-timeline-copy,
  .ilo-timeline-item:nth-child(even) .ilo-timeline-copy,
  .ilo-timeline-item:nth-child(odd) .ilo-timeline-copy {
    order: 3;
    padding: 0;
    text-align: left;
  }
  .ilo-timeline-marker {
    flex: 0 0 2.5rem;
  }
  .ilo-timeline-spacer {
    display: none;
  }
  .ilo-voices-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ilo-project-hero {
    min-height: 40rem;
    padding-top: 6rem;
  }
  .ilo-project-hero h1 {
    font-size: 2.5rem;
  }
  .ilo-project-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .ilo-project-actions a,
  .ilo-project-actions button {
    width: 100%;
  }
  .ilo-support-card {
    padding: 3rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .ilo-post-grid,
  .ilo-project-grid,
  .ilo-stats-grid,
  .ilo-mission-section {
    grid-template-columns: 1fr;
  }
  .ilo-page-shell {
    padding-inline: 1.25rem;
  }
  .ilo-mission-section {
    gap: 1.5rem;
  }
}

/* Home page parity with the React reference. */
.ilo-home {
  overflow: hidden;
  background: #f9f9f7;
  color: #17221a;
}
.ilo-home-shell {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}
.ilo-home-hero {
  top: 0.5rem;
  position: relative;
  min-height: 43.75rem;
  display: flex;
  align-items: center;
  color: #fff;
}
.ilo-home-hero-media {
  position: absolute;
  inset: 0;
  background: url("../media/hero-enfant-1920.webp") center/cover;
  transform: scale(1);
}
.ilo-home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68),
      rgba(0, 0, 0, 0.2),
      transparent
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 60%);
}
.ilo-home-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 6rem;
}
.ilo-home-hero h1 {
  margin: 2rem 0 1.5rem;
  font:
    500 clamp(3rem, 8vw, 7rem)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.ilo-home-hero h1 em {
  color: #16c04c;
  font-style: italic;
}
.ilo-home-hero p {
  max-width: 36rem;
  color: #f3f4f6;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.65;
}
.ilo-home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #17221a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ilo-home-pill span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #16c04c;
}
.ilo-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.ilo-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.8rem 1.8rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  cursor: pointer;
}
.ilo-home-button:hover {
  transform: translateY(-2px);
}
.ilo-home-button-light {
  color: #124f2c;
  background: #fff;
}
.ilo-home-button-glass {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.ilo-home-button-green {
  color: #fff;
  background: #16c04c;
}
.ilo-home-button-blue {
  color: #fff;
  background: #2980b9;
}
.ilo-home-button-cyan {
  color: #fff;
  background: #11aeb2;
}
.ilo-home-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 2.5rem;
  animation: ilo-home-bounce 1.8s infinite;
}
.ilo-home-stats {
  position: relative;
  z-index: 2;
  margin: -2rem auto 0;
}
.ilo-home-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(25, 50, 35, 0.15);
  backdrop-filter: blur(18px);
}
.ilo-home-stat-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  text-align: center;
  justify-content: center;
}
.ilo-home-stat-grid strong {
  color: #16c04c;
  font:
    500 clamp(2rem, 4vw, 3.5rem)/1 "Playfair Display",
    serif;
}
.ilo-home-stat-grid div:nth-child(2) strong {
  color: #2980b9;
}
.ilo-home-stat-grid div:nth-child(3) strong {
  color: #11aeb2;
}
.ilo-home-stat-grid div:nth-child(4) strong {
  color: #17221a;
  font-size: 2.2rem;
}
.ilo-home-stat-grid span {
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ilo-home-mission,
.ilo-home-context,
.ilo-home-method,
.ilo-home-projects,
.ilo-home-testimonials,
.ilo-home-hub {
  padding-block: 6rem;
}
.ilo-home-narrow {
  max-width: 52rem;
  margin: auto;
  padding-inline: 1rem;
  text-align: center;
}
.ilo-home-kicker {
  display: inline-block;
  color: #16c04c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ilo-home h2 {
  margin: 0.7rem 0 1rem;
  font:
    700 clamp(2.1rem, 5vw, 3.6rem)/1.1 "Playfair Display",
    serif;
}
.ilo-home h2 em {
  color: #16c04c;
  font-style: italic;
}
.ilo-home-narrow p,
.ilo-home-context p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.8;
}
.ilo-home-narrow i {
  display: block;
  width: 1px;
  height: 4rem;
  margin: 1.5rem auto 0;
  background: linear-gradient(#16c04c, transparent);
}
.ilo-home-context {
  background: #fff;
}
.ilo-home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ilo-home-context-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
}
.ilo-home-context-image img {
  display: block;
  width: 100%;
}
.ilo-home-context-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3rem 2rem 1.5rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font:
    italic 1.4rem "Playfair Display",
    serif;
}
.ilo-home-context h2 em {
  color: #e67e22;
}
.ilo-home-context-cards,
.ilo-home-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.ilo-home-context-cards article,
.ilo-home-mini-grid article {
  padding: 1.3rem;
  border-left: 4px solid #16c04c;
  border-radius: 0.75rem;
  background: #f4f8f5;
}
.ilo-home-context-cards article:last-child {
  border-color: #2980b9;
}
.ilo-home-context-cards h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}
.ilo-home-context-cards p,
.ilo-home-mini-grid p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.ilo-home-axes {
  padding-block: 4rem;
  border-radius: 3rem;
  background: rgba(249, 224, 188, 0.2);
}
.ilo-home-axes h2,
.ilo-home-section-heading {
  text-align: center;
}
.ilo-home-axis-grid,
.ilo-home-method-grid,
.ilo-home-circular-grid,
.ilo-home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ilo-home-axis {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 1.3rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.ilo-home-axis b {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.1rem;
  border-radius: 0.9rem;
  color: #16c04c;
  background: #e8f7ed;
  font-size: 1.4rem;
}
.ilo-home-axis h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.ilo-home-axis p {
  margin: 0;
  color: #6b7280;
  font-size: 0.87rem;
  line-height: 1.5;
}
.ilo-home-method {
  background: linear-gradient(#fff, #fff9f0);
}
.ilo-home-method-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 65rem;
  margin: 3rem auto 0;
}
.ilo-home-method-grid article {
  position: relative;
  text-align: center;
}
.ilo-home-method-grid article:not(:last-child)::after {
  position: absolute;
  top: 2.2rem;
  right: -25%;
  left: 75%;
  height: 2px;
  background: #e5e7eb;
  content: "";
}
.ilo-home-method-grid b {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: auto;
  border: 4px solid rgba(22, 192, 76, 0.2);
  border-radius: 50%;
  color: #16c04c;
  background: #fff;
  font-size: 2rem;
}
.ilo-home-method-grid h3 {
  margin: 1rem 0 0.4rem;
}
.ilo-home-method-grid p {
  margin: auto;
  max-width: 15rem;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}
.ilo-home-circular {
  color: #fff;
  background: #1f2937;
}
.ilo-home-circular .ilo-home-kicker {
  color: #11aeb2;
}
.ilo-home-circular .ilo-home-section-heading p {
  color: #9ca3af;
}
.ilo-home-circular-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 65rem;
  margin: 3rem auto 0;
  align-items: center;
}
.ilo-home-circular-grid article {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}
.ilo-home-circular-grid b {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
}
.ilo-home-circular-grid small {
  color: #6b7280;
}
.ilo-home-circular-grid h3 {
  color: #16c04c;
}
.ilo-home-circular-grid p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.5;
}
.ilo-home-circular-feature {
  transform: scale(1.08);
  border-color: rgba(17, 174, 178, 0.5) !important;
}
.ilo-home-project-feature,
.ilo-home-efijery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
.ilo-home-project-image,
.ilo-home-efijery-image {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 1rem;
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.ilo-home-project-image span,
.ilo-home-efijery-image span {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  font-weight: 800;
}
.ilo-home-project-image small {
  display: block;
  margin-top: 0.3rem;
  color: #d1d5db;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.ilo-home-project-feature h3,
.ilo-home-efijery h3 {
  margin: 0 0 1.3rem;
  font:
    700 2.5rem/1.1 "Playfair Display",
    serif;
}
.ilo-home-project-feature > div:last-child > p,
.ilo-home-efijery > div > p {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
}
.ilo-home-project-feature ul {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
  border-left: 2px solid rgba(22, 192, 76, 0.3);
  color: #4b5563;
  line-height: 2;
}
.ilo-home-impact {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.ilo-home-impact h3 {
  margin: 0;
  color: #2980b9;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ilo-home-impact h4 {
  margin: 0.4rem 0 1rem;
  font:
    700 1.4rem "Playfair Display",
    serif;
}
.ilo-home-chart {
  height: 16rem;
  border-bottom: 1px solid #e5e7eb;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3.9rem,
    #e5e7eb 4rem
  );
}
.ilo-home-chart svg {
  width: 100%;
  height: 100%;
}
.ilo-home-chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.ilo-home-project-reverse {
  margin-top: 6rem;
}
.ilo-home-project-reverse > div:first-child {
  order: 2;
}
.ilo-home-callout {
  margin: 1.5rem 0;
  padding: 1rem;
  border-left: 4px solid #2980b9;
  border-radius: 0.5rem;
  background: #eff6ff;
}
.ilo-home-callout p {
  margin: 0.3rem 0 0;
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.5;
}
.ilo-home-efijery {
  margin-top: 6rem;
  padding: 3rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.ilo-home-efijery h3 em {
  display: block;
  margin-top: 0.5rem;
  color: #11aeb2;
  font:
    500 1.4rem "Playfair Display",
    serif;
}
.ilo-home-new {
  display: inline-block;
  margin-right: 0.8rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(17, 174, 178, 0.2);
  border-radius: 999px;
  color: #11aeb2;
  background: rgba(17, 174, 178, 0.1);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.ilo-home-efijery-image {
  min-height: 30rem;
}
.ilo-home-testimonials {
  border-top: 1px solid #e5e7eb;
}
.ilo-home-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.ilo-home-heading-row h2 {
  text-align: left;
}
.ilo-home-arrows {
  font-size: 1.5rem;
}
.ilo-home-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}
.ilo-home-testimonial-grid article {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border-radius: 1rem;
  background-position: center;
  background-size: cover;
}
.ilo-home-testimonial-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  content: "";
}
.ilo-home-testimonial-grid article > div:last-child {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  color: #fff;
}
.ilo-home-testimonial-grid h3 {
  margin: 0;
  font:
    1.7rem "Playfair Display",
    serif;
}
.ilo-home-testimonial-grid b {
  color: #11aeb2;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ilo-home-testimonial-grid p {
  color: #d1d5db;
  font-size: 0.85rem;
}
.ilo-home-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
}
.ilo-home-hub {
  background: linear-gradient(135deg, #f9f9f7, #fff4e4);
}
.ilo-home-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 60rem;
  margin: 3rem auto 0;
}
.ilo-home-hub-card {
  position: relative;
  padding: 1.3rem;
  border-left: 4px solid #16c04c;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.75);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.ilo-home-hub-card b {
  font-size: 1.05rem;
}
.ilo-home-hub-card p {
  margin: 0.5rem 1.5rem 0 0;
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.4;
}
.ilo-home-hub-card span {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.ilo-home-hub-blue {
  border-color: #2980b9;
}
.ilo-home-hub-cyan {
  border-color: #11aeb2;
}
.ilo-home-hub-orange {
  border-color: #e67e22;
}
.ilo-home-hub-gray {
  border-color: #9ca3af;
}
@keyframes ilo-home-bounce {
  50% {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 800px) {
  .ilo-home-shell {
    width: min(100% - 2.5rem, 80rem);
  }
  .ilo-home-stat-grid,
  .ilo-home-two-col,
  .ilo-home-axis-grid,
  .ilo-home-project-feature,
  .ilo-home-efijery,
  .ilo-home-testimonial-grid,
  .ilo-home-hub-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ilo-home-method-grid,
  .ilo-home-circular-grid {
    grid-template-columns: 1fr;
  }
  .ilo-home-project-feature,
  .ilo-home-efijery {
    gap: 2rem;
  }
  .ilo-home-project-reverse > div:first-child {
    order: 0;
  }
  .ilo-home-circular-feature {
    transform: none;
  }
  .ilo-home-method-grid article:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 560px) {
  .ilo-home-hero {
    min-height: 42rem;
  }
  .ilo-home-hero-content {
    padding-top: 7rem;
  }
  .ilo-home-hero h1 {
    font-size: 3.5rem;
  }
  .ilo-home-actions,
  .ilo-home-actions .ilo-home-button {
    width: 100%;
  }
  .ilo-home-stat-grid,
  .ilo-home-two-col,
  .ilo-home-axis-grid,
  .ilo-home-project-feature,
  .ilo-home-efijery,
  .ilo-home-testimonial-grid,
  .ilo-home-hub-grid,
  .ilo-home-context-cards,
  .ilo-home-mini-grid {
    grid-template-columns: 1fr;
  }
  .ilo-home-stats {
    margin-top: -1rem;
  }
  .ilo-home-stat-grid {
    padding: 1rem;
  }
  .ilo-home-stat-grid div {
    padding: 1rem 0.25rem;
  }
  .ilo-home-project-image,
  .ilo-home-efijery-image {
    min-height: 22rem;
  }
  .ilo-home-efijery {
    padding: 1.5rem;
  }
  .ilo-home-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .ilo-home-section-heading h2 {
    font-size: 2.5rem;
  }
}

/* Final visual overrides mirror the React section geometry and interactions. */
.ilo-home {
  background: #f9f9f7;
}
.ilo-home-mission {
  min-height: 31rem;
  display: grid;
  place-items: center;
  padding-block: 7rem;
  background:
    radial-gradient(
      circle at 90% 45%,
      rgba(245, 158, 11, 0.08),
      transparent 28%
    ),
    radial-gradient(circle at 5% 90%, rgba(22, 192, 76, 0.08), transparent 26%);
}
.ilo-home-mission .ilo-home-narrow {
  max-width: 52rem;
}
.ilo-home-mission h2 {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.05;
}
.ilo-home-mission p {
  font-size: 1.15rem;
}
.ilo-home-axes {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 6rem 0;
  border-radius: 0;
}
.ilo-home-axis {
  min-height: 16rem;
  padding: 2rem;
  border-radius: 1.5rem;
}
.ilo-home-axis b {
  position: relative;
  z-index: 1;
  font-size: 1.85rem;
}
.ilo-home-axis-blue b {
  color: #2980b9;
  background: #eff6ff;
}
.ilo-home-axis-cyan b {
  color: #11aeb2;
  background: #ecfeff;
}
.ilo-home-axis-purple b {
  color: #9333ea;
  background: #faf5ff;
}
.ilo-home-method {
  padding-block: 7rem;
}
.ilo-home-method-grid b {
  width: 6rem;
  height: 6rem;
  font-size: 2.35rem;
}
.ilo-home-circular {
  background: #101a2b;
  background-image: radial-gradient(#ffffff18 1px, transparent 1px);
  background-size: 20px 20px;
}
.ilo-home-circular-grid {
  max-width: 60rem;
  gap: 5rem;
}
.ilo-home-circular-grid article {
  min-height: 14rem;
  padding: 1.5rem;
  border-radius: 1rem;
}
.ilo-home-circular-feature {
  transform: scale(1.08);
}
.ilo-home-circular-grid h3 {
  margin: 0.75rem 0 0.5rem;
  color: #01d2c5;
}
.ilo-home-circular-grid article:nth-child(2) h3 {
  color: #f59e0b;
}
.ilo-home-circular-grid article:nth-child(3) h3 {
  color: #16c04c;
}
.ilo-home-testimonials {
  padding-block: 7rem;
  background: #f9f9f7;
}
.ilo-home-arrows {
  display: flex;
  gap: 0.75rem;
}
.ilo-home-arrows button {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #111827;
  background: #fff;
  cursor: pointer;
}
.ilo-home-arrows button:last-child {
  color: #fff;
  background: #111827;
}
.ilo-home-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}
.ilo-home-testimonial-card {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  color: #fff;
  background: #111827;
  text-align: left;
  cursor: pointer;
}
.ilo-home-testimonial-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.7s;
}
.ilo-home-testimonial-card:hover video {
  transform: scale(1.08);
}
.ilo-home-testimonial-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.9));
}
.ilo-home-testimonial-card .ilo-home-play {
  z-index: 2;
}
.ilo-home-testimonial-copy {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: block;
}
.ilo-home-testimonial-copy strong,
.ilo-home-testimonial-copy b,
.ilo-home-testimonial-copy small {
  display: block;
}
.ilo-home-testimonial-copy strong {
  font:
    1.7rem "Playfair Display",
    serif;
}
.ilo-home-testimonial-copy b {
  margin: 0.35rem 0;
  color: #01d2c5;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ilo-home-testimonial-copy small {
  color: #d1d5db;
  font-size: 0.85rem;
  line-height: 1.45;
}
.ilo-voice-modal .ilo-video-dialog {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(15rem, 1fr);
}
.ilo-voice-modal video {
  min-width: 0;
}
.ilo-voice-modal-copy {
  padding: 2rem 1.5rem;
  color: #fff;
  background: #080808;
}
.ilo-voice-modal-copy strong,
.ilo-voice-modal-copy small {
  display: block;
}
.ilo-voice-modal-copy strong {
  font:
    1.6rem "Playfair Display",
    serif;
}
.ilo-voice-modal-copy small {
  margin-top: 0.25rem;
  color: #01d2c5;
}
.ilo-voice-modal-copy p {
  margin-top: 1.5rem;
  color: #d1d5db;
  line-height: 1.6;
}
.ilo-home-hub {
  padding-block: 7rem;
  background: linear-gradient(135deg, #f9f9f7, #fff4e4);
}
.ilo-home-hub-orbit {
  position: relative;
  width: min(100%, 70rem);
  min-height: 38rem;
  margin: 0 auto;
}
.ilo-home-hub-orbit svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ilo-home-hub-orbit line {
  stroke: #16c04c;
  stroke-opacity: 0.25;
  stroke-width: 1;
}
.ilo-home-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 10rem;
  height: 10rem;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(22, 192, 76, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(22, 192, 76, 0.15);
  backdrop-filter: blur(12px);
  text-align: center;
}
.ilo-home-hub-center img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.ilo-home-hub-center strong {
  font:
    700 1.25rem "Playfair Display",
    serif;
}
.ilo-home-hub-center small {
  color: #16c04c;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ilo-home-hub-node {
  position: absolute;
  z-index: 3;
  width: 16rem;
  padding: 1rem;
  border-left: 4px solid #16c04c;
  border-radius: 0.8rem;
  color: #111827;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.ilo-home-hub-node > .material-symbols-outlined {
  float: left;
  margin-right: 0.6rem;
  color: #16c04c;
}
.ilo-home-hub-node strong {
  display: block;
  padding-top: 0.15rem;
  font-size: 0.9rem;
}
.ilo-home-hub-node p {
  clear: both;
  margin: 0.8rem 0;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.45;
}
.ilo-home-hub-node small {
  color: #16c04c;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ilo-home-hub-node small .material-symbols-outlined {
  font-size: 0.9rem;
  vertical-align: middle;
}
.ilo-home-hub-node-top-left {
  top: 10%;
  left: 8%;
  border-color: #2980b9;
}
.ilo-home-hub-node-top-right {
  top: 10%;
  right: 8%;
  border-color: #01d2c5;
}
.ilo-home-hub-node-bottom-left {
  bottom: 8%;
  left: 12%;
  border-color: #f59e0b;
}
.ilo-home-hub-node-bottom-right {
  right: 12%;
  bottom: 8%;
  color: #fff;
  background: #16c04c;
  border-color: #16c04c;
}
.ilo-home-hub-node-bottom-right p,
.ilo-home-hub-node-bottom-right small {
  color: rgba(255, 255, 255, 0.9);
}
.ilo-home-hub-node-faq {
  top: 0;
  left: 50%;
  width: 10rem;
  transform: translateX(-50%);
  border-color: #9ca3af;
}
.ilo-home-back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid #01d2c5;
  border-radius: 50%;
  color: #111827;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.ilo-home-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.ilo-home-back-to-top:hover {
  transform: translateY(-4px);
}
@media (max-width: 800px) {
  .ilo-home-circular-grid,
  .ilo-home-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .ilo-home-circular-feature {
    transform: none;
  }
  .ilo-home-hub-orbit {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 9rem;
  }
  .ilo-home-hub-orbit svg {
    display: none;
  }
  .ilo-home-hub-center {
    top: 4.5rem;
  }
  .ilo-home-hub-node,
  .ilo-home-hub-node-top-left,
  .ilo-home-hub-node-top-right,
  .ilo-home-hub-node-bottom-left,
  .ilo-home-hub-node-bottom-right,
  .ilo-home-hub-node-faq {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }
  .ilo-voice-modal .ilo-video-dialog {
    display: block;
  }
}
