/* ===================================
   DSY CONSULTING - PROFESSIONAL B2B STYLES
   Clean, corporate design
   =================================== */

:root {
  /* Primary colors - Orange DSY */
  --color-primary: #e85d04;
  --color-primary-light: #f48c06;
  --color-primary-soft: #faa307;
  --color-secondary: #dc2f02;

  /* Neutral palette - Professional greys */
  --color-dark: #1e2632;
  /*--color-dark: #2d2d2f;*/
  --color-dark-soft: #2d3748;
  --color-text: #1a202c;
  --color-text-muted: #4a5568;
  --color-text-light: #718096;

  /* Backgrounds - Clean white/grey alternating */
  --color-bg-white: #ffffff;
  --color-bg-grey: #f7f8fa;
  --color-bg-dark: #1e2632;

  /* Borders */
  --color-border: #e2e8f0;
  --color-border-light: #edf2f7;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-offset: 80px;

  /* Couleur unifiée pour Header, Contact et Footer */
  --color-header-footer: #1e2632;

  /* Couleur des icônes de contact */
  --color-contact-icons: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--color-text);
  background: var(--color-bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

/* Retour à la ligne du titre sur mobile */
.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Global list item size */
li {
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
  position: relative;
}

/* Alternating backgrounds */
.section--white {
  background: var(--color-bg-white);
}

.section--grey {
  background: var(--color-bg-grey);
}

.section--dark {
  background: var(--color-bg-dark);
  color: #ffffff;
}

.section--light {
  background: var(--color-bg-grey);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.section--dark .section-title {
  color: #ffffff;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: none;
  padding: 0.75rem 1.5rem;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-footer);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__list a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s var(--ease-smooth);
}

.nav__list a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease-smooth);
}

.nav__list a:hover,
.nav__list a.is-active {
  color: #ffffff;
}

.nav__list a:hover::after,
.nav__list a.is-active::after {
  width: 100%;
}

/* Fix Contact button padding */
.nav__cta .btn--outline {
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-smooth);
}

.nav__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/background_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__title-row {
  width: 100%;
}

.hero__title-row h1 {
  color: var(--color-dark);
  margin-bottom: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__columns {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.hero__content {
  max-width: 100%;
}

.hero h1 {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-size: clamp(1.3rem, 1.85rem, 2rem);
}

.hero__highlight {
  color: var(--color-primary);
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  padding-right: 1rem;
}

.hero__lead strong {
  color: var(--color-primary);
  font-weight: 600;
}

.hero__bullets {
  list-style: none;
  margin-bottom: 2rem;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.6;
}

.bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem 0.6rem;
  background: transparent;
  border-radius: var(--radius-md);
  border: none;
  min-width: 130px;
  box-shadow: none;
}

.stat__number {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 1rem;
  color: var(--color-text);
  margin-top: 0.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.hero__card-wrapper {
  display: flex;
  justify-content: flex-start;
}

.hero__card {
  background: rgba(247, 248, 250, 0.85);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: none;
  max-width: 420px;
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(8px);
}

.hero__card h3 {
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.hero__card ul {
  list-style: none;
}

.hero__card li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text);
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.hero__card li:last-child {
  border-bottom: none;
}

.hero__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== ABOUT SECTION ===== */
.section--about {
  background: var(--color-bg-grey);
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro__content {
  max-width: 880px;
  margin: 0 auto;
}

.about-intro__content h3 {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.about-intro__content p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.about-block {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Image à droite (Notre histoire) : texte à gauche = 55%, image à droite = 45% */
.about-block--img-right {
  grid-template-columns: 55fr 45fr;
}

.about-block--img-right .about-block__media {
  order: 2;
}

/* Image à gauche (Notre approche) : image à gauche = 45%, texte à droite = 55% */
.about-block--img-left {
  grid-template-columns: 45fr 55fr;
}

.about-block__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding: 0.375rem 1rem;
  background: rgba(232, 93, 4, 0.1);
  border-radius: var(--radius-full);
}

.about-block__text h3 {
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.about-block__text p {
  color: var(--color-text-muted);
  line-height: 1.85;
  font-size: 1.125rem;
}

.about-block__img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-block__img-wrapper img {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 450px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.about-block__img-wrapper:hover img {
  transform: scale(1.02);
}

/* Values Section */
.values-section {
  padding-top: 2rem;
}

.values-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.values-header h3 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.values-header p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-circle {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s var(--ease-smooth);
}

.value-circle:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.value-circle__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-grey);
  border-radius: 50%;
  border: 2px solid var(--color-border);
}

.value-circle__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.value-circle h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.value-circle p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.section--services {
  background: var(--color-bg-white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card {
  display: flex;
  gap: 1.75rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-grey);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
}

.service-card__content h3 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card__content > p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-size: 1rem;
}

.service-card__content ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 2rem;
}

.service-card__content li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.7;
}

.service-card__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== PARTNERS SECTION ===== */
.section--partners {
  background: var(--color-bg-grey);
  padding-bottom: 4rem;
}

.partners-marquee {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-grey), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg-grey), transparent);
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-smooth);
}

