/**
 * HESPERANS - Services Page Styles
 * =================================
 * Styles spécifiques pour la page Services (one-page pilier)
 */

/* ========================================
   SECTION 1 — HERO SERVICES
   ======================================== */

.services-hero {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Cercles en arrière-plan */
.services-hero > div:last-child {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.services-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
}

.services-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.services-hero-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.services-hero-intro strong {
  color: #000;
  font-weight: 600;
}

.services-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.services-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  transition: all 0.25s ease;
}

.chip:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.25);
}

/* Hero Right - Visual */
.services-hero-right {
  position: relative;
}

.services-hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.services-hero-portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.services-hero-callout {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.callout-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   SECTION 2 — NAVIGATOR
   ======================================== */

.services-navigator {
  padding: 30px 0 100px;
  background-color: #fbfbfb;
}

.navigator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.navigator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navigator-card:hover {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.navigator-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 16px;
  color: #000;
}

.navigator-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px;
}

.navigator-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.navigator-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 14px;
}

.navigator-sublink {
  color: #666;
  text-decoration: none;
  transition: color 0.25s ease;
}

.navigator-sublink:hover {
  color: #000;
  text-decoration: underline;
}

.navigator-sep {
  color: #ccc;
}

/* ========================================
   SECTION 3 — EDITORIAL
   ======================================== */

.services-editorial {
  padding: 100px 0;
  background-color: #fff;
}

.editorial-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.editorial-content {
  max-width: 600px;
}

.editorial-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0 0 24px;
}

.editorial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 32px;
}

.editorial-text strong {
  font-weight: 600;
  color: #000;
}

.editorial-quote {
  margin: 0;
  padding: 24px 32px;
  background: #f5f5f5;
  border-left: 4px solid rgb(249, 115, 22);
  border-radius: 0 8px 8px 0;
}

.editorial-quote p {
  font-size: 18px;
  font-style: italic;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.5;
}

.editorial-quote cite {
  font-size: 14px;
  font-style: normal;
  color: #666;
}

/* Editorial Visuals - Mock livrables */
.editorial-visuals {
  display: flex;
  justify-content: center;
}

.editorial-mock {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #f5f5f5;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.mock-item:hover {
  background: #eee;
  transform: translateX(4px);
}

.mock-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  color: #000;
}

.mock-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* ========================================
   SECTION 4 — OFFERS MODULES
   ======================================== */

.offer-section {
  padding: 100px 0;
  background-color: #fff;
}

.offer-section--alt {
  background-color: #fbfbfb;
}

.offer-wrap {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 60px;
  align-items: start;
}

.offer-wrap--reverse {
  grid-template-columns: 0.55fr 0.45fr;
}

.offer-wrap--reverse .offer-visual {
  order: 2;
}

.offer-wrap--reverse .offer-content {
  order: 1;
}

/* Offer Visual */
.offer-visual {
  position: sticky;
  top: 120px;
}

.offer-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.offer-icon-large {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 24px;
  color: #000;
  margin: 0 auto;
}

/* Offer Content */
.offer-content {
  max-width: 560px;
}

.offer-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: #000;
  margin: 0 0 8px;
}

.offer-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0 0 24px;
}

.offer-for {
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  margin-bottom: 32px;
}

.offer-for strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 8px;
}

.offer-for p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Deliverables */
.offer-deliverables-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0 0 16px;
}

.offer-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.deliverable-card {
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  text-align: center;
  transition: all 0.25s ease;
}

.offer-section--alt .deliverable-card {
  background: #fff;
}

.deliverable-card:hover {
  border-color: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.deliverable-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 10px;
  margin: 0 auto 12px;
  color: #000;
}

.deliverable-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0 0 6px;
}

.deliverable-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Examples Gallery */
.offer-examples {
  margin-bottom: 32px;
}

.offer-examples h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0 0 16px;
}

.examples-gallery {
  display: flex;
  gap: 12px;
}

