/* ================================
   ENJOY&CO — STYLE.CSS
   Palette : Sauge #7BBFAA · Brun #1C1C1C · Crème #F7F5F0
   ================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F5F0;
  color: #1C1C1C;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- NAVIGATION ---- */
.nav {
  background: #fff;
  border-bottom: 0.5px solid #E0DDD5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1C1C1C;
  letter-spacing: -0.5px;
}
.logo span { color: #7BBFAA; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1C1C1C; }

.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

/* ---- BUTTONS ---- */
.btn-dark {
  background: #1C1C1C;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 11px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: #1C1C1C;
  border: 1.5px solid #1C1C1C;
  border-radius: 99px;
  padding: 11px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: #1C1C1C; color: #fff; }

.btn-green {
  background: #7BBFAA;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 11px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-green:hover { background: #5EA693; }

/* ---- TICKER ---- */
.ticker {
  background: #1C1C1C;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: tick 28s linear infinite;
}
@keyframes tick {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sep { margin: 0 1.25rem; color: #7BBFAA; }

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.hero-l {
  background: #EDF5F1;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4A8C78;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7BBFAA;
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 1.08;
  color: #1C1C1C;
  margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: italic; color: #7BBFAA; }

.hero-sub {
  font-size: 14px;
  color: #4A5550;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.hcell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  min-height: 210px;
  transition: filter 0.2s;
}
.hcell:hover { filter: brightness(0.95); }

.hcell-icon { font-size: 42px; margin-bottom: 10px; }
.hcell-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.22);
  padding: 4px 12px;
  border-radius: 99px;
}

.c1 { background: #B8D9CE; }
.c2 { background: #D4C5A9; }
.c3 { background: #C5D4B8; }
.c4 { background: #D9BEB8; }

/* ---- STATS ---- */
.stats {
  background: #1C1C1C;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 1.75rem 1rem;
  text-align: center;
  border-right: 0.5px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #7BBFAA;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ---- SECTIONS ---- */
.sec { padding: 4rem 2.5rem; }

.sec-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7BBFAA;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.green-tag { color: #7BBFAA; }
.center-tag { text-align: center; }

.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: #1C1C1C;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.sec-h2 em { font-style: italic; color: #7BBFAA; }
.white-h2 { color: #fff; }
.center-h2 { text-align: center; }

.sec-sub {
  font-size: 14px;
  color: #555;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ---- SOLUTIONS ---- */
.cible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cible-card {
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 0.5px solid #E0DDD5;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cible-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.cible-card.dark { background: #1C1C1C; border-color: #2E2E2E; }

.cible-icon { font-size: 28px; margin-bottom: 0.875rem; display: block; }

.cible-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #1C1C1C;
}
.cible-card.dark .cible-title { color: #7BBFAA; }

.cible-desc { font-size: 13px; line-height: 1.7; color: #666; }
.cible-card.dark .cible-desc { color: rgba(255,255,255,0.5); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.25rem; }
.tag {
  font-size: 10px;
  padding: 3px 11px;
  border-radius: 99px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.tag-green { background: #D0EBE4; color: #2E7A64; }
.tag-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.tag-warm { background: #EDE3D5; color: #7A5520; }

/* ---- PARCOURS ---- */
.parcours-sec { background: #EDF5F1; padding: 4rem 2.5rem; }

.parcours-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 1.5rem;
}

.p-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 0.5px solid #C5DDD6;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.p-card:hover { border-color: #7BBFAA; transform: translateY(-2px); }
.p-card.star { border: 1.5px solid #7BBFAA; background: #F0FAF6; }

.p-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 99px;
  background: #7BBFAA;
  color: #fff;
  margin-bottom: 8px;
}

.p-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #7BBFAA;
  margin-bottom: 6px;
}

.p-title {
  font-size: 12px;
  font-weight: 500;
  color: #1C1C1C;
  line-height: 1.35;
  margin-bottom: 8px;
}
.p-desc { font-size: 11px; color: #777; line-height: 1.55; }

/* ---- DIFFERENCE ---- */
.diff-sec { background: #1C1C1C; padding: 4rem 2.5rem; }
.diff-sec .sec-sub { color: rgba(255,255,255,0.45); }
.green-em { color: #7BBFAA; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
}
.diff-header-l {
  background: #2E2E2E;
  padding: 0.625rem 1.25rem;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.diff-header-r {
  background: #2E3D38;
  padding: 0.625rem 1.25rem;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7BBFAA;
}
.diff-row-l {
  background: #252525;
  padding: 0.875rem 1.25rem;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.diff-row-r {
  background: #283530;
  padding: 0.875rem 1.25rem;
  font-size: 13px;
  color: #7BBFAA;
  font-weight: 500;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 2.5rem;
}
.kpi {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 0.5px solid rgba(255,255,255,0.07);
}
.kpi-n {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #7BBFAA;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.kpi-l { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* ---- PARTNER CTA ---- */
.partner-cta-sec {
  background: #F7F5F0;
  border-top: 3px solid #7BBFAA;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.partner-cta-inner { max-width: 560px; margin: 0 auto; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1C1C1C;
  color: #7BBFAA;
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ---- CONTACT ---- */
.cta-sec {
  padding: 4rem 2.5rem;
  background: #fff;
  border-top: 0.5px solid #E0DDD5;
}

.cta-mention {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1C1C1C;
  background: #FAFAFA;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #7BBFAA; background: #fff; }

.contact-form textarea { resize: vertical; min-height: 110px; }

.full-btn { width: 100%; padding: 14px; font-size: 13px; border-radius: 8px; }

.contact-direct {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-direct a { color: #1C1C1C; font-weight: 500; border-bottom: 1px solid #CCC; }
.contact-direct a:hover { color: #7BBFAA; border-color: #7BBFAA; }

/* ---- FOOTER ---- */
.footer { background: #1C1C1C; padding: 3rem 2.5rem 1.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: #7BBFAA; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.65; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.footer-col-title {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.875rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-r { min-height: 280px; }
  .cible-grid { grid-template-columns: 1fr; }
  .parcours-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-h1 { font-size: 34px; }
}

@media (max-width: 600px) {
  .parcours-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .sec { padding: 2.5rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
  .hero-tag::before { animation: none; }
}
