@import "./normalize.css";
@import "./design-system.css";
@import "./components.css";
@import "./responsive.css";

/* Global background overlay */
body {
  position: relative;
  background-color: var(--bg-main);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../assets/images/background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.page_wrap {
  overflow: clip;
  width: 100%;
  position: relative; /* ensure content sits above the overlay */
  z-index: 1;
}

/* Header Navigation Styles */
.header {
  position: relative;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: var(--space-md) 0;
  min-height: 72px;
}

.nav_logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-base);
  font-weight: 600;
}

.nav_logo_img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(-10px 12px 23px rgba(26, 40, 56, 0.1))
    drop-shadow(-4px 10px 10px rgba(79, 141, 235, 0.25))
    drop-shadow(-2px 5px 5px rgba(170, 137, 253, 0.25));
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.nav_cta {
  display: flex;
  justify-content: flex-end;
}

.nav_links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_item {
  margin: 0;
}

.nav_link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: var(--space-xs) 0;
}

.nav_cta .btn {
  font-size: var(--font-size-sm);
  padding: var(--space-sm) var(--space-md);
}

/* Header Responsive Styles */
@media (max-width: 768px) {
  .nav {
    padding: var(--space-sm) 0;
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
  }

  .nav_menu {
    display: none; /* Hide navigation menu on mobile */
  }

  .nav_cta .btn {
    font-size: var(--font-size-xs);
    padding: var(--space-xs) var(--space-sm);
  }
}

@media (max-width: 480px) {
  .nav_logo_text {
    display: none; /* Hide text on very small screens */
  }

  .nav_links {
    gap: var(--space-sm);
  }

  .nav_link {
    font-size: var(--font-size-xs);
  }
}

/* Hero section styles */
.hero_section {
  background-color: transparent;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.hero_btn {
  margin-top: var(--space-lg);
}
.hero_btn .btn {
  font-size: var(--font-size-md);
}
.testimonials_btn {
  margin-top: var(--space-md);
}

.hero_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xl);
  width: 100%;
  max-width: 54rem;
  margin: auto;
  text-align: center;
}

.hero_inner_top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav_link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 2px;
}

.nav_separator {
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 var(--space-xs);
}

/* Hero logo styles */
.hero_logo {
  margin-bottom: var(--space-lg);
}

.logo_container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
}

.logo_container_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.logo_container svg {
  flex-shrink: 0;
}

/* Hero availability indicator */
.hero_availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  background-color: rgba(16, 24, 39, 0.1);
  border: 0.5px solid rgba(16, 24, 39, 0.06);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) var(--space-sm);
  box-shadow: inset 0 0 32px rgba(182, 224, 248, 0.26),
    inset 1px 1px 1px rgba(243, 244, 245, 0.4),
    inset 0 0 18px rgba(255, 255, 255, 1),
    0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
}

.availability_dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.availability_text {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Hero main title styles */
.hero_main_title {
  color: var(--text-main);
  max-width: 60ch;
  margin: 0 auto var(--space-xl);
  line-height: var(--line-height-tight);
}

/* Hero subtitle styles */
.hero_subtitle {
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto;
  margin-bottom: var(--space-md);
}

/* Hero social proof styles */
.hero_social_proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.social_proof_avatars {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.social_proof_avatars img:nth-child(odd) {
  transform: translateY(0);
}

.social_proof_avatars img:nth-child(even) {
  transform: translateY(-3px);
}

.social_proof_avatars img {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  border: 1.5px solid var(--color-light-grey);
  object-fit: cover;
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transition: transform 0.2s ease;
}

.social_proof_avatars img:hover {
  transform: translateY(-5px);
}

.more_clients {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  background-color: var(--text-main);
  color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  border: 1.5px solid var(--color-light-grey);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.more_clients:hover {
  transform: translateY(-5px);
}

.social_proof_rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
}

.stars {
  color: #fbbf24;
  font-size: var(--font-size-sm);
}

.social_proof_text {
  color: var(--text-main);
  font-weight: 500;
}
.hero_inner_bottom {
  margin-top: var(--space-4xl);
  text-align: center;
}

.hero_inner_bottom .u-text-sm {
  color: var(--text-muted);
}

.hero_divider {
  position: relative;
  height: 1px;
  display: block;
  width: 100%;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.hero_divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(205, 205, 205, 0) 0%,
    rgba(205, 205, 205, 0.5) 50%,
    rgba(205, 205, 205, 0) 100%
  );
  pointer-events: none;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: auto;
  isolation: isolate;
  margin-top: var(--space-xl);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  will-change: transform;
  flex-shrink: 0;
  z-index: 0;
}

/* Footer styles */
.footer {
  background-color: rgb(237, 240, 242);
  color: var(--text-main);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  margin-top: auto;
  border-radius: 2.5rem 2.5rem 0 0;
}

.footer_content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: var(--space-2xl);
  max-width: 60rem;
  margin: auto;
}