.example-thumb {
  flex: 1;
  padding: 16px 12px;
  background: linear-gradient(135deg, #f5f5f5 0%, #eee 100%);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* Stepper */
.offer-stepper {
  margin-bottom: 32px;
}

.offer-stepper h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0 0 16px;
}

.stepper {
  display: flex;
  gap: 0;
}

.step {
  flex: 1;
  position: relative;
  padding: 16px 12px;
  text-align: center;
}

.step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 0;
  width: 50%;
  height: 2px;
  background: #e6e6e6;
}

.step:last-child::after {
  display: none;
}

.step::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  width: 50%;
  height: 2px;
  background: #e6e6e6;
}

.step:first-child::before {
  display: none;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

.step-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.step-desc {
  display: block;
  font-size: 11px;
  color: #666;
  line-height: 1.3;
}

/* Editorial & Highlight boxes */
.offer-editorial,
.offer-highlight {
  padding: 20px 24px;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 32px;
}

.offer-editorial h4,
.offer-highlight h4 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px;
}

.offer-editorial p,
.offer-highlight p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Offer CTA */
.offer-cta {
  margin-top: 8px;
}

/* ========================================
   OFFER 6 — AGENTIC AI (Spécial)
   ======================================== */

.offer-section--agentic {
  background: #fff;
}

.offer-visual--agentic {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.agentic-pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.pipeline-step-visual {
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  transition: all 0.25s ease;
}

.pipeline-step--highlight {
  background: #000;
  color: #fff;
}

.pipeline-arrow-visual {
  color: #ccc;
  font-size: 18px;
}

.agentic-guards {
  margin-bottom: 24px;
}

.agentic-guards h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0 0 12px;
}

.guards-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.guard-chip {
  padding: 8px 16px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Fond blanc pour le bloc MVP grâce à l'IA */
.offer-section--agentic .offer-highlight {
  background: #fff;
  border: 1px solid #e6e6e6;
}

/* ========================================
   COMPACT OFFERS (Privacy, Conversion)
   ======================================== */

.offer-section--compact .offer-wrap {
  grid-template-columns: 0.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.offer-section--compact .offer-wrap--reverse {
  grid-template-columns: 0.7fr 0.3fr;
}

.offer-section--compact .offer-visual {
  position: static;
}

/* ========================================
   SECTION 5 — STACK TYPE
   ======================================== */

.services-stack {
  padding: 100px 0;
  background-color: #fff;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stack-card {
  padding: 24px 20px;
  background: #fbfbfb;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  text-align: center;
  transition: all 0.25s ease;
}

.stack-card:hover {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stack-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto 16px;
  color: #000;
}

.stack-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px;
}

.stack-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.stack-schema {
  margin-top: 40px;
  padding: 24px;
  background: #f5f5f5;
  border-radius: 12px;
}

.schema-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.schema-node {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.schema-arrow {
  color: #999;
  font-size: 16px;
}

/* ========================================
   SECTION DUAL OFFER (Privacy + Optimisation)
   ======================================== */

.offer-section--dual {
  padding: 100px 0;
  background-color: #fbfbfb;
}

.dual-offer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.dual-offer-col {
  background: #fff;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  transition: all 0.25s ease;
}

.dual-offer-col:hover {
  border-color: #ccc;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.dual-offer-col .offer-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
}

.dual-offer-col .offer-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 32px;
}

.dual-offer-col .offer-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.dual-offer-col .deliverable-card {
  padding: 20px 16px;
  background: #fbfbfb;
  border-radius: 10px;
  text-align: center;
}

.dual-offer-col .deliverable-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto 12px;
  color: #000;
}

