  main {
    background: #ECD8C7;
  }

  body.dark-mode,
  body.dark-mode main {
    background-color: #2d443c !important;
  }

  .hero-section {
    background: url("../images/peche-fond.webp") center 20%/cover no-repeat;
    color: white;

    padding: 60px 0 100px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 45vh;
  }

  @media (min-width: 769px) {
    .hero-section {
      min-height: 55vh;
      padding: 40px 0 100px;
      display: flex;
      align-items: center;
      clip-path: ellipse(120% 100% at 50% 0%);
      background-size: cover;
      background-position: center 30%;
    }

    .hero-section .container {
      width: 100%;
    }

    .hero-wave {
      display: none;
    }

    .hero-badge {
      display: none !important;
    }

    .hero-subtitle {
      display: none !important;
    }
  }

  @media (min-width: 769px) and (max-width: 991px) {
    .hero-section {
      min-height: unset;
    }
  }

  .hero-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 28, 45, 0.5) 0%, rgba(8, 28, 45, 0) 45%);
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-cta .btn-primary {
    background: linear-gradient(90deg, #1bb9a8 0%, #3b82f6 100%);
    border: none;
    box-shadow: 0 16px 32px rgba(20, 185, 168, 0.35);
  }

  .hero-cta .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto !important;
    max-width: 801px;
    padding: 20px 24px 0;
    text-align: center;
    width: 100%;
  }

  .hero-img {
    max-width: 100%;
    width: 720px;
    height: auto;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;

    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;

    background: transparent;
    backdrop-filter: none;
    padding: 0 8px;
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-top: 6px;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.8), 0 0 28px rgba(255, 255, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.85);
  }

  @media (max-width: 768px) {
    .hero-section {

      background-position: center top 10% !important;
      background-size: cover !important;
    }

    .hero-img {
      max-width: 100%;
      width: 110%;

      margin-left: -5%;

      transform: scale(1.1);

      margin-bottom: -70px;

    }

    .hero-subtitle {
      font-size: 1.05rem;

      background: transparent;
      backdrop-filter: none;
      padding: 0 10px;
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.7), 0 2px 4px rgba(0, 0, 0, 0.8);
    }
  }

  .highlights-section {
    background: #ECD8C7;
    padding: 80px 0;
  }

  .dark-mode .highlights-section {
    background: #2d443c;
  }

  .highlight-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  }

  .highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.76) saturate(1.1);
  }

  .highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 30, 45, 0.72) 0%, rgba(6, 30, 45, 0.2) 100%);
  }

  .highlight-content {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
  }

  .highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
  }

  .highlight-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .highlight-text {
    opacity: 0.92;
    margin-bottom: 16px;
  }

  .highlight-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .highlight-link:hover {
    color: #bfe8ff;
  }

  .features-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
  }

  @media (max-width: 768px) {
    .features-section {
      position: relative;
      padding: 0;
    }
  }

  .section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 20px;
  }

  .dark-mode .section-title {
    color: var(--text-dark);
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #1bb9a8 0%, #3b82f6 100%);
    border-radius: 2px;
  }

  .feature-card {
    background: var(--card-light);
    border-radius: 22px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 14px 35px rgba(8, 36, 52, 0.08);
    position: relative;
    overflow: hidden;
  }

  .dark-mode .feature-card {
    background: var(--card-dark);
    border-color: var(--border-dark);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1bb9a8 0%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(8, 36, 52, 0.18);
  }

  .dark-mode .feature-card:hover {
    box-shadow: 0 20px 45px rgba(24, 130, 140, 0.3);
  }

  .feature-preview {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }

  .feature-preview img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1bb9a8 0%, #3b82f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 22px rgba(27, 185, 168, 0.35);
  }

  .feature-title {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    color: var(--text-light);
  }

  .dark-mode .feature-title {
    color: var(--text-dark);
  }

  .feature-description {
    color: var(--text-light);
    opacity: 0.82;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .dark-mode .feature-description {
    color: var(--text-dark);
  }

  .feature-link {
    display: inline-flex;
    align-items: center;
    color: #1b8f86;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .feature-link:hover {
    color: #2b6ff6;
    gap: 10px;
  }

  .feature-link i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
  }

  .feature-link:hover i {
    margin-left: 12px;
  }

  .stats-section {
    background: linear-gradient(135deg, rgba(20, 140, 135, 0.95) 0%, rgba(14, 54, 88, 0.98) 100%);
    padding: 70px 0;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .stats-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 40%);
    pointer-events: none;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
  }

  .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
  }

  .cta-section {
    background: linear-gradient(135deg, rgba(6, 30, 45, 0.92), rgba(20, 140, 135, 0.85)),
      url("../images/peche-fond.webp") center/cover no-repeat;
    padding: 80px 0;
    color: white;
  }

  .cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
  }

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

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeInUp 0.8s ease;
  }

  /* Unified with other feature-card rules */

  #intro-overlay {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(72, 202, 228, 0.4) 0%, transparent 40%),
      radial-gradient(ellipse at 80% 20%, rgba(0, 119, 182, 0.3) 0%, transparent 50%),
      linear-gradient(180deg, #0077b6 0%, #023e8a 40%, #012a5c 100%);
    z-index: 10000;
    overflow: hidden;
    transition: transform 2.2s cubic-bezier(0.77, 0, 0.175, 0), opacity 1s ease-in, visibility 2.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
  }

  .intro-bubble {
    position: absolute;
    bottom: -30px;
    background:
      radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 20%, rgba(255, 255, 255, 0.3) 50%, rgba(200, 240, 255, 0.15) 100%);
    border-radius: 50%;
    box-shadow:
      inset -3px -3px 8px rgba(255, 255, 255, 0.9),
      inset 2px 2px 6px rgba(0, 100, 150, 0.3),
      0 0 15px rgba(255, 255, 255, 0.5),
      0 0 25px rgba(200, 240, 255, 0.3);
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0;
    animation: riseBubbleSimple var(--duration) ease-out forwards;
    animation-delay: var(--delay);
  }

  .intro-bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 60%);
    border-radius: 50%;
  }

  @keyframes riseBubbleSimple {
    0% {
      transform: translate3d(0, 0, 0) scale(0.7);
      opacity: 0;
    }

    10% {
      opacity: 0.9;
    }

    90% {
      opacity: 0.85;
    }

    100% {
      transform: translate3d(var(--drift), calc(-100vh - var(--height) - 200px), 0) scale(1.2);
      opacity: 0;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .hero-grid {
      align-items: start;
      justify-items: center;
      padding-top: 20px;
      text-align: center;
    }

    .hero-title {
      font-size: 2rem;
      line-height: 1.25;
      margin-bottom: 0.8rem;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      font-weight: 800;
    }

    .hero-subtitle {

      font-size: clamp(0.7rem, 3.2vw, 0.92rem);
      line-height: 1.6;
      margin-bottom: 2rem;
      font-weight: 500;
      background: transparent;
      backdrop-filter: none;
      padding: 0 10px;
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.7), 0 2px 17px rgba(0, 0, 0, 0.8);

      white-space: normal;
      word-break: keep-all;
    }

    .hero-badge {
      display: none;

    }

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

    .hero-cta .btn {
      display: block;
      width: 100%;
      margin: 0;

    }

    .section-title {
      font-size: 2rem;
    }

    .stat-number {
      font-size: 2rem;
    }

    .hero-section {
      background-position: center 25% !important;

      clip-path: ellipse(150% 100% at 50% 0%);

      padding: 0 0 50px !important;

      min-height: 20vh !important;

    }

    body.dark-mode .hero-section {
      background-color: #2d443c;
      color: var(--text-dark);
    }

    @keyframes riseBubbleSimple {
      0% {
        transform: translate3d(0, 0, 0) scale(0.7);
        opacity: 0;
      }

      10% {
        opacity: 0.9;
      }

      90% {
        opacity: 0.85;
      }

      100% {
        transform: translate3d(var(--drift), calc(-100vh - var(--height) - 200px), 0) scale(1.2);
        opacity: 0;
      }
    }
  }

  .intro-text.intro-dark {
    display: none;
  }

  .intro-text.intro-light {
    display: block;
  }

  body.dark-mode .intro-text.intro-dark {
    display: block;
  }

  body.dark-mode .intro-text.intro-light {
    display: none;
  }

  .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
  }

  .hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: auto;

    max-height: 150px;
  }

  .hero-wave .shape-fill {

    fill: rgb(236, 216, 199);
  }

  .dark-mode .hero-wave .shape-fill {

    fill: #2d443c;
  }

  @media (max-width: 768px) {

    .hero-wave {
      display: none;
    }
  }

  @media (max-width: 991px) {

    body.home-page.navbar-is-transparent .navbar {
      background-color: transparent !important;
      background-image: radial-gradient(circle at 40px -259%, var(--navbar-light) 198px, transparent 209px) !important;
      background-size: 100% 100% !important;
      background-repeat: no-repeat !important;
      box-shadow: none !important;
      transition: background-color 0.4s ease-out;
    }

    body.home-page.dark-mode.navbar-is-transparent .navbar {
      background-image: radial-gradient(circle at 40px -259%, #2d443c 198px, transparent 209px) !important;
    }

    body.home-page.navbar-is-transparent #safe-area-cover {
      background-color: transparent !important;
      background-image: radial-gradient(circle at -10px 50%, var(--navbar-light) 160px, transparent 240px) !important;
      background-size: 100% 100% !important;
      background-repeat: no-repeat !important;
      transition: background-color 0.4s ease-out;
    }

    body.home-page.dark-mode.navbar-is-transparent #safe-area-cover {
      background-image: radial-gradient(circle at -10px 50%, var(--navbar-dark) 160px, transparent 240px) !important;
    }

    body.home-page.navbar-is-transparent.menu-open .navbar,
    body.home-page.navbar-is-transparent.menu-open #safe-area-cover {
      background-color: var(--navbar-light) !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    }

    body.home-page.dark-mode.navbar-is-transparent.menu-open .navbar,
    body.home-page.dark-mode.navbar-is-transparent.menu-open #safe-area-cover {
      background-color: var(--navbar-dark) !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    }
  }

  .ma-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    padding: 14px 22px 10px;
    text-decoration: none;
    color: var(--text-light, #1a2b2a);
    transition: color 0.2s;
    position: relative;
  }

  .dark-mode .ma-item {
    color: var(--text-dark, #edeae6);
  }

  .ma-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(81, 157, 136, 0.15) 0%, rgba(81, 157, 136, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #519D88;
    transition: transform 0.2s, background 0.2s;
  }

  .dark-mode .ma-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #FFF;
  }

  .ma-item:hover .ma-icon,
  .ma-item:active .ma-icon {
    transform: scale(0.92);
  }

  .ma-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .ma-line {
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2.5px;
    border-radius: 2px;
    background: #519D88;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ma-item:hover .ma-line,
  .ma-item:active .ma-line,
  .ma-item:focus .ma-line {
    transform: scaleX(1);
  }

  .ma-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .ma-arrow.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .ma-arrow-left {
    left: 0;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 55%, transparent);
  }

  .ma-arrow-right {
    right: 0;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.96) 55%, transparent);
  }

  .dark-mode .ma-arrow-left {
    background: linear-gradient(to right, rgba(44, 67, 59, 0.97) 55%, transparent);
  }

  .dark-mode .ma-arrow-right {
    background: linear-gradient(to left, rgba(44, 67, 59, 0.97) 55%, transparent);
  }

  .ma-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #519D88;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dark-mode .ma-arrow svg {
    stroke: #81c7b5;
  }

  .ma-scroll-wrapper {
    display: block;
    position: relative;
    margin-bottom: 32px;
    padding: 0;
    z-index: 10;
  }

  .mobile-anchors {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--card-light, #fff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
    position: relative;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  .dark-mode .mobile-anchors {
    background: var(--card-dark, #2D443C);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }

  .mobile-anchors::-webkit-scrollbar {
    display: none;
  }

  @media (min-width: 769px) {
    .ma-scroll-wrapper {
      max-width: 700px;
      margin: -26px auto 36px;
      padding: 0 20px;
    }

    .mobile-anchors {
      border-radius: 14px;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    }

    .ma-item {
      padding: 14px 28px 10px;
    }
  }

  @media (min-width: 769px) and (max-width: 1300px) {
    .ma-scroll-wrapper {
      margin-top: -50px;
    }
  }

  @media (max-width: 768px) {
    .ma-scroll-wrapper {

      margin-top: -40px;
      margin-bottom: 32px;
      padding: 0 16px;
      overflow: visible;

      text-align: center;
    }

    .ma-arrow-left {
      left: 16px;
    }

    .ma-arrow-right {
      right: 16px;
    }

    .mobile-anchors {
      border-radius: 8px;

      display: inline-flex;
      width: auto;
      max-width: calc(100% - 0px);
    }

    .ma-item {
      padding: 14px 18px 10px;
    }
  }

  .feature-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background: var(--card-light, #fff);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.06));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    margin-bottom: 28px;
    cursor: pointer;
  }

  /* Unified with other feature-card rules */

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  }

  .feature-card-img {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .feature-card:hover .feature-card-img img {
    transform: scale(1.05);
  }

  .feature-card-body {
    flex: 1;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #519D88;
    margin-bottom: 10px;
  }

  .dark-mode .feature-card-tag {
    color: #81c7b5;
  }

  .feature-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light, #1a2b2a);
    margin-bottom: 10px;
    line-height: 1.28;
  }

  .dark-mode .feature-card-title {
    color: var(--text-dark, #e8f0ec);
  }

  .feature-card-desc {
    font-size: 0.9rem;
    color: var(--text-light, #1a2b2a);
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }

  .dark-mode .feature-card-desc {
    color: var(--text-dark, #e8f0ec);
  }

  .feature-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #519D88;
    color: white;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
  }

  .feature-card-btn:hover {
    background: #3d7d6a;
    color: white;
    transform: translateX(3px);
  }

  .dark-mode .feature-card-btn {
    background: #3a7060;
  }

  @media (max-width: 768px) {
    .feature-card {
      flex-direction: row !important;

      align-items: center;
      margin-bottom: 16px;
      border-radius: 12px;
      padding: 12px;

      min-height: 124px;
    }

    .feature-card[style*="row-reverse"] {
      flex-direction: row !important;

    }

    .feature-card-img {
      width: 100px !important;
      height: 100px !important;
      flex-shrink: 0;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    }

    .feature-card-body {
      padding: 0 0 0 16px !important;
      flex: 1;
      justify-content: flex-start;

    }

    .feature-card-title {
      font-size: 1.05rem;
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .feature-card-desc {
      font-size: 0.8rem;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .fc-desc-desktop {
      display: none !important;
    }

    .fc-desc-mobile {
      display: block !important;
    }

    .feature-card-tag {
      font-size: 0.65rem;
      margin-bottom: 6px;
    }

    .feature-card-btn {
      padding: 6px 12px;
      font-size: 0.75rem;
    }
  }

  @media (min-width: 769px) {
    .fc-desc-desktop {
      display: block !important;
    }

    .fc-desc-mobile {
      display: none !important;
    }
  }

  /* ===== SEO Links Strip — Image Layout Style ===== */
  .explore-links-strip {
    /* Background inherited from main for seamless transition */
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .explore-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .explore-section-header h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    color: #519D88;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  body.dark-mode .explore-section-header h2 {
    color: #81c7b5;
  }

  .explore-section-header h3 i {
    color: #519D88;
  }

  .explore-section-header a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #519D88;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }

  body.dark-mode .explore-section-header a {
    color: #81c7b5;
  }

  .explore-section-header a:hover {
    color: #519D88;
  }

  /* -- Espèces List -- */
  .explore-especes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .explore-espece-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #519D88;
    border-radius: 50px;
    padding: 6px 20px 6px 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  }

  body.dark-mode .explore-espece-pill {
    background: var(--card-dark);
    border-color: var(--border-dark);
  }

  .explore-espece-pill:hover {
    box-shadow: 0 6px 15px rgba(81, 157, 136, 0.15);
    transform: translateY(-2px);
  }

  .espece-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .espece-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
    border: 2px solid rgba(81, 157, 136, 0.2);
  }

  .espece-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .espece-name {
    font-weight: 700;
    color: #1b3d2f;
    font-size: 1rem;
  }

  body.dark-mode .espece-name {
    color: #e2e8e4;
  }

  .espece-arrow {
    color: #519D88;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
  }

  .explore-espece-pill:hover .espece-arrow {
    transform: translateX(4px);
  }

  /* -- Astuces Grid -- */
  .explore-astuces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (max-width: 576px) {
    .explore-astuces-grid {
      grid-template-columns: 1fr;
    }
  }

  .explore-astuce-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
  }

  body.dark-mode .explore-astuce-card {
    background: var(--card-dark);
    border-color: var(--border-dark);
  }

  .explore-astuce-card:hover {
    box-shadow: 0 8px 20px rgba(81, 157, 136, 0.1);
    transform: translateY(-3px);
  }

  .astuce-badge {
    background: #519D88;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
  }

  .astuce-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1b3d2f;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.dark-mode .astuce-title {
    color: #e2e8e4;
  }

  .astuce-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #519D88;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .explore-astuce-card:hover .astuce-link i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
  }

  /* -- Destinations Cloud -- */
  .explore-dest-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .explore-dest-pill {
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #519D88;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b3d2f;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  body.dark-mode .explore-dest-pill {
    background: var(--card-dark);
    border-color: var(--border-dark);
    color: #e2e8e4;
  }

  .explore-dest-pill:hover {
    background: #519D88;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(81, 157, 136, 0.2);
  }