/* =========================================
   DIOCLES SYSTÈME — Shared Styles v2
   Forest Green (#2A3C34) + White
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

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

:root {
  --green-900: #1A2620;
  --green-800: #2A3C34;   /* PRIMARY CLIENT COLOR */
  --green-700: #34493F;
  --green-600: #3F594C;
  --green-500: #4B6A5A;
  --green-400: #5E8070;
  --green-300: #7A9B8B;
  --green-200: #A3BEB1;
  --green-100: #C8D9CE;
  --green-50:  #E8F1EC;
  --lime:      #BFFF00;
  --white:     #FFFFFF;
  --white-nav: #ffffffeb;
  --off-white: #F7F8F2;
  --gray-100:  #F0F1EB;
  --gray-200:  #E0E2D8;
  --gray-300:  #B0B3A5;
  --gray-500:  #6B6E60;
  --gray-700:  #3A3D32;
  --dark:      #111210;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-700); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--green-900); }
p.justified, .section p.justified { text-align: justify; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--green { background: var(--green-800); color: var(--white); }
.section--green h2, .section--green h3, .section--green h4 { color: var(--white); }
.section--light { background: var(--off-white); }

.tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.tag--green { background: var(--green-50); color: var(--green-700); }
.tag--lime { background: var(--lime); color: var(--green-900); }
.tag--white { background: rgba(255,255,255,0.15); color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 60px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
  cursor: pointer; border: none; position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.btn--primary { background: var(--green-800); color: var(--white); }
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(42, 60, 52, 0.35); }
.btn--lime { background: var(--lime); color: var(--green-900); }
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(191, 255, 0, 0.35); }
.btn--outline { background: transparent; color: var(--green-800); border: 2px solid var(--green-300); }
.btn--outline:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); transform: translateY(-2px); }
.btn--white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn--white-outline:hover { background: var(--white); color: var(--green-800); border-color: var(--white); }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn svg, .btn .arrow { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out-expo); }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }

/* =========================================
   NAV — centered logo, split menu, no scroll effect
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(42, 60, 52, 0.08);
  padding: 12px 0;
}
.nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
}
.nav__left, .nav__right { display: flex; align-items: center; gap: 4px; }
.nav__left { justify-content: flex-end; }
.nav__right { justify-content: flex-start; }
.nav__logo-center { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo-center img { height: 58px; width: auto; transition: transform 0.4s var(--ease-out-expo); }
.nav__logo-center:hover img { transform: scale(1.05); }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 50px;
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500;
  color: var(--gray-700); transition: all 0.3s; white-space: nowrap; cursor: pointer;
}
.nav__link:hover, .nav__link.active { background: var(--green-50); color: var(--green-800); }
.nav__link--boutique { background: var(--lime); color: var(--green-900) !important; font-weight: 700; }
.nav__link--boutique:hover { box-shadow: 0 4px 20px rgba(191, 255, 0, 0.4); transform: translateY(-1px); }
.nav__cta {
  padding: 10px 20px; border-radius: 50px;
  background: var(--green-800); color: var(--white) !important; font-weight: 600;
}
.nav__cta:hover { background: var(--green-700); box-shadow: 0 4px 20px rgba(42, 60, 52, 0.3); }
.nav__link-caret { display: inline-block; width: 10px; height: 10px; transition: transform 0.3s; }
.nav__item:hover .nav__link-caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px; background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(42, 60, 52, 0.12), 0 0 0 1px rgba(42, 60, 52, 0.05);
  padding: 8px; opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease-out-expo); z-index: 100;
}
.nav__item:hover .nav__dropdown, .nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500;
  color: var(--gray-700); transition: all 0.2s;
}
.nav__dropdown a:hover { background: var(--green-50); color: var(--green-800); }
.nav__dropdown a.active { background: var(--green-50); color: var(--green-800); font-weight: 600; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-800); border-radius: 2px; transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1100px) {
  .nav__link { font-size: 0.78rem; padding: 8px 10px; }
  .nav__logo-center img { height: 48px; }
}
@media (max-width: 900px) {
  .nav__inner { padding: 0 20px; }
  .nav__left, .nav__right { display: none; }
  .nav__burger { display: flex; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
  .nav__logo-center img { height: 46px; }
  .mobile-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px;
    height: 100vh; background: var(--white);
    padding: 90px 28px 40px;
    transition: right 0.5s var(--ease-out-expo);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    overflow-y: auto; z-index: 999;
  }
  .mobile-menu.open { right: 0; }
  .mobile-menu__section { border-top: 1px solid var(--gray-200); padding: 16px 0; }
  .mobile-menu__section:first-child { border-top: none; }
  .mobile-menu__heading {
    font-family: var(--font-display); font-weight: 700; color: var(--green-800);
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
  }
  .mobile-menu a {
    display: block; padding: 10px 0;
    font-family: var(--font-mono); font-size: 1rem; color: var(--gray-700); font-weight: 500;
  }
  .mobile-menu a.active { color: var(--green-800); font-weight: 700; }
  .mobile-menu__sub a { padding-left: 16px; font-size: 0.92rem; color: var(--gray-500); }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

/* =========================================
   HERO with YouTube video background
   ========================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--green-900);
}
.hero--compact { min-height: 70vh; padding: 160px 0 80px; }
.hero__video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.hero__video iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.77vh;
  pointer-events: none; border: 0; opacity: 0.55;
}
.hero__video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,60,52,0.55) 0%, rgba(42,60,52,0.75) 60%, rgba(26,38,32,0.92) 100%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(191,255,0,0.08) 0%, transparent 60%);
  z-index: 1;
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1; pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 140px 24px 80px; width: 100%;
}
.hero__tag { margin-bottom: 24px; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.2s both; }
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white); margin-bottom: 24px; max-width: 900px;
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.35s both;
}
.hero__title .accent { color: var(--lime); display: inline; }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78); max-width: 620px;
  margin-bottom: 40px; line-height: 1.7;
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.5s both;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.65s both; }
.hero__stats { display: flex; gap: 48px; margin-top: 64px; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.8s both; }
.hero__stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--lime); }
.hero__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* --- Section Headers --- */
.section__header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section__header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 16px; margin-bottom: 16px; }
.section__header p { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; }

/* --- Cards --- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 20px; padding: 36px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--lime));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(42,60,52,0.08); border-color: var(--green-200); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--green-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.card__title { font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; }
.card__text { font-size: 0.95rem; color: var(--gray-500); line-height: 1.65; }
.card--dark { background: var(--green-800); border-color: rgba(255,255,255,0.1); }
.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: rgba(255,255,255,0.7); }
.card--dark .card__icon { background: rgba(255,255,255,0.1); }

/* --- Marquee --- */
.marquee { overflow: hidden; background: var(--lime); padding: 14px 0; white-space: nowrap; }
.marquee__track { display: flex; animation: marquee 30s linear infinite; }
.marquee__item {
  flex-shrink: 0; padding: 0 40px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.9rem; color: var(--green-900);
  text-transform: uppercase; letter-spacing: 2px;
  display: flex; align-items: center; gap: 16px;
}
.marquee__item::after { content: '✦'; font-size: 0.6rem; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 40px 24px; position: relative; }
.step__number { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--green-50); line-height: 1; margin-bottom: 16px; }
.step__title { font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; }
.step__text { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 24px; overflow: hidden; transition: all 0.4s var(--ease-out-expo); }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(42,60,52,0.08); }
.team-card__img { width: 100%; height: 280px; object-fit: cover; background: var(--green-50); }
.team-card__body { padding: 28px; }
.team-card__name { font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.team-card__role {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--green-600);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.team-card__bio { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; text-align: justify; }
.team-card__quote {
  margin-top: 16px; padding: 16px; background: var(--green-50); border-radius: 12px;
  font-style: italic; font-size: 0.88rem; color: var(--green-800);
  line-height: 1.6; border-left: 3px solid var(--green-500);
}

/* --- CTA --- */
.cta-section { background: var(--green-800); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(191,255,0,0.06) 0%, transparent 60%);
}
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-section .btn { position: relative; }