.dual-offer-col .deliverable-card h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.dual-offer-col .deliverable-card p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .dual-offer-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dual-offer-col {
    padding: 32px;
  }

  .dual-offer-col .offer-deliverables {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .dual-offer-col {
    padding: 24px;
  }

  .dual-offer-col .offer-title {
    font-size: 20px;
  }

  .dual-offer-col .offer-deliverables {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SECTION 6 — RESSOURCES (Livres blancs)
   ======================================== */

.methode-resources {
  padding: 100px 0;
  background-color: #fff;
}

.proof-experience {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #e6e6e6;
}

.proof-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0 0 24px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.experience-item {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

.experience-company {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.experience-role {
  display: block;
  font-size: 12px;
  color: #666;
}

/* ========================================
   SECTION 7 — FAQ
   ======================================== */

.services-faq {
  padding: 100px 0;
  background-color: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
}

.faq-item:first-child {
  border-top: 1px solid #e6e6e6;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   SECTION 8 — CONTACT
   ======================================== */

.services-contact {
  padding: 100px 0;
  background-color: #fbfbfb;
  position: relative;
  overflow: hidden;
}

/* Cercles en arrière-plan du contact */
.contact-circles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.contact-wrap {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #000;
  margin: 0 0 20px;
}

.contact-text {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-ctas .primary-btn,
.contact-ctas .secondary-btn {
  white-space: nowrap;
}

.contact-btn-secondary {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
}

.contact-btn-secondary div {
  color: #000;
}

.contact-btn-secondary .arrow {
  filter: none;
}

.contact-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.4);
}

.contact-btn-secondary:hover .arrow {
  filter: none;
}

/* Supprimer l'espace entre contact et footer */
.page-data {
  margin-bottom: 0;
}

.services-contact + .footer,
.page-data + .footer {
  margin-top: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
  .services-hero-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 80px;
  }

  .services-hero-title {
    font-size: 32px;
  }

  .navigator-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-visuals {
    order: -1;
  }

  .editorial-mock {
    flex-direction: row;
    justify-content: center;
  }

  .offer-wrap,
  .offer-wrap--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-wrap--reverse .offer-visual,
  .offer-wrap--reverse .offer-content {
    order: unset;
  }

  .offer-visual {
    position: static;
  }

  .offer-deliverables {
    grid-template-columns: 1fr;
  }

  .stepper {
    flex-wrap: wrap;
  }

  .step {
    flex: 0 0 50%;
    margin-bottom: 16px;
  }

  .step::before,
  .step::after {
    display: none;
  }

  .offer-section--compact .offer-wrap,
  .offer-section--compact .offer-wrap--reverse {
    grid-template-columns: 1fr;
  }

  .agentic-pipeline {
    flex-direction: column;
  }

  .pipeline-arrow-visual {
    transform: rotate(90deg);
  }

  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-hero {
    min-height: auto;
  }

  .services-hero-wrap {
    padding: 40px 0 60px;
  }

  .services-hero-title {
    font-size: 28px;
  }

  .services-hero-intro {
    font-size: 16px;
  }

  .services-hero-ctas {
    flex-direction: column;
  }

  .services-hero-ctas .primary-btn,
  .services-hero-ctas .secondary-btn {
    width: 100%;
    justify-content: center;
  }

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

  .navigator-links {
    flex-direction: column;
    align-items: center;
  }

  .navigator-sep {
    display: none;
  }

  .offer-section,
  .services-navigator,
  .services-editorial,
  .services-stack,
  .services-proof,
  .services-faq {
    padding: 60px 0;
  }

  .offer-title {
    font-size: 24px;
  }

  .examples-gallery {
    flex-direction: column;
  }

  .stepper {
    flex-direction: column;
    gap: 0;
  }

  .step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 16px 0;
  }

  .step-num {
    margin: 0 16px 0 0;
    flex-shrink: 0;
  }

  .step-label,
  .step-desc {
    display: inline;
  }

  .step-label::after {
    content: ' — ';
  }

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

  .schema-flow {
    flex-direction: column;
  }

  .schema-arrow {
    transform: rotate(90deg);
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .faq-question span {
    font-size: 16px;
    padding-right: 16px;
  }

  .contact-ctas {
    flex-direction: column;
  }

  .contact-ctas .primary-btn,
  .contact-ctas .secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-hero-left,
.services-hero-right {
  animation: fadeInUp 0.8s ease-out;
}

.services-hero-right {
  animation-delay: 0.2s;
}

/* Scroll animations (optionnel - nécessite JS ou IntersectionObserver) */
.offer-section,
.navigator-card,
.stack-card {
  opacity: 1;
}