.footer-container-top {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center stretch;
  width: 100%;
}

.footer_logo_container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--space-md);
}

.footer_logo_image {
  width: 28px;
  height: 28px;
  filter: drop-shadow(-10px 12px 23px rgba(26, 40, 56, 0.1))
    drop-shadow(-4px 10px 10px rgba(79, 141, 235, 0.25))
    drop-shadow(-2px 5px 5px rgba(170, 137, 253, 0.25));
}

.footer_columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
}

.footer_grid_title {
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
}

.footer_links {
  display: grid;
  gap: var(--space-xs);
}

.footer_logo_link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-self: start; /* évite l'étirement sur la grille */
}

.footer_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_logo_text {
  font-weight: 600;
}

.footer_brand_desc {
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-sm);
}

.footer_link {
  color: var(--text-main);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer_link:hover {
  opacity: 0.7;
}

.footer_separator {
  color: var(--text-muted);
  font-weight: 300;
}

.footer_social {
  display: flex;
  gap: var(--space-lg);
  justify-content: flex-end;
}

.social_link {
  color: var(--text-main);
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social_link:hover {
  opacity: 0.7;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
}

.footer_copyright {
  color: var(--text-muted);
}

.footer_legal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer_legal .footer_link {
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

@media (max-width: 1024px) {
  .footer-container-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2xl);
  }
}
@media (max-width: 1024px) {
  .footer_columns {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .footer_link,
  .footer_grid_title {
    font-size: var(--font-size-lg);
  }
  .social_link {
    width: 32px;
    height: 32px;
  }
}

/* Mentions légales Styles */
.legal_section {
  background-color: transparent;
  color: var(--text-main);
  min-height: 100vh;
  padding-top: var(--space-xl);
}

.legal_content {
  max-width: 800px;
  margin: 0 auto;
}

.legal_header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.legal_title {
  margin-bottom: var(--space-md);
}

.legal_subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.legal_text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legal_intro {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: var(--space-md);
  background-color: rgba(16, 24, 39, 0.05);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-primary);
}

.legal_section_item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal_section_title {
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary);
}

.legal_paragraph {
  line-height: 1.6;
  color: var(--text-main);
}

/* Responsive Mentions légales */
@media (max-width: 768px) {
  .legal_content {
    max-width: 100%;
  }

  .legal_header {
    margin-bottom: var(--space-lg);
  }

  .legal_text {
    gap: var(--space-md);
  }

  .legal_section_item {
    gap: var(--space-sm);
  }
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 240, 94, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 240, 94, 0.4);
}

.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 56px;
    height: 56px;
  }

  .whatsapp-widget svg {
    width: 28px;
    height: 28px;
  }
}

/* Page header styles */
.page_header {
  background-color: transparent;
}

.page_header_content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.page_header_content h1 {
  margin-bottom: var(--space-lg);
}

.page_header_content p {
  color: var(--text-muted);
}

/* Work in progress banner */
.work_in_progress {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.5rem;
  font-weight: 500;
  z-index: 1000;
}

/* Page navigation styles */
.page_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.footer_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-weight: 600;
  margin-bottom: 0;
}
/* Services section styles */

.services_content {
  text-align: center;
}

/* Clients section styles */
.clients_section {
  margin-bottom: var(--space-3xl);
}

.clients_content {
  text-align: center;
}

/* Marquee item styles */
.clients_section .marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.clients_section .marquee-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.clients_section .marquee-item img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Works Section */
.works_split_section {
  background-color: transparent;
  padding-block: var(--space-3xl);
}

