/* styles/index.css */
.btn-dark {
  background: var(--orange);
  color: var(--bg);
}

.btn-dark:hover {
  background: var(--orange-dark);
}

/* HERO */
.hero {
  background: var(--bg);
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  padding: 90px 50px 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-dark);
  text-transform: uppercase;
  background: var(--orange-light);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-left p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-right {
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

/* HERO RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: 2;
    clip-path: none;
    min-height: 280px;
  }

  .hero-left {
    order: 1;
    padding: 40px 20px;
  }

  .hero-img {
    min-height: 280px;
  }
}

/* INDEX PAGE SPECIFIC STYLES ONLY */
.stats-section {
  background: var(--orange-light);
  padding: 70px 0;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 10px 0;
  }
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 900px) {
  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 10px;
  }
}

/* QUI SOMMES-NOUS */
.qui-section {
  background: var(--bg);
  padding: 100px 0;
}

@media (max-width: 768px) {
  .qui-section {
    padding: 40px 0;
  }
}

.qui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.qui-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  transform: scaleX(-1);
}

.qui-right h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.qui-right p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 14px;
}

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

  .qui-img {
    order: 2;
    height: 260px;
  }

  .qui-right {
    order: 1;
  }
}

/* NOS SERVICES */
.services-section {
  background: var(--bg);
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .services-section {
    padding-bottom: 20px;
  }
}

.services-bg-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: rgba(var(--black-rgb), 0.05);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 768px) {
  .services-bg-text {
    display: none;
  }
}

.section-tag--mobile {
  display: none;
}

@media (max-width: 768px) {
  .section-tag--mobile {
    display: flex;
  }
}

.services-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 160px;
}

@media (max-width: 768px) {
  .services-cards {
    flex-direction: column;
    padding-top: 0;
    align-items: center;
  }
}

.service-card {
  background: var(--orange-dark);
  color: var(--bg);
  border-radius: 4px;
  padding: 36px 32px;
  width: 300px;
  display: flex;
  flex-direction: column;
}

.service-card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light-solid);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(var(--white-rgb), 0.75);
  flex: 1;
}

.service-card a {
  color: var(--orange-light-solid);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

/* DIFFÉRENCIATION */
.diff-section {
  background: var(--bg);
  padding: 100px 0;
}

@media (max-width: 768px) {
  .diff-section {
    padding: 20px 0;
  }
}

.diff-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .diff-section h2 {
    margin-bottom: 20px;
  }
}

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

@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.diff-card {
  background: rgba(var(--white-rgb), 0.9);
  /* background: #f2f2f0; */
  border-radius: 4px;
  padding: 32px 28px;
  cursor: default;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

@media (max-width: 900px) {
  .diff-card {
    background: var(--orange-light);
  }
}

.diff-card:hover,
.diff-card.active {
  background: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--orange-light);
}

.diff-number {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(var(--black-rgb), 0.07);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.diff-card:hover .diff-number,
.diff-card.active .diff-number {
  color: rgba(var(--white-rgb), 0.2);
}

.diff-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--text);
  transition: color 0.3s;
}

.diff-card:hover h4,
.diff-card.active h4 {
  color: var(--bg);
}

.diff-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  transition: color 0.3s;
}

.diff-card:hover p,
.diff-card.active p {
  color: rgba(var(--white-rgb), 0.85);
}

/* FEEDBACKS */
.feedbacks-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.feedbacks-bg-placeholder {
  position: absolute;
  inset: 0;
  background: var(--orange-light);
}

.feedbacks-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  min-height: 480px;
}

@media (max-width: 900px) {
  .feedbacks-inner {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .feedbacks-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
}

.feedbacks-left .section-tag {
  color: var(--orange);
}

.feedbacks-left h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: rgb(var(--black-rgb));
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 14px;
}

.feedbacks-left p {
  font-size: 13px;
  color: rgba(var(--black-rgb), 0.7);
  margin-bottom: 24px;
}

.feedbacks-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .feedbacks-cards {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }
}

.feedback-card {
  background: var(--orange-light);
  border: 1px solid var(--orange-dark);
  border-radius: 4px;
  padding: 20px 22px;
  position: relative;
}

.feedback-card::before {
  content: '"';
  font-size: 48px;
  color: var(--orange);
  font-family: Georgia, serif;
  position: absolute;
  top: -6px;
  right: 16px;
  line-height: 1;
  opacity: 0.5;
}

@media (min-width: 768px) and (max-width: 900px) {
  .feedback-card {
    padding: 20px 40px;
  }
}

.feedback-name {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
  color: rgb(var(--black-rgb));
}

.feedback-role {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.feedback-text {
  font-size: 12px;
  color: rgba(var(--black-rgb), 0.75);
  line-height: 1.7;
}
