/* ============================================
   SANORA — Brevo-identical Design System
   ============================================ */

:root {
  --font-title: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --mint: #c0ffa5;
  --mint-dark: #a8f08a;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --gray-1: #f7f7f7;
  --gray-2: #ececec;
  --gray-3: #6e6e6e;
  --gray-4: #9a9a9a;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;
  --container: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Titres — Plus Jakarta Sans --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* =============================================
   NAVBAR (Brevo: white bg, border-bottom, clean)
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  height: 64px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.nav-logo span {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: opacity var(--transition);
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Buttons (Brevo: dark bg, pill shape, arrow icon) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-md {
  padding: 12px 24px;
  font-size: 15px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

.btn-dark:hover {
  background: var(--dark-2);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--gray-2);
}

.btn-light:hover {
  border-color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: rgba(0,0,0,0.05);
}

.btn-mint {
  background: var(--dark);
  color: var(--white);
  border: none;
}

.btn-mint:hover {
  background: var(--dark-2);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* =============================================
   HERO (Brevo: colored bg section, large heading, rotating text)
   ============================================= */
.hero {
  padding-top: 64px;
  background: var(--mint);
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    max-height: none;
    padding-top: 64px;
    padding-bottom: 0;
    overflow: visible;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 0;
  }
}

/* Tag pill hero */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.07);
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hero-tag-dot {
  font-size: 10px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--dark);
  opacity: 0.65;
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
}

/* Rotating text — slide up fade */
.rotating-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-width: 2ch;
}

.rotating-word {
  display: inline-block;
  color: #1a4d2e;
  background: none;
  padding: 0;
  animation: wordCycle 12s ease-in-out infinite;
  animation-delay: calc(var(--i) * 3s);
  opacity: 0;
  position: absolute;
  left: 0;
  white-space: nowrap;
}

.rotating-word:first-child {
  position: relative;
}

@keyframes wordCycle {
  0%        { opacity: 0; transform: translateY(8px); }
  5%, 20%   { opacity: 1; transform: translateY(0); }
  25%       { opacity: 0; transform: translateY(-8px); }
  100%      { opacity: 0; transform: translateY(-8px); }
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  display: block;
}

@media (max-width: 900px) {
  .hero-photo-wrap {
    margin: 0 -16px;
    padding-bottom: 32px;
  }
  .hero-photo {
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }
  .hero-badge {
    display: none !important;
  }
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.hero-photo-label {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}

/* Badge flottant */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(192,255,165,0.2);
}

.hero-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--mint);
  line-height: 1.2;
}

.hero-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.visual-card-row {
  display: flex;
  gap: 12px;
  flex: 1;
}

.visual-card {
  flex: 1;
  background: var(--gray-1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint);
}

/* =============================================
   LOGOS BAR (Brevo: horizontal scroll, grayscale)
   ============================================= */
.logos-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-2);
  background: var(--white);
}

.logos-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-4);
  text-align: center;
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logos-row span {
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  opacity: 0.25;
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.logos-row:hover span {
  opacity: 0.15;
}

.logos-row span:hover {
  opacity: 0.5 !important;
}

.logo-img {
  height: 95px;
  width: 95px;
  opacity: 0.3;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
  object-fit: contain;
}

.logos-row:hover .logo-img {
  opacity: 0.2;
}

.logo-img:hover {
  opacity: 0.7 !important;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .logos-row {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
  .logo-img { height: 64px; width: 64px; }
}

/* =============================================
   FEATURE CARDS SECTION (Brevo: 3-col grid, hover, icon top)
   ============================================= */
.section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-3);
  line-height: 1.6;
  max-width: 520px;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 1023px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Cards (Brevo: light bg, border, rounded-xl, icon top) */
.card {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--dark);
  box-shadow: 0 0 0 1px var(--dark);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg,
.card-icon i {
  width: 22px;
  height: 22px;
  color: var(--dark);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-text {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 16px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* =============================================
   FEATURE HIGHLIGHT (Brevo: side-by-side, image + text)
   ============================================= */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-row--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .feature-row, .feature-row--reverse {
    flex-direction: column;
    gap: 40px;
  }
}

.feature-text {
  flex: 1;
}

.feature-visual {
  flex: 1;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.feature-visual-content {
  width: 85%;
  height: 70%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
}

/* =============================================
   INTERACTIVE SLIDER (Brevo "Engage your audience" style)
   ============================================= */
.interactive-slider-section {
  padding: 120px 0;
  background: #edffd9;
  border-top: 1px solid var(--gray-2);
}

/* --- Slider wrapper: arrows + track --- */
.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  z-index: 2;
}

.slider-arrow:hover {
  border-color: var(--dark);
  background: var(--gray-1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-track-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.slider-track-container::before,
.slider-track-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
  pointer-events: none;
}

.slider-track-container::before {
  left: 0;
  background: linear-gradient(to right, #edffd9, transparent);
}

.slider-track-container::after {
  right: 0;
  background: linear-gradient(to left, #edffd9, transparent);
}

.slider-track {
  display: flex;
  gap: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px 0;
}

/* --- Individual slider card/item --- */
.slider-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-2);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 110px;
  font-family: inherit;
}

.slider-item:hover {
  border-color: var(--dark);
  background: var(--gray-1);
}

.slider-item.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.slider-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.slider-item.active .slider-item-icon {
  background: rgba(255,255,255,0.15);
}

.slider-item-icon i {
  width: 18px;
  height: 18px;
  color: var(--dark);
  transition: color var(--transition);
}

.slider-item.active .slider-item-icon i {
  color: var(--white);
}

.slider-item-label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--dark);
  transition: color var(--transition);
}

.slider-item.active .slider-item-label {
  color: var(--white);
}

/* --- Detail panel (appears below slider track) --- */
.slider-detail {
  position: relative;
  min-height: 320px;
}

.slider-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-xl);
  padding: 48px;
  animation: panelFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-panel.active {
  display: grid;
}