/* Header */
.works_header {
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.works_title {
  flex: 1;
  max-width: 50%;
}

.works_subtitle {
  flex: 1;
  max-width: 45%;
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

.works_tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--bg-secondary);
  border: 1px solid var(--text-main);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) var(--space-sm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.works_tag svg {
  color: var(--text-main);
}

/* Inline highlight badge for keywords (matches button/add-on vibes) */
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background-image: linear-gradient(180deg, #292d41, #242a37);
  border: 1px solid black;
  font-weight: 500;
  color: var(--text-alt);
  line-height: 1;
  box-shadow: 0 15px 44px #00000012, 0 15px 17px #2a31481a, 0 3px 5px #2a314840,
    0 0.7px 3px #2a314840, inset 0 0 18px #ffffff40, inset 0 1px 1px #ffffff4d,
    inset 0 2px 2px #ffffff26;
  position: relative;
  white-space: nowrap;
}

.highlight-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.highlight-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Gradient text utility for titles */
.u-gradient-title,
.u-gradient-title .line,
.hero_main_title,
.hero_main_title .line,
.testimonials_title,
.testimonials_title .line,
.pricing_title,
.pricing_title .line,
.calendar_title,
.calendar_title .line,
.faq_team_title,
.faq_team_title .line,
.faq_questions_title,
.faq_questions_title .line,
.works_title {
  background-image: linear-gradient(180deg, #909097 0%, var(--text-main) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Ensure inline badges inside gradient titles retain their color */
.works_title .highlight-badge,
.works_title .line .highlight-badge,
.hero_main_title .highlight-badge,
.hero_main_title .line .highlight-badge,
.testimonials_title .highlight-badge,
.testimonials_title .line .highlight-badge,
.pricing_title .highlight-badge,
.pricing_title .line .highlight-badge,
.calendar_title .highlight-badge,
.calendar_title .line .highlight-badge,
.faq_team_title .highlight-badge,
.faq_team_title .line .highlight-badge,
.faq_questions_title .highlight-badge,
.faq_questions_title .line .highlight-badge {
  -webkit-text-fill-color: var(--text-alt);
  color: var(--text-alt);
}
/* Carousel */
.works_carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel_slide {
  display: none;
}

.carousel_slide.active {
  display: block;
}

/* Layout */
.work_layout {
  display: grid;
  grid-template-columns: 3fr 2fr; /* ~60% preview / ~40% info */
  gap: var(--space-xl);
  align-items: start;
}

/* Preview Section */
.work_preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: var(--bg-secondary);
  aspect-ratio: 36 / 25; /* Match 1152x800 images */
}

.work_preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}

/* Info Section */
.work_info {
  display: flex;
  flex-direction: column;
}

.company_info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Company header with logo placeholder */
.company_header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.company_logo {
  width: 44px;
  height: 44px;
  min-height: 44px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  overflow: hidden;
}

.company_name {
  font-weight: 700;
  color: var(--text-main);
}

.company_description {
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

.work_testimonial {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
}

.testimonial_author {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.author_review {
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.author_info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial_author img {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  border: 1.5px solid var(--color-light-grey);
  object-fit: cover;
}

.author_details {
  display: flex;
  flex-direction: column;
}

.author_name {
  font-weight: 600;
  color: var(--text-main);
}

.author_role {
  color: var(--text-muted);
}

.author_rating {
  margin-bottom: var(--space-sm);
}

.author_rating .stars {
  color: #fbbf24;
}

.author_details h4 {
  color: var(--text-main);
  font-weight: 600;
}

.author_details p {
  color: var(--text-muted);
}

/* Work Tags */
.work_tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.work_tag {
  background: transparent;
  border: 1px solid var(--color-light-grey);
  border-radius: 50px;
  padding: var(--space-xs) var(--space-sm);
  color: var(--text-muted);
  font-weight: 500;
}

/* Navigation */
.carousel_navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-sm);
  flex-direction: column;
}

.nav_btn {
  background: linear-gradient(
    180deg,
    var(--button-gradient-top),
    var(--button-gradient-bottom)
  );
  color: var(--text-alt);
  border: none;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 15px 44px #00000012, 0 15px 17px #2a31481a, 0 3px 5px #2a314840,
    0 0.7px 3px #2a314840, inset 0 0 18px #ffffff40, inset 0 1px 1px #ffffff4d,
    inset 0 2px 2px #ffffff26;
}

.nav_btn:hover {
  box-shadow: 0 15px 44px #00000012, 0 15px 17px #2a31481a, 0 3px 5px #2a314840,
    0 0.7px 3px #2a314840, inset 0 -5px 24px #ffffff4d,
    inset 0 1px 1px #ffffff4d, inset 0 2px 2px #ffffff26;
}

.nav_btn svg {
  color: inherit;
}

.nav_dots {
  display: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-light-grey);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dot.active {
  background: var(--text-main);
}

.works_title {
  max-width: 20ch;
  margin-inline: auto;
}

/* Métriques */
.works_metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric_item {
  text-align: center;
  padding: var(--space-lg);
}

.metric_number {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--text-main);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  background: linear-gradient(135deg, #1c1c22 0%, #1e2d64 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric_text {
  color: var(--text-muted);
  max-width: 20ch;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .work_layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .work_preview img {
    height: 100%;
  }

  .carousel_navigation {
    flex-direction: row;
    gap: var(--space-md);
  }
  .nav_dots {
    display: none;
  }

  .works_metrics {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }

  /* Works header responsive */
  .works_header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .works_title {
    max-width: none;
  }

  .works_subtitle {
    max-width: none;
  }
}

/* Wrapper horizontal pour nav + contenu */
.work_info_wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .work_info_wrapper {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

/* Testimonials Section */
.testimonials_section {
  background-color: transparent;
  color: var(--text-main);
}

/* Team Section */
.team_section {
  padding-block: var(--space-3xl);
  background-color: transparent;
}

.team_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-3xl);
  gap: var(--space-md);
}

.team_title {
  max-width: 600px;
}

.team_subtitle {
  max-width: 500px;
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

.team_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  max-width: 800px;
  margin: 0 auto;
}

.team_card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.team_avatar {
  width: 120px;
  height: 120px;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 1.5px solid var(--color-light-grey);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transition: transform 0.2s ease;
}

.team_avatar:hover {
  transform: translateY(-5px);
}

.team_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team_info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.team_name {
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.team_role {
  color: var(--accent-primary);
  font-weight: 500;
  margin: 0;
}

.team_description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.testimonials_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-3xl);
  gap: var(--space-md);
  max-width: 69ch;
  margin-inline: auto;
}