.partner-logo:hover {
  transform: scale(1.08);
}

.partner-logo img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
}

/* ===== CASES SECTION ===== */
.section--cases {
  background: var(--color-bg-white);
}

.cases-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.case-story {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.case-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

.case-story__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.case-story__sector {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(232, 93, 4, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.625rem;
}

.case-story__header h3 {
  color: var(--color-dark);
  font-size: 1.4rem;
}

.case-story__context,
.case-story__challenge,
.case-story__solution {
  margin-bottom: 1.25rem;
}

.case-story h4 {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 0.625rem;
}

.case-story p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 1.125rem;
}

.case-story__solution h4 {
  color: var(--color-primary);
}

.case-story__solution ul {
  list-style: none;
  margin-top: 0.5rem;
}

.case-story__solution li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.7;
}

.case-story__solution li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.case-story__results {
  background: var(--color-bg-grey);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  border: 1px solid var(--color-border);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.result-item {
  text-align: center;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.result-item--highlight {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.result-item--highlight .result-value,
.result-item--highlight .result-label {
  color: #ffffff;
}

.result-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.result-label {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ===== JOBS SECTION ===== */
.jobs-section {
  background: var(--color-bg-grey);
}

.recruitment {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.recruitment__title {
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.recruitment__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.recruitment__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.recruitment__steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__badge {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.step__title {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
}

.step__text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.recruitment__cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
}

/* ===== CONTACT SECTION ===== */
.section--dark {
  background: var(--color-header-footer);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact__info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact__info > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1.125rem;
}

.contact__details {
  list-style: none;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact__icon {
  font-size: 1.125rem;
  color: var(--color-contact-icons);
}

.contact__details a {
  color: var(--color-primary-light);
  transition: color 0.2s var(--ease-smooth);
}

.contact__details a:hover {
  color: var(--color-primary-soft);
}

.contact__form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form__group {
  margin-bottom: 1.125rem;
}

.form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease-smooth);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__group select option {
  background: var(--color-dark);
  color: #ffffff;
}

/* ===== FLOATING CONTACT ===== */
.floating-contact {
  position: fixed;
  left: 0;
  top: 40%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-contact__item {
  display: flex;
  align-items: center;
  padding: 0.625rem 0.875rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
  transition: all 0.25s var(--ease-smooth);
}

.floating-contact__icon {
  font-size: 1rem;
}

.floating-contact__label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 0;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.25s var(--ease-smooth);
}

.floating-contact__item:hover {
  transform: translateX(0);
  box-shadow: var(--shadow-lg);
}

.floating-contact__item:hover .floating-contact__label {
  max-width: 140px;
  opacity: 1;
  margin-left: 0.5rem;
}

.floating-contact__item--phone {
  background: #059669;
}

.floating-contact__item--mail {
  background: var(--color-primary);
}

.floating-contact__item--linkedin {
  background: #0a66c2;
  font-weight: 700;
}

.floating-contact__item--top {
  background: var(--color-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-header-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.25rem 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__links a {
  color: var(--color-primary-light);
  transition: color 0.2s var(--ease-smooth);
}

.footer__links a:hover {
  color: #ffffff;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 38, 50, 0.9);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s var(--ease-smooth);
}

.modal.is-open .modal__container {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-grey);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.modal__close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.modal__header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.modal__header h3 {
  margin-bottom: 0.375rem;
  color: var(--color-dark);
  font-size: 1.38rem;
}

.modal__header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.modal__body {
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
}

.modal__body::-webkit-scrollbar {
  width: 6px;
}

.modal__body::-webkit-scrollbar-track {
  background: var(--color-bg-grey);
  border-radius: var(--radius-full);
}

.modal__body::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.modal .form__group label {
  color: var(--color-text);
}

.modal .form__group input,
.modal .form__group select,
.modal .form__group textarea {
  background: var(--color-bg-grey);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.modal .form__group input:focus,
.modal .form__group select:focus,
.modal .form__group textarea:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.modal .form__group input::placeholder,
.modal .form__group textarea::placeholder {
  color: var(--color-text-light);
}

.modal .form__group select option {
  background: #ffffff;
  color: var(--color-text);
}

.jobs-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal input[type="file"] {
  padding: 0.5rem;
  cursor: pointer;
}

.modal input[type="file"]::file-selector-button {
  padding: 0.5rem 1rem;
  margin-right: 0.75rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.modal input[type="file"]::file-selector-button:hover {
  background: var(--color-primary-light);
}

.form__hint {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

body.modal-open {
  overflow: hidden;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  pointer-events: none;
  width: 100%;
  max-width: 420px;
  padding: 0 1rem;
}

.toast {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.3s var(--ease-smooth);
  pointer-events: auto;
  border: 1px solid var(--color-border);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.toast__content {
  flex: 1;
}

.toast__message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.toast__close {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s var(--ease-smooth);
  flex-shrink: 0;
}

.toast__close:hover {
  background: var(--color-bg-grey);
}

.toast--success {
  border-left: 4px solid #10b981;
}

.toast--success .toast__icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.toast--error {
  border-left: 4px solid #ef4444;
}

.toast--error .toast__icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.form__group--error input,
.form__group--error select,
.form__group--error textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form__group--error label {
  color: #ef4444 !important;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__card-wrapper {
    display: none;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-block--img-right .about-block__media {
    order: 0;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    flex-direction: column;
    gap: 1.25rem;
  }

  .service-card__content ul {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .recruitment__steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .recruitment__steps::before {
    display: none;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0.625rem 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: absolute;
    right: 0;
    top: 110%;
    flex-direction: column;
    gap: 0;
    background: var(--color-dark);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    min-width: 200px;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transform-origin: top right;
    transition: all 0.25s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__list--open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list li {
    padding: 0.5rem 0;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat {
    min-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .about-intro__content h3 {
    font-size: 1.375rem;
  }

  .about-block__img-wrapper img {
    height: 260px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .case-story {
    padding: 1.75rem;
  }

  .recruitment {
    padding: 1.75rem;
  }

  .recruitment__steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .floating-contact {
    top: auto;
    bottom: 1.5rem;
  }

  .floating-contact__label {
    display: none;
  }

  .jobs-form__row {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal__container {
    max-width: 100%;
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal__header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .modal__body {
    padding: 1.25rem 1.5rem 1.75rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero__bullets li {
    font-size: 0.95rem;
  }

  .value-circle {
    padding: 2rem 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .case-story {
    padding: 1.5rem;
  }

  .case-story__header h3 {
    font-size: 1.255rem;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .toast-container {
    max-width: 100%;
  }
}

/* ============================================
   DÉBUT SECTION : STYLES POUR EFFETS DYNAMIQUES
   Pour désactiver ces effets, commentez cette section
   ============================================ */

/* Classe de base pour l'animation fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* État animé */
.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Préserver l'animation une fois jouée */
.animate-in {
  animation-fill-mode: forwards;
}

/* ============================================
   FIN SECTION : STYLES POUR EFFETS DYNAMIQUES
   ============================================ */