@media (max-width: 768px) {
  .slider-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slider-panel-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 12px;
}

.slider-panel-desc {
  font-size: 15px;
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 20px;
}

.slider-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.slider-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

/* --- Detail panel visual (right side: mini dashboard) --- */
.slider-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.panel-visual-inner {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.panel-stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}

.panel-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.panel-stat-label {
  font-size: 12px;
  color: var(--gray-3);
  font-weight: 500;
}

.panel-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.panel-bar {
  flex: 1;
  background: var(--gray-2);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-bar--mint {
  background: var(--mint);
}

/* --- Placeholder image --- */
.panel-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.panel-placeholder-fallback {
  width: 100%;
  aspect-ratio: 560 / 380;
  background: var(--gray-2);
  border: 2px dashed var(--gray-4);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.panel-placeholder-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-3);
}

.panel-placeholder-size {
  font-size: 13px;
  color: var(--gray-4);
  font-family: monospace;
}

/* =============================================
   TABS SECTION (Brevo: tab switcher)
   ============================================= */
.tabs-nav {
  display: flex;
  gap: 4px;
  background: var(--gray-1);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
  border: 1px solid var(--gray-2);
}

.tab-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  color: var(--gray-3);
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.tab-btn:hover:not(.active) {
  color: var(--dark);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   TESTIMONIALS (Brevo: cards, clean)
   ============================================= */
.testimonial-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-2);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-avatar--img {
  object-fit: cover;
  display: block;
  background: none;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-3);
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background: var(--dark) !important;
  opacity: 0.15 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--dark) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* =============================================
   CTA BANNER (Brevo: mint bg, centered)
   ============================================= */
.cta-section {
  background: var(--mint);
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-left { display: flex; flex-direction: column; gap: 6px; }
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0;
}
.cta-desc {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  margin: 0;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   FOOTER (Brevo: clean columns, border-top)
   ============================================= */
.footer {
  background: var(--dark);
  border-top: none;
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: 'sanora';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(200px, 36vw, 500px);
  font-weight: 800;
  color: var(--white);
  opacity: 0.018;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--mint);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--mint);
  color: var(--dark);
}

.footer-social a i {
  width: 16px;
  height: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-col-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--mint);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 60ms; }
.stagger > *:nth-child(3) { transition-delay: 120ms; }
.stagger > *:nth-child(4) { transition-delay: 180ms; }
.stagger > *:nth-child(5) { transition-delay: 240ms; }
.stagger > *:nth-child(6) { transition-delay: 300ms; }
.stagger > *:nth-child(7) { transition-delay: 360ms; }
.stagger > *:nth-child(8) { transition-delay: 420ms; }

/* Counter */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Stats section */
.stats-section {
  background: var(--mint);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--dark);
}

.stat-label {
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .stat-item {
    border-right: none;
    padding: 0 16px;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.1);
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 11px;
  }
}