.testimonials_tag {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.testimonials_tag svg {
  color: var(--accent-primary);
}

.testimonials_cta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
}

.testimonials_grid {
  display: flex;
  align-items: stretch;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonials_column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1 1 0;
}

/* Les avis écrits s'étirent pour occuper l'espace disponible dans leur colonne */
.testimonials_column .testimonial_card--text {
  flex: 1 1 0;
}

.testimonial_card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transition: all 0.3s ease;
}

.testimonial_header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial_avatar {
  width: 48px;
  height: 48px;
  border-radius: 0.25rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--color-light-grey);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
}

.testimonial_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial_info {
  flex: 1;
}

.testimonial_name {
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--text-main);
}

.testimonial_role {
  color: var(--text-muted);
  margin: 0 0 var(--space-xs) 0;
}

.testimonial_rating {
  display: flex;
  gap: 2px;
}

.testimonial_rating svg {
  color: #fbbf24;
  width: 14px;
  height: 14px;
}

.testimonial_text {
  color: var(--text-secondary);
  margin: 0 0 var(--space-md) 0;
}

.testimonial_video {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5; /* Format vertical pour les vidéos */
}

.testimonial_video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonials Marquee */
.testimonials_marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: auto;
  isolation: isolate;
  padding-block: 0 var(--space-xl);
}

.testimonials_marquee::before,
.testimonials_marquee::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.testimonials_marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.testimonials_marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: var(--space-md);
  animation: scroll-testimonials 30s linear infinite;
}

.testimonial-item {
  flex-shrink: 0;
  min-width: 280px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .testimonials_header {
    gap: var(--space-sm);
  }

  .testimonials_cta {
    align-self: stretch;
    justify-content: center;
  }

  .testimonials_grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .testimonial_card {
    padding: var(--space-md);
  }

  .testimonial_video {
    aspect-ratio: 16/9; /* Format horizontal sur mobile */
  }

  .testimonial-item {
    min-width: 240px;
  }

  .team_grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .team_card {
    padding: var(--space-lg);
  }

  .team_avatar {
    width: 80px;
    height: 80px;
  }
}

/* Logo stack styles for overlapping logos */
.logo_stack {
  position: relative;
  display: flex;
  align-items: center;
  width: 48px; /* Space for both logos */
  height: 24px;
}

.logo_webflow {
  position: absolute;
  left: 0;
  transform: rotate(-5deg);
  z-index: 2;
  transition: transform 0.3s ease;
}