/* --- Footer --- */
.footer { background: var(--green-800); color: rgba(255,255,255,0.55); padding: 72px 0 32px; position: relative; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.65; max-width: 340px; }
.footer__brand-logo {
  background: var(--white); padding: 12px 20px; border-radius: 12px;
  display: inline-block; margin-bottom: 4px;
}
.footer__brand-logo img { height: 40px; width: auto; }
.footer__heading {
  font-family: var(--font-display); font-weight: 700; color: var(--white);
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer__link { display: block; padding: 6px 0; font-size: 0.9rem; transition: color 0.3s; }
.footer__link:hover { color: var(--lime); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.8rem;
}
.footer__legal { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 0.85rem;
}
.footer__social a:hover { background: var(--lime); color: var(--green-900); }

@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* --- Boutique Popup --- */
.boutique-banner {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--green-800); color: var(--white);
  padding: 20px 24px; border-radius: 16px;
  display: flex; align-items: center; gap: 16px;
  z-index: 999; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  transform: translateY(120%);
  animation: slideUpBanner 0.6s var(--ease-out-expo) 3s forwards;
  max-width: 360px;
}
.boutique-banner__icon { font-size: 1.5rem; flex-shrink: 0; }
.boutique-banner__text { font-size: 0.85rem; line-height: 1.5; }
.boutique-banner__text strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--lime); margin-bottom: 2px; }
.boutique-banner__close {
  position: absolute; top: 8px; right: 12px; background: none; border: none;
  color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1.2rem; line-height: 1;
}
.boutique-banner__close:hover { color: var(--white); }
.boutique-banner__link { color: var(--lime); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Page Hero with video bg --- */
.page-hero {
  padding: 0; position: relative; overflow: hidden;
  min-height: 62vh; display: flex; align-items: center;
  background: var(--green-900);
}
.page-hero__content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1200px; margin: 0 auto;
  padding: 160px 24px 80px;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; max-width: 800px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.72); max-width: 640px; line-height: 1.7; }
.page-hero p.justified { text-align: justify; }

/* --- Corps badges --- */
.corps-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.corps-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.08);
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85);
  font-family: var(--font-mono); backdrop-filter: blur(10px);
}
.corps-badge span { font-size: 1.1rem; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.85rem; margin-bottom: 8px; color: var(--green-800);
}
.form-input {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--gray-200); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem;
  transition: all 0.3s; background: var(--white); color: var(--gray-700);
}
.form-input:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(75, 106, 90, 0.12); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6E60' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}

/* --- Bento --- */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 20px; padding: 32px;
  transition: all 0.4s var(--ease-out-expo); overflow: hidden;
}
.bento-item:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(42,60,52,0.07); }
.bento-item--span6 { grid-column: span 6; }
.bento-item--span4 { grid-column: span 4; }
.bento-item--span8 { grid-column: span 8; }
.bento-item--span12 { grid-column: span 12; }
.bento-item--green { background: var(--green-800); border-color: transparent; color: var(--white); }
.bento-item--green h3, .bento-item--green h4 { color: var(--white); }
.bento-item--green p { color: rgba(255,255,255,0.72); }
.bento-item--lime { background: var(--lime); border-color: transparent; color: var(--green-900); }
@media (max-width: 768px) {
  .bento-grid { display: flex; flex-direction: column; }
  .bento-item { grid-column: span 12 !important; }
}

/* --- Animations --- */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slideUpBanner { to { transform: translateY(0); } }

/* --- Big number --- */
.big-number { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1; color: var(--green-800); }
.big-number--lime { color: var(--lime); }