/* ── Blog ────────────────────────────────────────────────── */
.blog-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(160px, 28vw, 360px);
  font-weight: 800;
  color: var(--dark);
  opacity: 0.045;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  color: var(--dark);
}
.blog-card:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-3);
}
.blog-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin: 0;
}
.blog-card-desc {
  font-size: 13px;
  color: var(--gray-3);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 4px;
}
.blog-card-link i { width: 13px; height: 13px; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}
.mobile-menu .btn-dark {
  color: var(--white);
}

/* Selection */
::selection {
  background: var(--mint);
  color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-1); }
::-webkit-scrollbar-thumb { background: var(--gray-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-4); }

/* ============================================
   POUR QUI — SPLIT MINT / DARK
   ============================================ */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.pq-col {
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.pq-col--mint {
  background: var(--mint);
  color: var(--dark);
  box-shadow: 0 20px 60px rgba(192,255,165,0.25);
}

.pq-col--dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Icône déco watermark */
.pq-col::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.pq-col--mint::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-4 0v2M8 7V5a2 2 0 0 0-4 0v2'/%3E%3C/svg%3E");
}

.pq-col--dark::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.pq-col-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pq-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pq-col--mint .pq-col-icon {
  background: rgba(0,0,0,0.08);
  color: var(--dark);
}

.pq-col--dark .pq-col-icon {
  background: rgba(192,255,165,0.12);
  color: var(--mint);
}

.pq-col-icon i { width: 22px; height: 22px; }

.pq-col-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.pq-col-desc {
  font-size: 14px;
  margin: 0;
}

.pq-col--mint .pq-col-desc { color: rgba(0,0,0,0.55); }
.pq-col--dark .pq-col-desc { color: rgba(255,255,255,0.5); }

.pq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.pq-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  margin: -10px;
  transition: background var(--transition);
  cursor: default;
}

.pq-col--mint .pq-item:hover {
  background: rgba(0,0,0,0.05);
}

.pq-col--dark .pq-item:hover {
  background: rgba(255,255,255,0.04);
}

.pq-item:hover .pq-item-icon {
  transform: translateX(3px);
}

.pq-item-icon {
  transition: transform var(--transition);
}

.pq-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pq-col--mint .pq-item-icon {
  background: rgba(0,0,0,0.08);
  color: var(--dark);
}

.pq-col--dark .pq-item-icon {
  background: rgba(192,255,165,0.1);
  color: var(--mint);
}

.pq-item-icon i { width: 15px; height: 15px; }

.pq-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.pq-item p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.pq-col--mint .pq-item p { color: rgba(0,0,0,0.55); }
.pq-col--dark .pq-item p { color: rgba(255,255,255,0.45); }

.pq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}

.pq-col--mint .pq-cta {
  background: var(--dark);
  color: var(--white);
}

.pq-col--mint .pq-cta:hover { background: #2d2d2d; }

.pq-col--dark .pq-cta {
  background: var(--mint);
  color: var(--dark);
}

.pq-col--dark .pq-cta:hover { background: var(--mint-dark); }

@media (max-width: 768px) {
  .pq-grid { grid-template-columns: 1fr; }
  .pq-col { padding: 28px; }
}

/* ============================================
   SECTION DARK
   ============================================ */
.section--dark {
  background: var(--dark);
}

.section--dark .section-tag {
  background: rgba(192, 255, 165, 0.12);
  color: var(--mint);
}

.section--dark .section-tag-dot {
  background: var(--mint);
}

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-desc {
  color: rgba(255,255,255,0.55);
}

/* ============================================
   OFFRES DU MOMENT
   ============================================ */
.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offre-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.offre-card:hover {
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192,255,165,0.08);
}

.offre-card-top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.offre-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.offre-tag--secteur {
  background: rgba(192, 255, 165, 0.15);
  color: var(--mint);
}

.offre-tag--cdi {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.offre-tag--cdd {
  background: rgba(255,200,100,0.12);
  color: #ffc864;
}

.offre-tag--interim {
  background: rgba(200,150,255,0.12);
  color: #c896ff;
}

.offre-tag-urgent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: #ffc107;
  font-size: 11px;
  font-weight: 400;
}
.offre-tag-urgent i { width: 6px; height: 6px; }

.offre-titre {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.offre-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.offre-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.offre-meta-item svg,
.offre-meta-item i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.offre-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.offre-date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.offre-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mint);
}

.section--dark .btn--outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.section--dark .btn--outline:hover {
  border-color: var(--mint);
  background: rgba(192,255,165,0.08);
  color: var(--mint);
}

.offres-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.offres-empty i { width: 40px; height: 40px; }

.offres-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .offres-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .offres-grid { grid-template-columns: 1fr; }
}