.logo_shopify {
  position: absolute;
  right: 0;
  transform: rotate(5deg);
  z-index: 1;
  transition: transform 0.3s ease;
}

.logo_stack:hover .logo_webflow {
  transform: rotate(-8deg) translateX(-2px);
}

.logo_stack:hover .logo_shopify {
  transform: rotate(8deg) translateX(2px);
}

/* Responsive adjustments for logo stack */
@media (max-width: 768px) {
  .logo_stack {
    width: 40px;
    height: 20px;
  }

  .logo_webflow,
  .logo_shopify {
    width: 20px;
    height: 20px;
  }
}

/* Pricing Section Styles */
.pricing_section {
  background: transparent;
}

.pricing_content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pricing_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.pricing_title {
  max-width: 20ch;
}

.pricing_subtitle {
  max-width: 500px;
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

.pricing_benefits {
  display: flex;
  flex-direction: row;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.benefit_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.benefit_icon {
  font-size: 1rem;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lottie_icon {
  display: inline-block;
  width: 44px;
  height: 44px;
}

@media (max-width: 768px) {
  .benefit_icon {
    width: 48px;
    height: 48px;
  }
  .lottie_icon {
    width: 36px;
    height: 36px;
  }
}

.pricing_grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

/* Styles moved to calendar_section */

.pricing_cards {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  max-width: 100%;
  flex: 1;
  align-items: stretch;
  margin-top: var(--space-2xl);
}

.pricing_col_3 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.pricing_card {
  background: #edf0f2;
  border-radius: var(--radius-md);
  padding: var(--space-xs);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.pricing_card_header {
  background: var(--bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  margin-bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card_title_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.pricing_card_title {
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.card_logo {
  width: 24px;
  height: 24px;
}

.pricing_card_price {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.price_label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: 400;
}

.price_amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.price_period {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.pricing_card_content {
  flex: 1;
  padding: var(--space-md);
}

.pricing_features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing_feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 400;
}

.feature_icon {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: var(--font-size-base);
}

.pricing_description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-size: var(--font-size-sm);
}

/* Calendar section styles moved below */

/* Responsive Pricing */
@media (max-width: 1024px) {
  .pricing_cards {
    flex-direction: column;
    gap: var(--space-md);
  }

  .pricing_col_3 {
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .pricing_benefits {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .benefit_item {
    justify-content: center;
  }

  /* Section normale avec juste logo + titre */
  .category_title_with_logo:not(.webflow_section) {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Section Webflow avec ADD-ON */
  .category_title_with_logo.webflow_section {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }

  .webflow_section .addon_control_wrapper {
    order: 1; /* En mobile, les contrôles en premier (wrap down) */
    justify-content: flex-start;
  }

  .webflow_section .title_logo_wrapper {
    order: 2; /* En mobile, le titre en second */
    justify-content: flex-start;
  }

  .card_logo {
    width: 20px;
    height: 20px;
  }
}

/* Styles pour les catégories de services dans le style de l'image */
.service_category {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.service_category:last-child {
  margin-bottom: 0;
}

.category_title {
  font-size: var(--font-size-xs);
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0;
}

.category_title_with_switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.category_title_with_switch .category_title {
  margin: 0;
}

.category_title_with_logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.addon_control_wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  order: 2; /* Sur desktop, après le titre */
}

.title_logo_wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  order: 1; /* Sur desktop, avant les contrôles */
}

/* Removed unused .addon_item and .addon_toggle */

/* Styles pour les add-ons avec switches */
.addon_features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.addon_feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 400;
}

/* Removed unused .addon_badge */

.addon_category_badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  color: var(--text-alt);
  border: 1px solid black;
  background-image: linear-gradient(180deg, #292d41, #242a37);
  box-shadow: 0 15px 44px #00000012, 0 15px 17px #2a31481a, 0 3px 5px #2a314840,
    0 0.7px 3px #2a314840, inset 0 0 18px #ffffff40, inset 0 1px 1px #ffffff4d,
    inset 0 2px 2px #ffffff26;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.addon_category_badge:hover {
  transform: translateY(-1px);
}

/* Animation des services Webflow */
.webflow_services {
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.webflow_services.active {
  opacity: 1;
}

/* Animation des services Pitch Deck */
.pitch_deck_services {
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.pitch_deck_services.active {
  opacity: 1;
}

/* Animation du prix */
.pricing_amount_animated {
  transition: all 0.3s ease;
}

/* Switch/Toggle Styles */
.addon_switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.addon_checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.addon_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: all 0.3s ease;
  border-radius: 24px;
}

.addon_slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.addon_checkbox:checked + .addon_slider {
  background-image: linear-gradient(180deg, #292d41, #242a37);
  border: 1px solid black;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.addon_checkbox:checked + .addon_slider:before {
  transform: translateX(20px) translateY(-50%);
}

.addon_slider:hover {
  box-shadow: 0 0 0 8px rgba(var(--accent-primary-rgb), 0.1);
}

/* ===============================
   FAQ Section Styles
   =============================== */

.faq_section {
  background: transparent;
}

.faq_content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout en deux colonnes */
.faq_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Container gauche avec l'équipe */
.faq_team_container {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  position: sticky;
  top: var(--space-xl);
}

.faq_team_header {
  margin-bottom: var(--space-lg);
  text-align: left;
}

.faq_team_title {
  color: var(--text-main);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
}

.faq_team_subtitle {
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  max-width: none;
}

.faq_team_members {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.faq_team_member {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.faq_team_avatar {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid var(--color-light-grey);
  box-shadow: 0px 0px 0px 1px rgba(1, 71, 255, 0.04),
    0px 1px 1px -0.5px rgba(11, 28, 74, 0.04),
    0px 3px 3px -1.5px rgba(11, 28, 74, 0.04),
    0px 6px 6px -3px rgba(11, 28, 74, 0.04),
    0px 12px 12px -6px rgba(11, 28, 74, 0.04),
    0px 24px 24px -12px rgba(11, 28, 74, 0.04);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq_team_avatar:hover {
  transform: translateY(-5px);
}

.faq_team_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq_team_member_info {
  text-align: left;
}

.faq_team_name {
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 var(--space-xs) 0;
}

.faq_team_role {
  color: var(--text-muted);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.faq_team_cta {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--space-lg);
}

.faq_team_cta .btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.faq_team_contact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(var(--accent-primary-rgb), 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.1);
}

.faq_contact_container {
  width: 40px;
  height: 40px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq_contact_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq_contact_question {
  color: var(--text-muted);
  margin: 0 0 var(--space-xs) 0;
  font-weight: 500;
}

.faq_contact_email {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq_contact_email:hover {
  color: var(--accent-primary);
}

/* Container droite avec les questions */
.faq_questions_container {
  display: flex;
  flex-direction: column;
}

.faq_questions_header {
  margin-bottom: var(--space-lg);
}

.faq_questions_title {
  color: var(--text-main);
  margin: 0;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq_item {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-inner);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq_question {
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.faq_question_text {
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.faq_icon {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq_item.active .faq_icon {
  transform: rotate(45deg);
}

.faq_answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_item.active .faq_answer {
  padding: 0 var(--space-lg) var(--space-md);
  margin-bottom: var(--space-sm);
}

.faq_answer p,
.faq_answer ul {
  color: var(--text-muted);
  line-height: var(--line-height-base);
  margin: 0;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
  .faq_layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .faq_team_container {
    position: static;
    order: 2;
  }

  .faq_questions_container {
    order: 1;
  }
}

@media (max-width: 768px) {
  .faq_layout {
    gap: var(--space-2xl);
  }

  .faq_team_container {
    padding: var(--space-lg);
  }

  .faq_team_header {
    margin-bottom: var(--space-xl);
  }

  .faq_team_member {
    gap: var(--space-sm);
  }

  .faq_team_avatar {
    width: 60px;
    height: 60px;
  }

  .faq_team_contact {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .faq_question {
    padding: var(--space-md);
  }

  .faq_answer {
    padding: 0 var(--space-md);
  }

  .faq_item.active .faq_answer {
    padding: 0 var(--space-md) var(--space-md);
  }
}

/* ===============================
   Calendar Section Styles
   =============================== */

.calendar_section {
  background: transparent;
}

.calendar_content {
  max-width: 1200px;
  margin: 0 auto;
}

.calendar_header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.calendar_title {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.calendar_subtitle {
  max-width: 500px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

.calendar_grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calendar_embed {
  width: 100%;
  max-width: 900px;
}

.calendar_logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

/* Calendar Responsive */
@media (max-width: 768px) {
  .calendar_embed {
    min-height: 500px;
    padding: var(--space-sm);
  }

  .calendar_grid {
    gap: var(--space-xl);
  }
}