/* --- Promo strip --- */
.promo-strip {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  padding: 24px; border-radius: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.promo-strip p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.promo-strip strong { color: var(--lime); font-family: var(--font-display); }

/* --- Event card --- */
.event-card {
  background: var(--white); border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(42, 60, 52, 0.08);
  border: 1px solid var(--gray-200);
}
.event-card__date { text-align: center; padding: 32px 16px; background: var(--green-800); color: var(--white); border-radius: 16px; }
.event-card__date .day { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; color: var(--lime); line-height: 1; }
.event-card__date .month { font-family: var(--font-mono); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; color: rgba(255,255,255,0.8); }
.event-card__date .time { font-family: var(--font-mono); font-size: 0.85rem; margin-top: 12px; color: rgba(255,255,255,0.65); }
.event-card__meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; margin-bottom: 16px; }
@media (max-width: 768px) { .event-card { grid-template-columns: 1fr; padding: 32px; gap: 24px; } }

/* --- Misc --- */
.text-lime { color: var(--lime); }
.text-green { color: var(--green-600); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.inline-flex { display: inline-flex; align-items: center; gap: 8px; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--green-500), var(--lime)); border-radius: 4px; margin: 16px auto; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero__content { padding: 140px 24px 64px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .cards-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 55vh; }
  .page-hero__content { padding: 140px 24px 60px; }
}

/* =========================================
   COMPATIBILITY PATCHES — HTML<->CSS aliases
   ========================================= */

/* HTML uses .nav__side (--left/--right) */
.nav__side { display: flex; align-items: center; gap: 4px; }
.nav__side--left { justify-content: flex-end; }
.nav__side--right { justify-content: flex-start; }

/* HTML uses .caret (not .nav__link-caret) */
.nav__link .caret { display: inline-block; width: 10px; height: 7px; transition: transform 0.3s; }
.nav__item:hover .caret { transform: rotate(180deg); }

/* HTML uses .video-bg and .video-overlay */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30,44,37,0.55) 0%, rgba(30,44,37,0.78) 100%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(191,255,0,0.06) 0%, transparent 60%);
  z-index: 1;
}

/* Page-hero needs the same video-bg treatment */
.page-hero { display: flex; align-items: center; }
.page-hero .video-bg + .video-overlay { z-index: 1; }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding: 180px 24px 80px; }

/* HTML uses .nav__mobile-menu / .nav__mobile-group */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  flex-direction: column;
  padding: 96px 24px 40px;
  transition: right 0.5s var(--ease-out-expo);
  box-shadow: -20px 0 60px rgba(0,0,0,0.1);
  overflow-y: auto;
  z-index: 999;
  gap: 2px;
}
.nav__mobile-menu.open { right: 0; display: flex; }
.nav__mobile-menu .nav__link {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.98rem;
  justify-content: flex-start;
  border-radius: 10px;
}
.nav__mobile-group {
  border-top: 1px solid var(--gray-200);
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__mobile-group-title {
  padding: 10px 16px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-800);
}
.nav__mobile-group .nav__link {
  padding-left: 28px;
  font-size: 0.9rem;
}

/* Mobile: hide desktop sides, show burger */
@media (max-width: 900px) {
  .nav__side { display: none; }
  .nav__burger { display: flex !important; position: static; transform: none; margin-left: auto; }
  .nav__inner { grid-template-columns: 1fr auto 1fr; }
  .nav__logo-center { grid-column: 2; }
  .nav__mobile-menu.open { display: flex; }
}

/* Justify long paragraphs (client request for >20 word paragraphs) */
.hero__subtitle, .page-hero p, .card__text, .bento-item p,
.team-card__bio, .team-card__quote {
  text-align: justify;
  text-justify: inter-word;
}

/* brand alias for bento-item */
.bento-item--brand {
  background: var(--green-800);
  border-color: transparent;
  color: var(--white);
}
.bento-item--brand h3, .bento-item--brand h4 { color: var(--white); }
.bento-item--brand p { color: rgba(255,255,255,0.75); }

/* Sibling tabs for Pro sub-pages */
.sibling-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.sibling-tab {
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.sibling-tab:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.sibling-tab.active { background: var(--lime); color: var(--green-900); }
