/* ==========================================================================
   FROZNCO - Style System & Hero Section
   Conforme aux spécifications Figma (Node 8503:2474) & docs/design.md
   ========================================================================== */

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Colors */
  --color-primary: #ED694D;
  --color-primary-hover: #db593d;
  --color-primary-glow: rgba(237, 105, 77, 0.35);
  --color-secondary: #F1B710;
  --color-yellow: #F1B710;
  --color-ice-blue: #1DAACF;
  --color-dark: #00121E;
  --color-dark-surface: #0b1f2e;
  --color-white: #FFFFFF;
  --color-text-muted: #CBD5E1;
  --color-border-light: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-family-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-family-accent: 'Kalam', cursive;

  /* Font sizes & line heights */
  --text-h1: clamp(2.25rem, 4.2vw, 3rem); /* 48px on desktop */
  --lh-h1: 1.17;
  --text-p-hero: clamp(1.05rem, 1.6vw, 1.25rem); /* 20px on desktop */
  --lh-p-hero: 1.45;
  --text-nav: 0.95rem; /* ~15-16px */
  --text-btn: 1rem; /* 16px */

  /* Layout & Spacing */
  --max-width: 1440px;
  --header-height: 110px;
  --transition-default: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-default);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- Common Components & Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: var(--text-btn);
  line-height: 1;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 105, 77, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-hero {
  min-height: 48px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-hero .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn-hero:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVBAR (Conforme Figma #8564:7853)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Brand Logo (Gauche) */
.brand-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: 75px;
  height: 90px;
  object-fit: contain;
}

/* Navigation Wrapper (Centre) */
.nav-menu-wrapper {
  justify-self: center;
  display: flex;
  align-items: center;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

/* Actions Contact (Droite) */
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-actions-mobile {
  display: none;
}

.nav-mobile-contact {
  display: none;
}

/* Mobile Navigation Toggle (Burger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: var(--transition-default);
}

/* ==========================================================================
   HERO SECTION (Conforme Figma #8564:7852)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 712px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-dark);
  background-image: 
    linear-gradient(90deg, rgba(0, 18, 30, 0.72) 0%, rgba(0, 18, 30, 0.45) 50%, rgba(0, 18, 30, 0.15) 100%),
    url('../img/hero-bg.webp'),
    url('../img/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding-top: 140px; /* Space for the transparent navbar */
  overflow: hidden;
}

.hero-main {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 30px 80px 70px 80px;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: heroFadeIn 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: var(--text-h1);
  line-height: var(--lh-h1);
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: var(--color-primary);
}

.hero-description {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: var(--text-p-hero);
  line-height: var(--lh-p-hero);
  color: var(--color-white);
}

.hero-description .accent {
  color: var(--color-secondary);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* Wavy Section Divider (Figma #8564:7859 "forme section") */
.hero-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 3;
  margin-top: auto;
}

.hero-divider svg {
  width: 100%;
  height: 58px;
  display: block;
}

/* ==========================================================================
   DESSERTS PREVIEW & REASSURANCE SECTION (Conforme Figma #8499:1746 & #8499:1753)
   ========================================================================== */
.desserts-preview-section {
  background-color: var(--color-white);
  padding: 32px 0 28px 0;
  position: relative;
  z-index: 4;
}

.desserts-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Desserts Icons List */
.desserts-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5.5vw, 80px);
  width: 100%;
  flex-wrap: wrap;
  padding: 8px 0;
}

.dessert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: var(--transition-default);
}

.dessert-item:hover {
  transform: translateY(-4px);
}

.dessert-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.dessert-item:hover .dessert-icon {
  transform: scale(1.12);
}

.dessert-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.dessert-label {
  font-family: var(--font-family-accent); /* Kalam */
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: var(--color-dark);
  text-align: center;
  white-space: nowrap;
}

/* Reassurance Stat Badge Pill (Figma #8499:1754) */
.reassurance-badge-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.stat-badge-pill {
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
  border-radius: 999px;
  padding: 10px 24px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(0, 18, 30, 0.08);
  transition: var(--transition-default);
}

.stat-badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 18, 30, 0.16);
}

.stat-badge-icon {
  width: 34px;
  height: 34px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-badge-icon img {
  width: 18px;
  height: 18px;
}

.stat-badge-text {
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.stat-badge-text .highlight-number {
  color: #F97316;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  margin: 0 2px;
  vertical-align: baseline;
}

/* ==========================================================================
   ACTIVITES / SOLUTIONS SLIDER SECTION (Conforme Figma #8499:1766)
   ========================================================================== */
.activites-section {
  padding: 100px 0 130px 0;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.activites-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 126px);
  position: relative;
}

/* Colonne Gauche : Titre et Slider Pagination */
.activites-header-col {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: sticky;
  top: 120px;
}

.activites-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.activites-title .highlight {
  color: var(--color-primary);
}

.activites-title .dot {
  color: #F1B710;
}

/* Pagination verticale */
.slider-pagination {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.slider-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D9D9D9;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.slider-dot:hover:not(.is-active) {
  background-color: #B0BEC5;
  transform: scale(1.15);
}

.slider-dot.is-active {
  width: 16px;
  height: 44px;
  border-radius: 999px;
  background-color: var(--color-dark);
}

.slider-dot[data-slide="0"].is-active {
  background-color: #F1B710;
}

.slider-dot[data-slide="1"].is-active {
  background-color: #1DAACF;
}

.slider-dot[data-slide="2"].is-active {
  background-color: #ED694D;
}

/* Colonne Droite : Slider et slides */
.activites-slider-col {
  flex: 1;
  max-width: 692px;
  position: relative;
  min-height: 560px;
}

.activite-slide {
  display: none;
  position: relative;
}

.activite-slide.is-active {
  display: block;
  animation: slideFadeIn 0.4s ease-out forwards;
}

/* Titre Catégorie */
.activite-category {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.activite-category.cat-fastfood {
  color: #F1B710;
}

.activite-category.cat-brasserie {
  color: #1DAACF;
}

.activite-category.cat-coffeeshop {
  color: #ED694D;
}

/* Forme décorative arrière-plan */
.activite-shape {
  position: absolute;
  top: -65px;
  right: -210px;
  width: 555px;
  max-width: none;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

#slide-1 .activite-shape {
  top: -65px;
  right: -210px;
  width: 555px;
}

#slide-2 .activite-shape {
  top: 0px;
  right: -125px;
  width: 330px;
}

#slide-3 .activite-shape {
  top: 65px;
  right: -160px;
  width: 570px;
}

.activite-shape img {
  width: 100%;
  height: auto;
  display: block;
}

/* Conteneur image et carte */
.activite-visual-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.activite-image-box {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 18, 30, 0.08);
}

.activite-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.activite-visual-wrapper:hover .activite-image-box img {
  transform: scale(1.03);
}

/* Carte flottante superposée */
.activite-card {
  position: absolute;
  left: -90px;
  bottom: 35px;
  width: 384px;
  min-height: 250px;
  max-width: 90%;
  background: var(--color-white);
  border-radius: 24px;
  padding: 26px 26px 22px 26px;
  box-shadow: 0 18px 45px rgba(0, 18, 30, 0.12), 0 4px 12px rgba(0, 18, 30, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  z-index: 3;
}

/* Tags desserts (sur fond blanc, sans contour) */
.activite-dessert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
}

.activite-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.activite-tag img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.activite-tag span {
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-dark);
  line-height: 1;
}

.activite-card-text {
  font-family: var(--font-family-base);
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}

.activite-card-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.btn-circle-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-default);
  box-shadow: 0 6px 16px rgba(237, 105, 77, 0.35);
}

.btn-circle-arrow:hover {
  background-color: var(--color-primary-dark);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(237, 105, 77, 0.45);
}

/* ==========================================================================
   ACCOMPAGNEMENT SECTION (Conforme Figma #8499:2228)
   ========================================================================== */
.accompagnement-section {
  padding: 100px 0 120px 0;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.accompagnement-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 126px);
}

/* Colonne Gauche : Titre, Descriptif, CTA et Photo */
.accompagnement-left-col {
  flex: 1;
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.accompagnement-header-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.accompagnement-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.accompagnement-title .highlight {
  color: var(--color-primary);
}

.accompagnement-title .dot {
  color: #F1B710;
}

.accompagnement-description {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.65;
  color: #4A5568;
  margin: 0;
}

.accompagnement-description strong {
  font-weight: 700;
  color: var(--color-dark);
}

.btn-accompagnement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.accompagnement-image-box {
  width: 100%;
  height: 462px;
  border-radius: 31px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 18, 30, 0.08);
}

.accompagnement-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.accompagnement-image-box:hover img {
  transform: scale(1.025);
}

/* Colonne Droite : 3 Engagements */
.accompagnement-right-col {
  width: 480px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.engagement-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: none;
}

.engagement-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.engagement-number {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}

.engagement-number.num-yellow {
  color: #F1B710;
}

.engagement-number.num-blue {
  color: #1DAACF;
}

.engagement-number.num-coral {
  color: #ED694D;
}

.engagement-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

.engagement-subtitle {
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 6px 0 2px 0;
}

.engagement-text {
  font-family: var(--font-family-base);
  font-size: 15px;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
}

/* ==========================================================================
   CONFIANCE / PRÉSENCE NATIONALE SECTION (Conforme Figma #8500:2232)
   ========================================================================== */
.confiance-section {
  padding: 80px 0 100px 0;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.confiance-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 75px;
}

/* Colonne Gauche : Titre H2 */
.confiance-header-col {
  width: 283px;
  flex-shrink: 0;
}

.confiance-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.confiance-title .highlight {
  color: var(--color-primary);
}

.confiance-title .dot {
  color: #F1B710;
}

/* Colonne Droite : Groupe Visuel (Carte + Cartes statistiques) */
.confiance-visual-group {
  position: relative;
  width: 841px;
  height: 514px;
  flex-shrink: 0;
}

/* Carte de France */
.confiance-map-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 536px;
  height: 514px;
  z-index: 3;
  pointer-events: none;
}

.confiance-map-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Cartes Statistiques */
.confiance-cards-wrapper {
  position: absolute;
  left: 0;
  top: 181px;
  width: 408px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.confiance-card {
  background-color: #EDEDED;
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 18, 30, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.confiance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 18, 30, 0.08);
}

.card-clients {
  gap: 8px;
}

.stat-number {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 68px;
  line-height: 56px;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--color-dark);
  margin: 0;
}

.card-presence {
  gap: 4px;
}

.stat-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: var(--color-dark);
  margin: 0;
}

.stat-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #4A5568;
  margin: 0;
}

/* ==========================================================================
   SECTION TÉMOIGNAGES & PARTENAIRES (Figma #8501:2233 & #8501:2235)
   ========================================================================== */
.temoignages-section {
  padding: 80px 0 100px 0;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.temoignages-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* Grille des 3 Témoignages */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.temoignage-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.14);
}

.temoignage-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.temoignage-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.temoignage-stars svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.temoignage-quote {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--color-dark);
  margin: 0;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.avatar-initials {
  background-color: var(--color-primary);
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
}

.author-name {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  color: var(--color-dark);
}

/* Bloc Partenaires (Figma #8501:2235) */
.partenaires-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  padding-top: 24px;
  width: 100%;
  overflow: hidden;
}

.partenaires-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  color: var(--color-dark);
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Carrousel infini (Marquee) */
.partenaires-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partenaires-track {
  display: flex;
  width: max-content;
  animation: scrollInfinite 28s linear infinite;
  will-change: transform;
}

.partenaires-track:hover {
  animation-play-state: paused;
}

.partenaires-group {
  display: flex;
  align-items: center;
  gap: 108px;
  padding-right: 108px;
  flex-shrink: 0;
}

.partenaire-item {
  width: 132px;
  height: 68px;
  background-color: #D9D9D9;
  border-radius: 4px;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.partenaire-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partenaire-item:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

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

/* ==========================================================================
   SECTION MACHINES (Figma #8501:2238)
   ========================================================================== */
.machines-section {
  padding: 96px 0;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.machines-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.machines-visual {
  flex: 1;
  max-width: 583px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machines-visual img {
  width: 100%;
  height: auto;
  max-height: 606px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 18, 30, 0.1));
  transition: transform 0.4s ease;
}

.machines-visual img:hover {
  transform: translateY(-4px) scale(1.02);
}

.machines-content {
  flex: 1;
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.machines-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.machines-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.machines-title .highlight {
  color: var(--color-primary);
}

.machines-subtitle {
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: #F1B710;
  margin: 0;
}

.machines-description {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.machines-description p {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  margin: 0;
}

.machines-action {
  display: flex;
  align-items: center;
  margin-top: -4px;
}

.btn-machines {
  padding: 14px 28px;
}

.btn-machines .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn-machines:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION ÉCHANGE / PROCESS (Figma #8501:2246)
   ========================================================================== */
.echange-section {
  background-color: var(--color-dark);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.echange-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.echange-header-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
}

.echange-title-col {
  width: 560px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.echange-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.15;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
}

.echange-title .highlight {
  color: var(--color-primary);
}

.echange-title .dot {
  color: #F1B710;
}

.echange-cta {
  display: flex;
  align-items: center;
}

.btn-echange {
  padding: 14px 28px;
}

.btn-echange .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn-echange:hover .btn-icon {
  transform: translateX(4px);
}

.echange-desc-col {
  max-width: 620px;
  flex: 1;
  padding-top: 10px;
}

.echange-description {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.echange-line-1 {
  white-space: nowrap;
}

/* 4 Étapes (Figma #8501:2245) */
.echange-steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-top: 48px;
}

.echange-step-item {
  width: 180px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.step-number {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #F1B710;
  letter-spacing: -0.01em;
}

.step-icon-box {
  width: 117px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 12px 0;
  transition: transform 0.3s ease;
}

.step-icon-box img,
.step-icon-box svg {
  width: 117px;
  height: 117px;
  object-fit: contain;
  display: block;
}

.echange-step-item:hover .step-icon-box {
  transform: translateY(-4px);
}

.step-label {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ==========================================================================
   FOOTER (Conforme Figma #8574:6345 / #8503:2416)
   ========================================================================== */
.site-footer {
  width: 100%;
  background-color: #00121E;
  position: relative;
  overflow: hidden;
}

.footer-wave-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  background-color: #00121E;
  margin-bottom: -1px;
}

/* Footer sur fond blanc (ex: page Desserts Glacés) */
.site-footer.footer-light {
  background-color: var(--color-white);
}

.site-footer.footer-light .footer-wave-wrap {
  background-color: var(--color-white);
}

.footer-wave-wrap svg {
  width: 100%;
  height: 58px;
  display: block;
}

.footer-main {
  width: 100%;
  background-color: #1DAACF;
  padding: 36px 0 56px 0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-nav,
.footer-col-legal {
  flex: 1;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav-link:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

.footer-col-social {
  flex: 1.2;
  gap: 12px;
}

.footer-heading {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  text-decoration: none;
}

.social-icon-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon-btn:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.social-icon-btn:hover img {
  transform: scale(1.1);
}

.footer-col-brand {
  flex: 1.5;
  gap: 22px;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
}

.footer-logo-link img {
  width: 75px;
  height: 90px;
  display: block;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-entry {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-entry-icon {
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-entry-icon img {
  width: 21px;
  height: 21px;
  display: block;
}

.contact-entry-text {
  font-family: var(--font-family-base);
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a.contact-entry-text:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile First / Media Queries)
   ========================================================================== */

/* Tablet & Smaller Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .nav-container {
    padding: 20px 40px;
  }
  .hero-main {
    padding: 20px 40px 60px 40px;
  }
  .nav-menu {
    gap: 24px;
  }
  .nav-link {
    font-size: 0.9rem;
  }

  .activites-container {
    padding: 0 60px;
    gap: 60px;
  }

  .activite-card {
    left: -40px;
  }

  /* Accompagnement Section Tablet Large */
  .accompagnement-container {
    padding: 0 60px;
    gap: 48px;
  }

  /* Confiance Section Tablet Large */
  .confiance-container {
    padding: 0 60px;
    gap: 40px;
  }

  .confiance-visual-group {
    width: 680px;
  }

  .confiance-map-box {
    width: 440px;
  }

  .confiance-cards-wrapper {
    width: 360px;
  }

  /* Temoignages Tablet Large */
  .temoignages-container {
    padding: 0 60px;
    gap: 56px;
  }

  /* Machines Tablet Large */
  .machines-container {
    padding: 0 60px;
    gap: 40px;
  }

  /* Echange Section Tablet Large */
  .echange-container {
    padding: 0 60px;
    gap: 52px;
  }

  .echange-steps-row {
    gap: 24px;
  }

  .echange-step-item {
    width: calc(25% - 18px);
  }

  /* Footer Tablet Large */
  .footer-container {
    padding: 0 60px;
    gap: 20px;
  }
}

/* Tablet & Mobile (<= 992px) */
@media (max-width: 992px) {
  .site-header {
    padding: 0;
    background: transparent;
  }

  .nav-container {
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
  }

  /* 1. Burger Button (Gauche - Figma #8564:7819) */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 999px;
    background-color: var(--color-white);
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    padding: 0;
    z-index: 110;
    order: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .nav-toggle:hover {
    transform: scale(1.04);
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Hamburger transform when open */
  .nav-toggle.is-active {
    background-color: var(--color-white);
    border-color: var(--color-primary);
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* 2. Logo FROZNCO (Centre - Figma #8564:7820) */
  .brand-logo {
    order: 2;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo img {
    width: 67px;
    height: 80px;
    object-fit: contain;
  }

  /* 3. Bouton Contact / Mail (Droite - Figma #8564:7836) */
  .nav-mobile-contact {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px var(--color-primary-glow);
    z-index: 110;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .nav-mobile-contact:hover {
    transform: scale(1.04);
    background-color: var(--color-primary-hover);
  }

  .nav-mobile-contact svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-white);
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .desserts-container {
    padding: 0 40px;
  }

  .desserts-list {
    gap: 32px 48px;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--color-dark);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease-in-out, visibility 0.35s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 105;
  }

  .nav-menu-wrapper.is-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-actions-mobile {
    display: block;
    margin-top: 30px;
    width: 100%;
  }

  .nav-actions-mobile .btn {
    width: 100%;
  }

  /* Backdrop */
  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 102;
  }

  .nav-backdrop.is-active {
    display: block;
  }

  /* Activites Section Tablet */
  .activites-container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 0 40px;
  }

  .activites-header-col {
    width: 100%;
    position: static;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .slider-pagination {
    flex-direction: row;
    gap: 10px;
  }

  .slider-dot.is-active {
    width: 44px;
    height: 16px;
  }

  .activites-slider-col {
    max-width: 100%;
    min-height: auto;
  }

  .activite-card {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 480px;
    margin: 24px auto 0 auto;
  }

  .activite-shape {
    opacity: 0.6;
    right: -40px;
    width: 380px;
  }

  /* Accompagnement Section Tablet */
  .accompagnement-container {
    flex-direction: column;
    padding: 0 40px;
    gap: 56px;
  }

  .accompagnement-left-col,
  .accompagnement-right-col {
    width: 100%;
    max-width: 100%;
  }

  .accompagnement-left-col {
    gap: 40px;
  }

  .accompagnement-right-col {
    gap: 24px;
  }

  /* Confiance Section Tablet */
  .confiance-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px;
    gap: 48px;
  }

  .confiance-header-col {
    width: 100%;
  }

  .confiance-visual-group {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .confiance-map-box {
    position: static;
    width: 100%;
    max-width: 460px;
    height: auto;
  }

  .confiance-cards-wrapper {
    position: static;
    width: 100%;
    gap: 16px;
  }

  .confiance-card {
    width: 100%;
  }

  /* Temoignages Tablet */
  .temoignages-container {
    padding: 0 40px;
    gap: 48px;
  }

  .temoignages-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .partenaires-group {
    gap: 72px;
    padding-right: 72px;
  }

  /* Machines Section Tablet */
  .machines-section {
    padding: 72px 0;
  }

  .machines-container {
    flex-direction: column;
    padding: 0 40px;
    gap: 48px;
    text-align: left;
  }

  .machines-header {
    align-items: flex-start;
  }

  .machines-action {
    justify-content: flex-start;
  }

  /* Echange Section Tablet */
  .echange-section {
    padding: 80px 0;
  }

  .echange-container {
    padding: 0 40px;
    gap: 48px;
  }

  .echange-header-row {
    flex-direction: column;
    gap: 32px;
  }

  .echange-title-col {
    width: 100%;
  }

  .echange-desc-col {
    max-width: 100%;
    padding-top: 0;
  }

  .echange-line-1 {
    white-space: normal;
  }

  .echange-steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .echange-step-item {
    width: 100%;
  }

  /* Footer Tablet */
  .footer-container {
    padding: 0 40px;
    flex-wrap: wrap;
    gap: 40px 32px;
  }

  .footer-col-nav,
  .footer-col-legal {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-col-social,
  .footer-col-brand {
    flex: 1 1 calc(50% - 16px);
  }
}

/* Mobile (<= 640px) */
/* ==========================================================================
   MOBILE RESPONSIVE - HOME PAGE (Conforme Figma iPhone 14 & 15 Pro - 1 #8564:7629)
   ========================================================================== */
@media (max-width: 640px) {
  /* Navigation Mobile (Conforme Figma #8564:7843) */
  .site-header {
    padding: 0;
    background: transparent;
  }

  .nav-container {
    padding: 10px 24px;
  }

  /* 1. Hero Section Mobile (#8564:7630 / #8564:7767) */
  .hero-section {
    min-height: 620px;
    padding-top: 110px;
    padding-bottom: 0;
    background-image: 
      linear-gradient(180deg, rgba(0, 18, 30, 0.45) 0%, rgba(0, 18, 30, 0.05) 35%, rgba(0, 18, 30, 0.25) 100%),
      url('../img/hero-mobile-bg.webp'),
      url('../img/hero-mobile-bg.png');
    background-position: calc(50% + 75px) bottom;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-main {
    padding: 24px 24px 32px 24px;
    max-width: 100%;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-start;
  }

  .hero-content {
    gap: 24px;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-white);
    margin: 0;
  }

  .hero-title .highlight {
    color: var(--color-primary);
  }

  .hero-description {
    width: 252px;
    max-width: 252px;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
    margin: 0;
  }

  .hero-description .accent {
    display: inline;
    color: var(--color-white);
    font-weight: 400;
  }

  .hero-cta {
    width: auto;
    margin-top: 4px;
    display: flex;
    justify-content: flex-start;
  }

  .btn-hero {
    width: auto;
    max-width: fit-content;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 14px var(--color-primary-glow);
  }

  .hero-divider {
    width: 100%;
    line-height: 0;
  }

  .hero-divider svg {
    height: 36px;
    width: 100%;
    display: block;
  }

  /* 2. Desserts Preview & Reassurance (#8568:9701 / #8570:10767) */
  .desserts-container {
    padding: 0 24px;
  }

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

  .dessert-item {
    gap: 6px;
  }

  .dessert-icon {
    width: 42px;
    height: 42px;
  }

  .dessert-icon img {
    width: 36px;
    height: 36px;
  }

  .dessert-label {
    font-family: var(--font-family-accent);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
  }

  .reassurance-badge-wrapper {
    margin-top: 24px;
  }

  .stat-badge-pill {
    padding: 12px 20px;
    gap: 12px;
    border-radius: 999px;
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
    justify-content: center;
  }

  .stat-badge-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .stat-badge-icon img {
    width: 18px;
    height: 18px;
  }

  .stat-badge-text {
    font-size: 13px;
    line-height: 18px;
  }

  .stat-badge-text .highlight-number {
    font-size: 16px;
    font-weight: 800;
  }

  /* 3. Activites / Solutions Section Mobile (#8571:3666) */
  .activites-section {
    padding: 48px 0 64px 0;
  }

  .activites-container {
    padding: 0 24px;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }

  .activites-header-col {
    display: contents;
  }

  .activites-title {
    order: 1;
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
  }

  .activites-slider-col {
    order: 2;
    width: 100%;
  }

  .activite-category {
    font-family: var(--font-family-accent);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: var(--color-yellow);
    margin-bottom: 12px;
  }

  .activite-image-box {
    height: 244px;
    border-radius: 24px;
    overflow: hidden;
  }

  .activite-shape {
    display: none;
  }

  .activite-visual-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .activite-card {
    width: 305px;
    max-width: calc(100% - 32px);
    margin: -39px auto 0 auto;
    padding: 20px;
    border-radius: 24px;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    background-color: var(--color-white);
  }

  .slider-pagination {
    order: 3;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 24px;
    justify-content: center;
    gap: 8px;
  }

  .slider-dot.is-active {
    width: 38px;
    height: 10px;
    border-radius: 999px;
    background-color: var(--color-ice-blue);
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #CBD5E1;
  }

  /* 4. Accompagnement Section Mobile (#8571:3687) */
  .accompagnement-section {
    padding: 56px 0 72px 0;
  }

  .accompagnement-container {
    padding: 0 24px;
    gap: 36px;
  }

  .accompagnement-title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
  }

  .btn-accompagnement {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    justify-content: center;
  }

  .accompagnement-image-box {
    height: 402px;
    border-radius: 31px;
    overflow: hidden;
    width: 100%;
  }

  .accompagnement-image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .engagement-item {
    gap: 16px;
  }

  .engagement-number {
    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
  }

  .engagement-title {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
  }

  .engagement-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  /* 5. Confiance Section Mobile (#8571:3727) */
  .confiance-section {
    padding: 48px 0 60px 0;
  }

  .confiance-container {
    padding: 0 24px;
    gap: 32px;
  }

  .confiance-title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
  }

  .confiance-map-box {
    max-height: 330px;
    width: 100%;
  }

  .confiance-map-box img {
    max-height: 330px;
    width: 100%;
    object-fit: contain;
  }

  .stat-number {
    font-size: 52px;
    line-height: 56px;
    font-weight: 700;
  }

  .stat-label,
  .stat-title,
  .stat-desc {
    font-size: 16px;
    line-height: 22px;
  }

  .confiance-card {
    padding: 20px;
    border-radius: 20px;
  }

  /* 6. Temoignages Mobile - Swipe Horizontal (#8571:3950) */
  .temoignages-section {
    padding: 48px 0 60px 0;
    overflow: hidden;
  }

  .temoignages-container {
    padding: 0 24px;
    gap: 28px;
  }

  .temoignages-title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
  }

  .temoignages-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 24px 24px 24px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .temoignages-grid::-webkit-scrollbar {
    display: none;
  }

  .temoignage-card {
    flex: 0 0 290px;
    width: 290px;
    scroll-snap-align: center;
    padding: 24px 20px;
    border-radius: 16px;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .temoignage-quote {
    font-size: 14px;
    line-height: 22px;
  }

  /* 7. Partenaires Mobile (#8571:4000) */
  .partenaires-section {
    padding: 40px 0;
  }

  .partenaires-title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
    text-align: center;
  }

  .partenaires-group {
    gap: 40px;
    padding-right: 40px;
  }

  .partenaire-item {
    width: 100px;
    height: 52px;
  }

  /* 8. Machines Section Mobile (#8571:4011) */
  .machines-section {
    padding: 56px 0;
  }

  .machines-container {
    padding: 0 24px;
    gap: 32px;
    text-align: left;
  }

  .machines-visual {
    max-width: 100%;
    height: 320px;
    margin: 0 auto;
  }

  .machines-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .machines-content {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .machines-header {
    align-items: flex-start;
    text-align: left;
  }

  .machines-title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
    text-align: left;
  }

  .machines-subtitle {
    font-family: var(--font-family-accent);
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--color-yellow);
    text-align: left;
  }

  .machines-description {
    text-align: left;
  }

  .machines-description p {
    font-size: 15px;
    line-height: 22px;
    text-align: left;
  }

  .machines-action {
    justify-content: flex-start;
    width: auto;
  }

  .machines-action .btn,
  .btn-machines {
    width: auto;
    max-width: fit-content;
    height: 50px;
    padding: 0 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 9. Echange Section Mobile (#8574:4456) */
  .echange-section {
    padding: 56px 0;
  }

  .echange-container {
    padding: 0 20px;
    gap: 36px;
  }

  .echange-box {
    padding: 48px 24px;
    border-radius: 28px;
    gap: 36px;
  }

  .echange-title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
    color: var(--color-white);
  }

  .echange-cta .btn {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    justify-content: center;
  }

  .echange-description {
    font-size: 15px;
    line-height: 22px;
  }

  .echange-steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .echange-step-item {
    padding: 16px 12px;
    gap: 8px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    font-size: 20px;
  }

  .step-icon-box {
    width: 68px;
    height: 68px;
    margin: 4px auto 8px auto;
  }

  .step-icon-box img,
  .step-icon-box svg {
    width: 68px;
    height: 68px;
  }

  .step-label {
    font-size: 13px;
    line-height: 18px;
  }

  /* 10. Footer Mobile (Conforme Figma #8574:6283) */
  .footer-wave-wrap svg {
    height: 36px;
  }

  .footer-main {
    padding: 36px 0 48px 0;
  }

  .footer-container {
    padding: 0 24px;
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-contact-details {
    gap: 12px;
  }
}

/* ==========================================================================
   PAGE: DESSERTS GLACES
   HERO SECTION (Conforme Figma Frame #8532:2663)
   ========================================================================== */
.hero-desserts-section {
  background-color: var(--color-dark);
  position: relative;
  width: 100%;
  padding-top: 150px; /* Espace pour le header transparent/absolu */
  padding-bottom: 0;
  overflow: visible;
  color: var(--color-white);
  z-index: 10;
}

.hero-desserts-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Colonne Gauche : Textes (Conforme Figma #8532:2667) */
.hero-desserts-content {
  flex: 1 1 482px;
  max-width: 482px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 24px; /* Rapproché du texte des tags */
}

.hero-desserts-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.01em;
}

.highlight-yellow {
  color: var(--color-secondary); /* #F1B710 */
}

.hero-desserts-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white);
  margin: 0;
}

.hero-desserts-tags {
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  color: var(--color-white);
  margin: 0;
}

/* Colonne Droite : Visuel (Conforme Figma #8532:2670) */
.hero-desserts-visual {
  flex: 0 0 608px;
  width: 608px;
  max-width: 608px;
  height: 613px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 15;
  margin-bottom: -95px; /* Légèrement descendu pour un chevauchement idéal */
}

.hero-desserts-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-desserts-visual:hover .hero-desserts-img {
  transform: scale(1.025);
}

/* --- Responsive Desserts Glacés Hero --- */
@media (max-width: 1300px) {
  .hero-desserts-container {
    padding: 0 60px;
    gap: 40px;
  }

  .hero-desserts-content {
    padding-bottom: 20px;
  }

  .hero-desserts-visual {
    flex: 0 0 520px;
    width: 520px;
    max-width: 520px;
    height: 524px;
    margin-bottom: -80px;
  }

  .hero-desserts-title {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-desserts-desc {
    font-size: 18px;
    line-height: 26px;
  }

  .hero-desserts-tags {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 1024px) {
  .hero-desserts-section {
    padding-top: 160px;
    padding-bottom: 0;
  }

  .hero-desserts-container {
    flex-direction: column;
    text-align: center;
    padding: 0 32px;
    gap: 20px;
  }

  .hero-desserts-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 640px;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
  }

  .hero-desserts-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin-bottom: -65px;
  }

  .hero-desserts-img {
    width: 100%;
    height: auto;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .hero-desserts-section {
    padding-top: 180px;
    padding-bottom: 0;
  }

  .hero-desserts-container {
    padding: 0 20px;
    gap: 16px;
  }

  .hero-desserts-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding-bottom: 0;
  }

  .hero-desserts-title {
    font-size: 28px;
    line-height: 35px;
    margin: 0;
  }

  .hero-desserts-desc {
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    max-width: 360px;
  }

  .hero-desserts-tags {
    font-size: 17px;
    line-height: 23px;
    margin: 0;
  }

  .hero-desserts-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 14px auto -40px auto;
  }

  .hero-desserts-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
  }
}

@media (max-width: 420px) {
  .hero-desserts-section {
    padding-top: 175px;
  }

  .hero-desserts-container {
    padding: 0 16px;
    gap: 12px;
  }

  .hero-desserts-content {
    flex: 0 0 auto;
    width: 100%;
    gap: 12px;
  }

  .hero-desserts-title {
    font-size: 26px;
    line-height: 33px;
  }

  .hero-desserts-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-desserts-tags {
    font-size: 15px;
    line-height: 21px;
  }

  .hero-desserts-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 290px;
    height: auto;
    margin: 10px auto -35px auto;
  }

  .hero-desserts-img {
    width: 100%;
    height: auto;
    max-height: 290px;
  }
}

/* ==========================================================================
   PAGE: DESSERTS GLACES
   SECTION: UN DESSERT GLACÉ POUR CHAQUE CONCEPT (Conforme Figma #8533:2879)
   ========================================================================== */
.concept-section {
  background-color: var(--color-white);
  padding: 210px 0 96px 0; /* Espace aéré et généreux sous le visuel hero qui déborde */
  position: relative;
  overflow: hidden;
  color: var(--color-dark);
  z-index: 5;
}

.concept-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* En-tête de section */
.concept-header {
  max-width: 792px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.concept-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 40px);
  line-height: 1.25;
  color: var(--color-dark);
}

.highlight-coral {
  color: var(--color-primary); /* #ED694D */
}

.concept-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  opacity: 0.85;
}

/* Carrousel Wrapper */
.concept-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Flèches de navigation */
.concept-nav-arrow {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  box-shadow: 0 6px 16px rgba(237, 105, 77, 0.3);
  z-index: 10;
  border: none;
}

.concept-nav-arrow:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(237, 105, 77, 0.45);
}

.concept-nav-arrow:active {
  transform: scale(0.95);
}

/* Piste des slides en grille superposée pour transition fluide sans saut */
.concept-slides-track {
  flex: 1;
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-areas: "slide";
  align-items: center;
}

/* Slide de dessert avec animation fluide */
.concept-slide {
  grid-area: slide;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(35px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              visibility 0.5s ease;
  z-index: 1;
}

/* Direction Précédent */
.concept-slides-track[data-direction="prev"] .concept-slide {
  transform: translateX(-35px);
}

.concept-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) !important;
  z-index: 2;
}

/* Micro-animations fluides des éléments internes */
.concept-slide .concept-dessert-img {
  transition: transform 0.6s cubic-bezier(0.34, 1.3, 0.64, 1);
  transform: translateY(-35px) scale(0.92);
}

.concept-slide.active .concept-dessert-img {
  transform: translateY(-35px) scale(1);
}

.concept-slide.active .concept-dessert-img:hover {
  transform: translateY(-35px) scale(1.03);
}

.concept-slide .concept-watermark {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0.3;
}

.concept-slide.active .concept-watermark {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.concept-slide .concept-card-content {
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease;
  transform: translateY(12px);
  opacity: 0;
}

.concept-slide.active .concept-card-content {
  transform: translateY(0);
  opacity: 1;
}

/* Filigrane d'arrière-plan pastel - Équilibré : descendu et décalé à droite */
.concept-watermark {
  position: absolute;
  top: 52%; /* Descendu encore un peu */
  left: 31%; /* Décalé un peu à droite */
  transform: translate(-50%, -50%);
  font-family: var(--font-family-base);
  font-weight: 800;
  font-size: clamp(60px, 8.5vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.15em;
  color: #FEEEC0; /* Conforme Figma #FEEEC0 */
  text-align: center;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-watermark-svg {
  display: block;
  width: 700px; /* Échelle équilibrée et naturelle */
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* Watermark Frozen Yogurt : format portrait, on réduit la largeur */
.concept-slide[data-index="6"] .concept-watermark-svg {
  width: 360px;
}

/* Contenu textuel (Gauche) */
.concept-card-content {
  position: relative;
  z-index: 10; /* Priorité d'affichage au-dessus du filigrane */
  flex: 1 1 auto;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.concept-item-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 44px);
  line-height: 1.15;
  color: var(--color-dark);
}

.concept-badges-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  white-space: nowrap;
}

.concept-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: #FEE3DE; /* Conforme Figma #FEE3DE */
  color: var(--color-primary); /* #ED694D */
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.concept-item-desc {
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  opacity: 0.9;
}

/* Barre d'atouts (3 points clés : Service rapide, À emporter...) */
.concept-features-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 14px;
  background-color: #F8F9FA;
  border: 1px solid rgba(0, 18, 30, 0.06);
  border-radius: 16px;
  padding: 10px 14px;
  width: fit-content;
}

.concept-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.concept-feature img {
  display: block;
  flex-shrink: 0;
}

/* Colonne Visuel (Droite) */
.concept-card-visual {
  position: relative;
  z-index: 1; /* Le filigrane passe désormais derrière le contenu textuel et les tags */
  flex: 0 0 486px;
  max-width: 486px;
  height: 515px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.concept-dessert-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 18, 30, 0.12));
  transform: translateY(-35px); /* Monté pour dominer le filigrane comme sur Figma */
  transition: transform 0.5s ease;
}

.concept-dessert-img:hover {
  transform: translateY(-35px) scale(1.03);
}

/* Puces de pagination (Dots) - Positionnées sous l'illustration du dessert (conforme Figma) */
.concept-dots {
  position: absolute;
  right: calc(52px + 24px + 243px); /* Centré horizontalement sous la colonne visuelle (486px) */
  transform: translateX(50%);
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.concept-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.concept-dot:hover:not(.active) {
  background-color: #94A3B8;
}

.concept-dot.active {
  width: 38px;
  background-color: var(--color-primary);
}

/* --- Responsive Concept Section --- */
@media (max-width: 1100px) {
  .concept-card-visual {
    flex: 0 0 380px;
    max-width: 380px;
    height: 420px;
  }

  .concept-watermark {
    font-size: 80px;
    left: 31%;
    top: 52%;
  }

  .concept-watermark-svg {
    width: 580px;
    max-width: none;
  }

  .concept-dots {
    right: calc(52px + 24px + 190px);
    bottom: 20px;
  }
}

@media (max-width: 900px) {
  .concept-section {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .concept-carousel-wrap {
    flex-direction: column;
    gap: 0;
  }

  .concept-dots {
    position: static;
    transform: none;
    margin-top: 24px;
    right: auto;
    bottom: auto;
  }

  .concept-slides-track {
    width: 100%;
    min-height: auto;
  }

  .concept-slide {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    padding: 10px 0;
  }

  .concept-carousel-wrap {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .concept-slides-track {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: hidden;
  }

  .concept-slide {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .concept-card-content {
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .concept-badges-list {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .concept-features-bar {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .concept-card-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    height: 360px;
  }

  .concept-dessert-img {
    transform: translateY(0);
  }

  .concept-watermark {
    left: 50%;
    top: 50%;
  }

  .concept-nav-arrow {
    position: absolute;
    top: 25%;
    z-index: 20;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }

  .concept-prev {
    left: 8px;
  }

  .concept-next {
    right: 8px;
  }
}

@media (max-width: 640px) {
  .concept-section {
    padding: 110px 0 50px 0;
  }

  .concept-container {
    padding: 0 16px;
    gap: 36px;
  }

  .concept-title {
    font-size: 26px;
  }

  .concept-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .concept-watermark {
    font-size: 54px;
    letter-spacing: 0.1em;
  }

  .concept-watermark-svg {
    width: 320px;
    max-width: 90vw;
  }

  .concept-nav-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    top: 22%;
  }

  .concept-card-visual {
    height: 280px;
    max-width: 280px;
  }

  .concept-item-title {
    font-size: 28px;
  }

  .concept-item-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .concept-feature {
    font-size: 13px;
  }

  .concept-features-bar {
    gap: 12px;
    padding: 8px 12px;
  }
}

/* ==========================================================================
   PAGE: DESSERTS GLACES
   SECTION: CONCEPTS CLIENTS / PARTENAIRES (Conforme Figma #8534:2954)
   ========================================================================== */
.concept-partners-section {
  background-color: var(--color-white);
  padding: 96px 0 64px 0;
  position: relative;
  z-index: 5;
}

.concept-partners-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.concept-partners-header {
  max-width: 792px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.concept-partners-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 40px);
  line-height: 1.25;
  color: var(--color-dark);
}

.concept-partners-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  opacity: 0.85;
}

.concept-partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 586px;
}

.concept-partner-card {
  flex: 1 1 281px;
  max-width: 281px;
  height: 178px;
  background-color: #EDEDED;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 18, 30, 0.08);
}

.concept-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.concept-partner-logo img {
  max-height: 40px;
  width: auto;
  display: block;
}

.concept-partner-logo-mylfc img {
  max-height: 52px;
  mix-blend-mode: multiply;
}

.concept-partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.concept-partner-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(237, 105, 77, 0.3);
}

/* ==========================================================================
   PAGE: DESSERTS GLACES
   SECTION: CTA PROJET DESSERTS (Conforme Figma #8532:2716)
   ========================================================================== */
.cta-desserts-section {
  background-color: var(--color-white);
  padding: 32px 0 64px 0;
  position: relative;
  z-index: 5;
}

.cta-desserts-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-desserts-card {
  width: 100%;
  max-width: 792px;
  background-color: #FFEBD7;
  border-radius: 32px;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 36px rgba(0, 18, 30, 0.06);
}

.cta-desserts-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.25;
  color: var(--color-dark);
  max-width: 680px;
}

.cta-desserts-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  opacity: 0.85;
  max-width: 600px;
}

.cta-desserts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 18px rgba(237, 105, 77, 0.35);
  transition: all 0.25s ease;
}

.cta-desserts-btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 105, 77, 0.45);
}

.cta-desserts-btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.cta-desserts-btn:hover .btn-icon {
  transform: translateX(4px);
}

.cta-desserts-visual {
  width: 100%;
  max-width: 1200px;
  margin-top: -106px;
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 18, 30, 0.1);
}

.cta-desserts-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Variations CTA Projet Machines & Services (Figma #8590:3068 / #8590:5033) */
.cta-projet-title,
.cta-services-title {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}

.cta-projet-desc,
.cta-services-desc {
  font-size: 18px;
  line-height: 25px;
}

.cta-services-section {
  padding-top: 32px;
}

@media (max-width: 1100px) {
  .cta-desserts-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .concept-partners-grid {
    flex-direction: column;
    max-width: 320px;
  }

  .concept-partner-card {
    max-width: 100%;
    width: 100%;
  }

  .cta-desserts-section {
    padding: 24px 0 64px 0;
  }

  .cta-desserts-container {
    padding: 0 20px;
  }

  .cta-desserts-card {
    padding: 32px 20px;
    border-radius: 24px;
    gap: 18px;
  }

  .cta-desserts-title {
    font-size: 24px;
  }

  .cta-desserts-btn {
    width: auto;
    max-width: 320px;
    font-size: 15px;
    padding: 14px 24px;
    margin: 4px auto 0 auto;
    text-align: center;
  }

  .cta-desserts-visual {
    margin-top: -8px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   PAGE: MACHINES
   HERO SECTION (Conforme Figma #8625:6560 Frame MACHINES 3)
   ========================================================================== */
.hero-machines-section {
  background-color: var(--color-dark); /* #00121E */
  position: relative;
  width: 100%;
  padding-top: 150px; /* Espace pour le header transparent/absolu */
  padding-bottom: 0;
  overflow: visible;
  color: var(--color-white);
  z-index: 10;
}

.hero-machines-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Colonne Gauche : Textes (#8625:6563 template EL-2d42a00e) */
.hero-machines-content {
  flex: 1 1 520px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 30px;
}

.hero-machines-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-machines-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white);
  opacity: 0.92;
  margin: 0;
}

.hero-machines-action {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.hero-machines-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(237, 105, 77, 0.35);
  transition: all 0.25s ease;
}

.hero-machines-btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 105, 77, 0.45);
}

.hero-machines-btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.hero-machines-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Colonne Droite : Visuel Machine (#8625:6700 template EL-fa652d55) */
.hero-machines-visual {
  flex: 0 0 608px;
  width: 608px;
  max-width: 608px;
  height: 613px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 15;
  margin-bottom: -110px; /* Chevauchement fluide entre le hero et la section suivante */
}

.hero-machines-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-machines-visual:hover .hero-machines-img {
  transform: scale(1.025);
}

/* --- Responsive Hero Machines --- */
@media (max-width: 1200px) {
  .hero-machines-container {
    padding: 0 60px;
    gap: 40px;
  }

  .hero-machines-visual {
    flex: 0 0 520px;
    width: 520px;
    max-width: 520px;
    height: 524px;
    margin-bottom: -90px;
  }

  .hero-machines-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-machines-desc {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 992px) {
  .hero-machines-section {
    padding-top: 160px;
    padding-bottom: 0;
  }

  .hero-machines-container {
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
    gap: 24px;
  }

  .hero-machines-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 640px;
    align-items: center;
    gap: 24px;
    padding-bottom: 0;
  }

  .hero-machines-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin-bottom: -60px;
  }

  .hero-machines-img {
    width: 100%;
    height: auto;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .hero-machines-section {
    padding-top: 180px;
    padding-bottom: 0;
  }

  .hero-machines-container {
    padding: 0 20px;
    gap: 16px;
  }

  .hero-machines-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding-bottom: 0;
  }

  .hero-machines-title {
    font-size: 28px;
    line-height: 35px;
    margin: 0;
  }

  .hero-machines-desc {
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    max-width: 360px;
  }

  .hero-machines-action {
    justify-content: center;
    margin-top: 4px;
  }

  .hero-machines-btn {
    width: auto;
    max-width: 320px;
    padding: 14px 28px;
  }

  .hero-machines-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 14px auto -40px auto;
  }

  .hero-machines-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
  }
}

@media (max-width: 420px) {
  .hero-machines-section {
    padding-top: 175px;
  }

  .hero-machines-container {
    padding: 0 16px;
    gap: 12px;
  }

  .hero-machines-content {
    flex: 0 0 auto;
    width: 100%;
    gap: 12px;
  }

  .hero-machines-title {
    font-size: 26px;
    line-height: 33px;
  }

  .hero-machines-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-machines-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 290px;
    height: auto;
    margin: 10px auto -35px auto;
  }

  .hero-machines-img {
    width: 100%;
    height: auto;
    max-height: 290px;
  }
}

/* ==========================================================================
   PAGE: MACHINES
   SECTION: UNE MÊME TECHNOLOGIE, PLUSIEURS POSSIBILITÉS (Conforme Figma #8625:6560)
   ========================================================================== */
.technologie-possibilites-section {
  background-color: var(--color-white);
  padding: 190px 0 100px 0; /* Espace pour le visuel hero qui déborde */
  position: relative;
  z-index: 5;
}

.technologie-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.technologie-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.technologie-header-left {
  flex: 1 1 560px;
  max-width: 588px;
}

.technologie-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 40px);
  line-height: 1.25;
  color: var(--color-dark);
  margin: 0;
}

.technologie-header-right {
  flex: 1 1 540px;
  max-width: 588px;
}

.technologie-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark);
  opacity: 0.85;
  margin: 0;
}

.technologie-visual-wrap {
  width: 100%;
  max-width: 1200px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 18, 30, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.technologie-visual-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 18, 30, 0.12);
}

.technologie-range-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   PAGE: MACHINES
   SECTION: DES SOLUTIONS ADAPTÉES À CHAQUE ACTIVITÉ (Conforme Figma #8518:4105)
   ========================================================================== */
.solutions-activite-section {
  background-color: var(--color-white);
  padding: 40px 0 110px 0;
  position: relative;
  z-index: 5;
}

.solutions-activite-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* En-tête de section centré (#8518:4106) */
.solutions-activite-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto 52px auto;
}

.solutions-activite-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 40px);
  line-height: 48px;
  color: var(--color-dark, #00121E);
  margin: 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.solutions-activite-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-dark, #00121E);
  opacity: 0.85;
  margin: 0;
  text-align: center;
  max-width: 586px;
}

/* Grille & Disposition des cartes (#8590:3067) */
.solutions-cards-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.solutions-cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.solutions-cards-row-4 {
  flex-wrap: nowrap;
}

.solutions-cards-row-3 {
  flex-wrap: nowrap;
}

/* Carte Individuelle (Templates EL-2baa8234 / EL-03a6e931) */
.solution-dessert-card {
  flex: 0 0 282px;
  width: 282px;
  background-color: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 14px;
  padding: 22px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  box-shadow: 0 2px 10px rgba(0, 18, 30, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.solution-dessert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 18, 30, 0.09);
  border-color: #CBD5E1;
}

/* En-tête de carte : Icône 56x56 + Nom Dessert (Kalam 26px) */
.solution-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.solution-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-card-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.solution-card-title {
  font-family: var(--font-family-accent, 'Kalam', cursive);
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  color: var(--color-dark, #00121E);
  margin: 0;
  text-align: center;
}

/* Ligne de séparation (#8518:4115 EL-8234ab7d) */
.solution-card-divider {
  width: 100%;
  height: 1px;
  background-color: #E2E8F0;
  border: none;
  margin: 0;
}

/* Concepts & Activités (#8518:4116 EL-e3f910f3) */
.solution-card-concepts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.solution-concept-item {
  font-family: var(--font-family-base, 'Poppins', sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--color-dark, #00121E);
  margin: 0;
}

/* Bandeau Machines Giotto (#8518:4119 EL-992a99fd) */
.solution-card-models {
  background-color: #FCE3DE;
  border-radius: 8px;
  padding: 16px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.solution-machine-icon {
  width: 19px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.solution-giotto-label {
  font-family: var(--font-family-base, 'Poppins', sans-serif);
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-dark, #00121E);
}

.solution-models-numbers {
  font-family: var(--font-family-base, 'Poppins', sans-serif);
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: var(--color-dark, #00121E);
}

/* Note informative (#8518:4230) */
.solutions-activite-note {
  font-family: var(--font-family-base, 'Poppins', sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #737373;
  text-align: center;
  max-width: 680px;
  margin: 44px auto 0 auto;
}

/* Bouton d'action (#8518:4231) */
.solutions-activite-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.solutions-activite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-primary, #ED694D);
  color: #FFFFFF !important;
  font-family: var(--font-family-base, 'Poppins', sans-serif);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(237, 105, 77, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.solutions-activite-btn:hover {
  background-color: #E2583B;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 105, 77, 0.35);
  color: #FFFFFF !important;
}

.solutions-activite-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.solutions-activite-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- Responsive Machines Sections --- */
@media (max-width: 1280px) {
  .solutions-activite-container {
    padding: 0 40px;
  }

  .solutions-cards-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .solution-dessert-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

@media (max-width: 992px) {
  .technologie-possibilites-section {
    padding: 140px 0 60px 0;
  }

  .technologie-container {
    padding: 0 40px;
    gap: 36px;
  }

  .technologie-header {
    flex-direction: column;
    gap: 20px;
  }

  .technologie-header-left,
  .technologie-header-right {
    max-width: 100%;
    flex: 0 0 auto;
  }

  .solutions-activite-section {
    padding: 30px 0 80px 0;
  }

  .solutions-activite-container {
    padding: 0 32px;
  }

  .solutions-activite-header {
    margin-bottom: 36px;
  }

  .solution-dessert-card {
    flex: 0 0 calc(50% - 16px);
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .technologie-possibilites-section {
    padding: 55px 0 36px 0;
  }

  .technologie-container {
    padding: 0 20px;
    gap: 24px;
  }

  .technologie-header {
    text-align: center;
    align-items: center;
    gap: 14px;
  }

  .technologie-title {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  .technologie-desc {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
  }

  .technologie-visual-wrap {
    border-radius: 20px;
  }

  .solutions-activite-section {
    padding: 24px 0 56px 0;
  }

  .solutions-activite-container {
    padding: 0 20px;
  }

  .solutions-activite-header {
    margin-bottom: 28px;
    gap: 12px;
  }

  .solutions-activite-title {
    font-size: 28px;
    line-height: 36px;
  }

  .solutions-activite-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .solutions-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .solution-dessert-card {
    width: 100%;
    max-width: 340px;
    flex: 0 0 auto;
    padding: 18px 16px 14px 16px;
    gap: 16px;
  }

  .solution-card-top {
    gap: 8px;
  }

  .solution-card-icon {
    width: 48px;
    height: 48px;
  }

  .solution-card-icon img {
    width: 48px;
    height: 48px;
  }

  .solution-card-title {
    font-size: 24px;
    line-height: 26px;
  }

  .solution-concept-item {
    font-size: 15px;
    line-height: 22px;
  }

  .solution-card-models {
    padding: 12px 8px;
  }

  .solution-giotto-label,
  .solution-models-numbers {
    font-size: 15px;
    line-height: 22px;
  }

  .solutions-activite-note {
    margin: 28px auto 0 auto;
    font-size: 13px;
    line-height: 19px;
    padding: 0 10px;
  }

  .solutions-activite-action {
    margin-top: 20px;
  }

  .solutions-activite-btn {
    width: auto;
    max-width: 320px;
    font-size: 15px;
    padding: 14px 24px;
    text-align: center;
    margin: 0 auto;
    display: inline-flex;
  }
}

/* ==========================================================================
   PAGE: MACHINES
   SECTION: POURQUOI CHOISIR UNE MACHINE GIOTTO ? (Conforme Figma #8508:2143 / #8579:3032)
   ========================================================================== */
.pourquoi-giotto-section {
  background-color: var(--color-dark, #00121E);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pourquoi-giotto-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

/* En-tête de section (2 colonnes) */
.pourquoi-giotto-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.pourquoi-giotto-header-left {
  flex: 1 1 540px;
  max-width: 588px;
}

.pourquoi-giotto-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 40px);
  line-height: 48px;
  color: var(--color-white, #FFFFFF);
  margin: 0;
  letter-spacing: -0.01em;
}

.pourquoi-giotto-header-right {
  flex: 1 1 540px;
  max-width: 588px;
}

.pourquoi-giotto-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-white, #FFFFFF);
  opacity: 0.85;
  margin: 0;
}

/* Disposition 2 colonnes : Visuel + Cartes */
.pourquoi-giotto-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

/* Colonne Gauche : Visuel */
.pourquoi-giotto-visual-col {
  flex: 1 1 50%;
  max-width: 587px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  background: transparent;
  box-shadow: none;
}

.pourquoi-giotto-img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pourquoi-giotto-visual-col:hover .pourquoi-giotto-img {
  transform: scale(1.02);
}

/* Colonne Droite : Grille 2 colonnes de 6 cartes */
.pourquoi-giotto-cards-col {
  flex: 1 1 50%;
  max-width: 589px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 36px;
  column-gap: 28px;
  align-content: center;
}

/* Éléments Caractéristiques directement sur fond sombre */
.pourquoi-feature-card {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease;
}

.pourquoi-feature-card:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateY(-2px);
}

.pourquoi-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-secondary, #F1B710);
  margin-bottom: 2px;
}

.pourquoi-card-icon svg {
  width: 32px;
  height: 32px;
}

.pourquoi-card-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--color-secondary, #F1B710);
  margin: 0;
}

.pourquoi-card-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 22px;
  color: var(--color-white, #FFFFFF);
  opacity: 0.85;
  margin: 0;
}

/* --- Responsive Pourquoi Giotto --- */
@media (max-width: 1200px) {
  .pourquoi-giotto-container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .pourquoi-giotto-section {
    padding: 72px 0;
  }

  .pourquoi-giotto-container {
    padding: 0 32px;
  }

  .pourquoi-giotto-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .pourquoi-giotto-header-left,
  .pourquoi-giotto-header-right {
    max-width: 100%;
    flex: 0 0 auto;
  }

  .pourquoi-giotto-body {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .pourquoi-giotto-visual-col,
  .pourquoi-giotto-cards-col {
    max-width: 100%;
    width: 100%;
    flex: 0 0 auto;
  }

  .pourquoi-giotto-img {
    min-height: unset;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .pourquoi-giotto-section {
    padding: 48px 0;
  }

  .pourquoi-giotto-container {
    padding: 0 20px;
  }

  .pourquoi-giotto-header {
    gap: 12px;
    margin-bottom: 28px;
    text-align: center;
    align-items: center;
  }

  .pourquoi-giotto-title {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  .pourquoi-giotto-desc {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    max-width: 380px;
  }

  .pourquoi-giotto-body {
    gap: 32px;
  }

  .pourquoi-giotto-visual-col {
    justify-content: center;
    border-radius: 20px;
  }

  .pourquoi-giotto-img {
    min-height: unset;
    max-height: 340px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 16px;
  }

  .pourquoi-giotto-cards-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pourquoi-feature-card {
    padding: 0;
    gap: 8px;
  }

  .pourquoi-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .pourquoi-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .pourquoi-card-title {
    font-size: 18px;
    line-height: 24px;
  }

  .pourquoi-card-desc {
    font-size: 14px;
    line-height: 21px;
  }
}

/* ==========================================================================
   PAGE: MACHINES
   SECTION: UNE EXPERTISE RENFORCÉE PAR NOTRE PARTENARIAT AVEC GELMATIC (Conforme Figma #8518:3915)
   ========================================================================== */
.expertise-gelmatic-section {
  background-color: var(--color-white, #FFFFFF);
  padding: 100px 0 60px 0;
  position: relative;
  z-index: 5;
}

.expertise-gelmatic-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

/* Rangée 1 : Titre + Logo */
.expertise-gelmatic-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 22px;
}

.expertise-gelmatic-title-col {
  flex: 1 1 560px;
  max-width: 588px;
}

.expertise-gelmatic-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 40px);
  line-height: 48px;
  color: var(--color-dark, #00121E);
  margin: 0;
  letter-spacing: -0.01em;
}

.expertise-gelmatic-logo-col {
  flex: 1 1 500px;
  max-width: 502px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.expertise-gelmatic-logo {
  max-width: 290px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  margin-left: 48px;
  transform: translateY(-34px);
  display: block;
}

/* Rangée 2 : Descriptif + Points */
.expertise-gelmatic-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.expertise-gelmatic-desc-col {
  flex: 1 1 560px;
  max-width: 588px;
}

.expertise-gelmatic-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-dark, #00121E);
  opacity: 0.85;
  margin: 0;
}

.expertise-gelmatic-points-col {
  flex: 1 1 500px;
  max-width: 502px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: -18px;
}

/* Point avec icône flèche */
.expertise-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.expertise-point-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary, #ED694D);
  margin-top: 2px;
  transition: transform 0.25s ease;
}

.expertise-point-item:hover .expertise-point-icon {
  transform: translateX(4px);
}

.expertise-point-text {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark, #00121E);
  margin: 0;
}

/* --- Responsive Expertise Gelmatic --- */
@media (max-width: 1200px) {
  .expertise-gelmatic-container {
    padding: 0 40px;
  }

  .expertise-gelmatic-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .expertise-gelmatic-section {
    padding: 72px 0 80px 0;
  }

  .expertise-gelmatic-container {
    padding: 0 32px;
  }

  .expertise-gelmatic-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .expertise-gelmatic-title-col,
  .expertise-gelmatic-logo-col,
  .expertise-gelmatic-desc-col,
  .expertise-gelmatic-points-col {
    max-width: 100%;
    flex: 0 0 auto;
  }

  .expertise-gelmatic-content {
    flex-direction: column;
    gap: 32px;
  }

  .expertise-gelmatic-logo {
    margin-left: 0;
    transform: none;
  }

  .expertise-gelmatic-points-col {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .expertise-gelmatic-section {
    padding: 48px 0 52px 0;
  }

  .expertise-gelmatic-container {
    padding: 0 20px;
  }

  .expertise-gelmatic-top {
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .expertise-gelmatic-title {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  .expertise-gelmatic-logo-col {
    justify-content: center;
    width: 100%;
  }

  .expertise-gelmatic-logo {
    max-width: 220px;
    margin: 0 auto;
  }

  .expertise-gelmatic-content {
    gap: 24px;
  }

  .expertise-gelmatic-desc {
    font-size: 15px;
    line-height: 24px;
    text-align: left;
  }

  .expertise-gelmatic-points-col {
    gap: 14px;
  }

  .expertise-point-item {
    gap: 12px;
  }

  .expertise-point-text {
    font-size: 14.5px;
    line-height: 22px;
  }
}

/* ==========================================================================
   PAGE: SERVICES
   HERO SECTION (Conforme Figma Frame #8508:2421 / #8590:5106)
   ========================================================================== */
.hero-services-section,
.hero-apropos-section {
  background-color: var(--color-dark, #00121E);
  position: relative;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 0;
  overflow: visible;
  color: var(--color-white, #FFFFFF);
  z-index: 10;
}

.hero-services-container,
.hero-apropos-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Colonne Gauche : Textes (#8590:5110 / #8590:5168) */
.hero-services-content,
.hero-apropos-content {
  flex: 1 1 482px;
  max-width: 482px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 24px;
}

.hero-services-title,
.hero-apropos-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-white, #FFFFFF);
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-services-desc,
.hero-apropos-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white, #FFFFFF);
  margin: 0;
  opacity: 0.95;
}

/* Colonne Droite : Visuel (#8590:5114 / #8590:5171) */
.hero-services-visual,
.hero-apropos-visual {
  flex: 0 0 608px;
  width: 608px;
  max-width: 608px;
  height: 613px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 15;
  margin-bottom: -95px;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.hero-services-img,
.hero-apropos-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 46px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-placeholder-box {
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  border-radius: 46px;
}

.hero-services-visual:hover .hero-services-img,
.hero-apropos-visual:hover .hero-apropos-img {
  transform: scale(1.025);
}

/* --- Responsive Services & A Propos Hero --- */
@media (max-width: 1200px) {
  .hero-services-container,
  .hero-apropos-container {
    padding: 0 40px;
    gap: 32px;
  }

  .hero-services-content,
  .hero-apropos-content {
    flex: 1 1 420px;
    max-width: 420px;
  }

  .hero-services-visual,
  .hero-apropos-visual {
    flex: 0 0 480px;
    width: 480px;
    height: 484px;
    margin-bottom: -60px;
  }

  .hero-services-title,
  .hero-apropos-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-services-desc,
  .hero-apropos-desc {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 992px) {
  .hero-services-section,
  .hero-apropos-section {
    padding-top: 160px;
    padding-bottom: 50px;
  }

  .hero-services-container,
  .hero-apropos-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .hero-services-content,
  .hero-apropos-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 640px;
    align-items: center;
    gap: 24px;
  }

  .hero-services-visual,
  .hero-apropos-visual {
    flex: 0 0 auto;
    margin-bottom: 0;
    max-width: 480px;
    width: 100%;
    height: auto;
  }

  .hero-services-img,
  .hero-apropos-img {
    width: 100%;
    height: auto;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .hero-services-section,
  .hero-apropos-section {
    padding-top: 180px;
    padding-bottom: 40px;
  }

  .hero-services-container,
  .hero-apropos-container {
    padding: 0 20px;
    gap: 16px;
  }

  .hero-services-content,
  .hero-apropos-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }

  .hero-services-title,
  .hero-apropos-title {
    font-size: 28px;
    line-height: 35px;
  }

  .hero-services-desc,
  .hero-apropos-desc {
    font-size: 15px;
    line-height: 22px;
    max-width: 360px;
  }

  .hero-services-visual,
  .hero-apropos-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 14px auto 0 auto;
    border-radius: 24px;
  }

  .hero-services-img,
  .hero-apropos-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .hero-services-section,
  .hero-apropos-section {
    padding-top: 175px;
  }

  .hero-services-container,
  .hero-apropos-container {
    padding: 0 16px;
    gap: 12px;
  }

  .hero-services-title,
  .hero-apropos-title {
    font-size: 26px;
    line-height: 33px;
  }

  .hero-services-desc,
  .hero-apropos-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-services-visual,
  .hero-apropos-visual {
    max-width: 290px;
  }
}

/* ==========================================================================
   SERVICES - SECTION NOTRE ACCOMPAGNEMENT ÉTAPE PAR ÉTAPE (Figma #8508:3100)
   ========================================================================== */
.services-etapes-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 176px 0 100px;
}

.services-etapes-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
}

.services-etapes-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-etapes-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  color: var(--color-dark);
}

.services-etapes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 6vw, 126px);
}

.services-etapes-visual {
  flex: 0 0 588px;
  max-width: 588px;
  position: relative;
}

.services-etapes-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  box-shadow: 0 12px 32px rgba(0, 18, 30, 0.08);
}

.services-etapes-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-etape-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.services-etape-icon-wrap {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--color-dark, #00121E);
}

.services-etape-icon {
  width: 35px;
  height: 35px;
  stroke: var(--color-dark, #00121E); /* Icône noire / sombre conforme Figma */
  display: block;
}

.services-etape-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-etape-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-accent, #F1B710); /* Titre jaune conforme Figma */
  margin: 0;
}

.services-etape-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--color-dark);
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .services-etapes-section {
    padding: 130px 0 90px;
  }

  .services-etapes-container {
    padding: 0 60px;
  }

  .services-etapes-row {
    gap: 48px;
  }

  .services-etapes-visual {
    flex: 0 0 460px;
    max-width: 460px;
  }
}

@media (max-width: 992px) {
  .services-etapes-section {
    padding: 50px 0 80px;
  }

  .services-etapes-container {
    padding: 0 40px;
  }

  .services-etapes-row {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .services-etapes-visual {
    max-width: 588px;
    width: 100%;
    flex: none;
  }

  .services-etapes-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .services-etapes-section {
    padding: 40px 0 60px;
  }

  .services-etapes-container {
    padding: 0 20px;
  }

  .services-etapes-header {
    margin-bottom: 36px;
  }

  .services-etapes-title {
    font-size: 28px;
    line-height: 36px;
  }

  .services-etapes-visual {
    border-radius: 24px;
  }

  .services-etapes-img {
    border-radius: 24px;
  }

  .services-etape-item {
    gap: 12px;
  }

  .services-etape-icon-wrap {
    width: 28px;
    height: 28px;
  }

  .services-etape-icon {
    width: 28px;
    height: 28px;
  }

  .services-etape-title {
    font-size: 17px;
    line-height: 24px;
  }

  .services-etape-desc {
    font-size: 13.5px;
    line-height: 20px;
  }

  .services-etapes-list {
    gap: 20px;
  }
}

/* ==========================================================================
   SERVICES - SECTION UN SERVICE CLIENT DE PROXIMITÉ (Figma #8508:3192)
   ========================================================================== */
.services-proximite-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 80px 0 110px;
  overflow: hidden;
}

/* Forme décorative jaune (#8508:3284 / Vector 43) */
.services-proximite-shape {
  position: absolute;
  right: -50px;
  top: 375px;
  width: 340px;
  max-width: 28vw;
  pointer-events: none;
  z-index: 1;
}

.services-proximite-shape img,
.services-proximite-shape svg {
  width: 100%;
  height: auto;
  display: block;
}

.services-proximite-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 2;
}

/* En-tête 2 colonnes (#8508:3193) */
.services-proximite-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 64px;
}

.services-proximite-title-wrap {
  flex: 0 0 486px;
  max-width: 486px;
}

.services-proximite-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0;
}

.services-proximite-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-proximite-desc p {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-dark);
  margin: 0;
  opacity: 0.9;
}

/* Grille de 3 Cards (#8508:3197) */
.services-proximite-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.services-proximite-card {
  background-color: #FFF4E9; /* Figma fill_6c29acf1 */
  border: 1px solid #EDEDED; /* Figma fill_b857e869 */
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-proximite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 18, 30, 0.06);
}

.proximite-card-icon-wrap {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2px;
}

.proximite-card-icon {
  width: 46px;
  height: 46px;
  display: block;
}

.proximite-card-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--color-ice-blue, #1DAACF); /* Bleu cyan officiel #1DAACF */
  margin: 0;
}

.proximite-card-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--color-dark);
  margin: 0;
  opacity: 0.88;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-proximite-container {
    padding: 0 60px;
  }

  .services-proximite-title-wrap {
    flex: 0 0 400px;
    max-width: 400px;
  }

  .services-proximite-cards {
    gap: 20px;
  }

  .services-proximite-card {
    padding: 28px 22px;
  }

  .proximite-card-title {
    font-size: 22px;
    line-height: 26px;
  }

  .services-proximite-shape {
    top: 395px;
    width: 300px;
  }
}

@media (max-width: 992px) {
  .services-proximite-section {
    padding: 60px 0 80px;
  }

  .services-proximite-container {
    padding: 0 40px;
  }

  .services-proximite-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }

  .services-proximite-title-wrap {
    flex: none;
    max-width: 100%;
  }

  .services-proximite-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-proximite-card {
    padding: 28px 24px;
  }

  .services-proximite-shape {
    top: auto;
    bottom: 40px;
    right: -40px;
    width: 220px;
    max-width: 40vw;
    opacity: 0.6;
  }
}

@media (max-width: 640px) {
  .services-proximite-section {
    padding: 50px 0 60px;
  }

  .services-proximite-container {
    padding: 0 20px;
  }

  .services-proximite-header {
    margin-bottom: 36px;
  }

  .services-proximite-title {
    font-size: 28px;
    line-height: 34px;
  }

  .services-proximite-desc p {
    font-size: 16px;
    line-height: 23px;
  }

  .proximite-card-title {
    font-size: 20px;
    line-height: 25px;
  }

  .proximite-card-desc {
    font-size: 15px;
    line-height: 22px;
  }
}

/* ==========================================================================
   SERVICES - SECTION NOTRE ACCOMPAGNEMENT EN QUELQUES CHIFFRES (Figma #8508:3214)
   ========================================================================== */
.services-chiffres-section {
  position: relative;
  width: 100%;
  background-color: var(--color-dark, #00121E);
  padding: 96px 0;
}

.services-chiffres-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.services-chiffres-header {
  max-width: 600px;
}

.services-chiffres-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  color: var(--color-white, #FFFFFF);
  margin: 0;
}

/* Grille 4 colonnes de cartes chiffres (#8508:3216) */
.services-chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-stat-card {
  background-color: var(--color-ice-blue, #1DAACF);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.services-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.services-stat-num {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
  color: var(--color-dark, #00121E);
  display: block;
  letter-spacing: -0.02em;
}

.services-stat-label {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.35;
  color: var(--color-white, #FFFFFF);
  margin: 0;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-chiffres-container {
    padding: 0 60px;
    gap: 40px;
  }

  .services-chiffres-grid {
    gap: 16px;
  }

  .services-stat-card {
    padding: 24px 20px;
  }
}

@media (max-width: 992px) {
  .services-chiffres-section {
    padding: 70px 0;
  }

  .services-chiffres-container {
    padding: 0 40px;
    gap: 36px;
  }

  .services-chiffres-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .services-chiffres-section {
    padding: 50px 0;
  }

  .services-chiffres-container {
    padding: 0 20px;
    gap: 28px;
  }

  .services-chiffres-title {
    font-size: 28px;
    line-height: 34px;
  }

  .services-chiffres-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-stat-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .services-stat-num {
    font-size: 36px;
  }

  .services-stat-label {
    font-size: 16px;
    line-height: 22px;
  }
}

/* ==========================================================================
   SERVICES - SECTION TUTORIELS (Figma #8508:3246)
   ========================================================================== */
.services-tutos-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 100px 0 110px;
}

.services-tutos-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.services-tutos-header {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-tutos-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0;
}

.services-tutos-desc {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-dark);
  margin: 0;
  opacity: 0.9;
}

/* Grille 3 cartes vidéo (#8508:3250) */
.services-tutos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.services-tuto-card {
  position: relative;
  width: 100%;
  aspect-ratio: 384 / 258;
  border-radius: 24px;
  overflow: hidden;
  background-color: #D9D9D9; /* Figma fill_fef61db7 */
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.services-tuto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 18, 30, 0.08);
}

.services-tutos-action {
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-tutos-container {
    padding: 0 60px;
    gap: 40px;
  }

  .services-tutos-grid {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .services-tutos-section {
    padding: 70px 0 80px;
  }

  .services-tutos-container {
    padding: 0 40px;
    gap: 36px;
  }

  .services-tutos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .services-tutos-section {
    padding: 50px 0 60px;
  }

  .services-tutos-container {
    padding: 0 20px;
    gap: 28px;
  }

  .services-tutos-header {
    gap: 12px;
  }

  .services-tutos-title {
    font-size: 28px;
    line-height: 34px;
  }

  .services-tutos-desc {
    font-size: 16px;
    line-height: 23px;
  }

  .services-tutos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-tuto-card {
    border-radius: 20px;
  }
}

/* ==========================================================================
   PAGE A PROPOS - SECTION EXPERTISE & MARQUES (Figma #8532:2249)
   ========================================================================== */
.apropos-expertise-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 176px 0 100px;
}

.apropos-expertise-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.apropos-expertise-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}

.apropos-expertise-intro {
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.apropos-expertise-title {
  font-family: var(--font-family-base);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
  margin: 0;
}

.apropos-expertise-desc {
  font-family: var(--font-family-base);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark);
  opacity: 0.85;
  margin: 0;
}

.apropos-expertise-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.apropos-expertise-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Cartes Marques FROZ'N CO & DYDDA (#8513:3298) */
.apropos-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.apropos-brand-card {
  background-color: var(--color-dark);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 18, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apropos-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 18, 30, 0.2);
}

.apropos-brand-logo-area {
  height: 148px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.apropos-brand-logo-froznco {
  width: 123px;
  height: 148px;
  object-fit: contain;
  display: block;
}

.apropos-brand-card--dydda .apropos-brand-logo-area {
  height: 70px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.apropos-brand-logo-dydda {
  height: 44px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

.apropos-brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  justify-content: flex-start;
}

.apropos-brand-subtitle {
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
}

.apropos-brand-text {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.9;
  margin: 0;
  max-width: 440px;
}

.apropos-brand-action {
  margin-top: auto;
  padding-top: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-dydda {
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-dydda:hover {
  background-color: var(--color-primary-dark, #d8573d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 105, 77, 0.35);
}

/* --- Responsive A Propos Expertise --- */
@media (max-width: 1200px) {
  .apropos-expertise-container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .apropos-expertise-section {
    padding: 130px 0 80px;
  }

  .apropos-expertise-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .apropos-expertise-intro {
    max-width: 100%;
    align-items: center;
  }

  .apropos-expertise-logo-wrap {
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .apropos-expertise-section {
    padding: 90px 0 60px;
  }

  .apropos-expertise-container {
    padding: 0 20px;
    gap: 32px;
  }

  .apropos-brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .apropos-brand-card {
    padding: 36px 20px;
  }

  .apropos-brand-logo-area {
    height: 130px;
    margin-bottom: 16px;
  }

  .apropos-brand-logo-froznco {
    height: 130px;
    width: auto;
  }

  .apropos-brand-card--dydda .apropos-brand-logo-area {
    height: 60px;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .apropos-brand-logo-dydda {
    height: 38px;
  }
}

/* ==========================================================================
   PAGE A PROPOS - BANDEAU ENGAGEMENT & EXPERTISE (Figma #8532:2250)
   ========================================================================== */
.apropos-engagement-section {
  position: relative;
  z-index: 6;
  width: 100%;
  background-color: var(--color-dark);
  padding: 96px 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.apropos-engagement-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
}

.apropos-engagement-text {
  font-family: var(--font-family-base);
  font-size: clamp(20px, 2.25vw, 32px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-white);
  max-width: 1034px;
  margin: 0;
  text-align: center;
}

.apropos-engagement-shape-left {
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 5;
  pointer-events: none;
}

.apropos-engagement-shape-left img {
  width: 170px;
  height: auto;
  display: block;
}

.apropos-engagement-shape-right {
  position: absolute;
  bottom: -150px;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

.apropos-engagement-shape-right img {
  width: 286px;
  height: auto;
  display: block;
}

/* Responsive Engagement */
@media (max-width: 1200px) {
  .apropos-engagement-container {
    padding: 0 60px;
  }

  .apropos-engagement-shape-left {
    top: -50px;
  }

  .apropos-engagement-shape-left img {
    width: 140px;
  }

  .apropos-engagement-shape-right {
    bottom: -110px;
  }

  .apropos-engagement-shape-right img {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .apropos-engagement-section {
    padding: 70px 0;
  }

  .apropos-engagement-container {
    padding: 0 24px;
  }

  .apropos-engagement-text {
    font-size: 19px;
    line-height: 1.5;
  }

  .apropos-engagement-shape-left {
    top: -35px;
  }

  .apropos-engagement-shape-left img {
    width: 100px;
  }

  .apropos-engagement-shape-right {
    bottom: -75px;
  }

  .apropos-engagement-shape-right img {
    width: 150px;
  }
}

/* Section CTA À Propos (#8513:3522 / #8590:5213) */
.cta-apropos-section {
  padding-top: 96px;
}

@media (max-width: 992px) {
  .cta-apropos-section {
    padding-top: 64px;
  }
}

/* ==========================================================================
   PAGE ACTUALITÉS - HERO (Conforme Figma #8534:6540 / #8534:6541)
   ========================================================================== */
.hero-actualites-section {
  position: relative;
  width: 100%;
  background-color: var(--color-dark);
  padding: 170px 0 80px 0;
  text-align: center;
  overflow: hidden;
}

.hero-actualites-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

.hero-actualites-content {
  max-width: 792px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-actualites-title {
  font-family: var(--font-family-base);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-actualites-desc {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.9;
  margin: 0;
  max-width: 792px;
}

@media (max-width: 992px) {
  .hero-actualites-section {
    padding: 140px 0 64px 0;
  }

  .hero-actualites-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .hero-actualites-section {
    padding: 120px 0 50px 0;
  }

  .hero-actualites-container {
    padding: 0 20px;
  }

  .hero-actualites-content {
    gap: 20px;
  }

  .hero-actualites-title {
    font-size: 30px;
  }

  .hero-actualites-desc {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ==========================================================================
   PAGE ACTUALITÉS - SALONS (Conforme Figma #8534:6549 / #8579:3045)
   ========================================================================== */
.salons-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 112px 0 96px 0;
}

.salons-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

.salons-title {
  font-family: var(--font-family-base);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  margin: 0 0 48px 0;
  letter-spacing: -0.01em;
}

.salons-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: stretch;
}

.salons-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 18, 30, 0.08);
  min-height: 480px;
  background-color: #f4f6f8;
}

.salons-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 46px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: transform 0.5s ease;
}

.salons-image-wrap:hover .salons-image {
  transform: scale(1.02);
}

.salons-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.salon-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease;
}

.salon-item:hover {
  transform: translateX(4px);
}

.salon-name {
  font-family: var(--font-family-base);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  color: #F1B710;
  margin: 0;
  letter-spacing: -0.01em;
}

.salon-city {
  font-weight: 400;
  color: #F1B710;
}

.salon-date {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
  margin: 0;
}

@media (max-width: 1100px) {
  .salons-container {
    padding: 0 60px;
  }

  .salons-layout {
    gap: 32px;
  }
}

@media (max-width: 992px) {
  .salons-section {
    padding: 80px 0;
  }

  .salons-container {
    padding: 0 40px;
  }

  .salons-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .salons-image-wrap {
    min-height: 380px;
    max-height: 480px;
    border-radius: 36px;
  }

  .salons-image {
    border-radius: 36px;
  }

  .salons-list {
    gap: 30px;
  }
}

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

  .salons-container {
    padding: 0 20px;
  }

  .salons-title {
    margin-bottom: 32px;
    font-size: 26px;
  }

  .salons-image-wrap {
    min-height: 260px;
    border-radius: 24px;
  }

  .salons-image {
    border-radius: 24px;
  }

  .salons-list {
    gap: 24px;
  }

  .salon-name {
    font-size: 19px;
  }

  .salon-date {
    font-size: 16px;
  }
}

/* ==========================================================================
   PAGE ACTUALITÉS - EN CE MOMENT (Conforme Figma #8547:6232 / #8579:3046)
   ========================================================================== */
.en-ce-moment-section {
  position: relative;
  width: 100%;
  background-color: var(--color-dark); /* #00121E */
  padding: 96px 0;
  overflow: hidden;
}

.en-ce-moment-shape {
  position: absolute;
  left: 0;
  top: 60px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.en-ce-moment-shape img {
  display: block;
  width: auto;
  max-height: 480px;
}

.en-ce-moment-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 2;
}

.en-ce-moment-title {
  font-family: var(--font-family-base);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: -0.01em;
}

.en-ce-moment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.en-ce-moment-media {
  position: relative;
  width: 100%;
  height: 446px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background-color: #D9D9D9;
}

.en-ce-moment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.en-ce-moment-card:hover .en-ce-moment-img {
  transform: scale(1.03);
}

.en-ce-moment-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.en-ce-moment-badge-wrap {
  display: flex;
}

.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-ice-blue); /* #1DAACF */
  border-radius: 999px;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ice-blue);
  line-height: 1.2;
}

.article-badge .badge-icon {
  display: block;
  flex-shrink: 0;
}

.en-ce-moment-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.en-ce-moment-article-title {
  font-family: var(--font-family-base);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.01em;
}

.en-ce-moment-article-desc {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.en-ce-moment-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary); /* #ED694D */
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  margin-top: 8px;
}

.en-ce-moment-link .link-arrow-icon {
  transition: transform 0.25s ease;
}

.en-ce-moment-link:hover {
  color: var(--color-primary-hover);
}

.en-ce-moment-link:hover .link-arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .en-ce-moment-container {
    padding: 0 60px;
  }

  .en-ce-moment-media {
    height: 380px;
  }
}

@media (max-width: 992px) {
  .en-ce-moment-section {
    padding: 72px 0;
  }

  .en-ce-moment-container {
    padding: 0 40px;
  }

  .en-ce-moment-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .en-ce-moment-media {
    height: 340px;
  }

  .en-ce-moment-shape {
    opacity: 0.6;
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .en-ce-moment-section {
    padding: 56px 0;
  }

  .en-ce-moment-container {
    padding: 0 20px;
  }

  .en-ce-moment-title {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .en-ce-moment-media {
    height: 240px;
    border-radius: 18px;
  }

  .en-ce-moment-img {
    border-radius: 18px;
  }

  .en-ce-moment-article-title {
    font-size: 20px;
  }

  .en-ce-moment-article-desc {
    font-size: 15px;
  }
}

/* ==========================================================================
   PAGE ACTUALITÉS - TOUTES NOS ACTUALITÉS (Conforme Figma #8534:6911)
   ========================================================================== */
.actualites-grid-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 96px 0 112px 0;
}

.actualites-grid-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

.actualites-grid-title {
  font-family: var(--font-family-base);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 36px 0;
  letter-spacing: -0.01em;
}

.actualites-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  background-color: #FFEBE1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.filter-chip * {
  pointer-events: none;
}

.filter-chip .chip-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* Couleurs des icônes des tags (Salon=rouge, Inspiration=rose, Conseils=jaune, Réalisations=bleu, Nouveautés=vert) */
.filter-chip[data-filter="salons"] .chip-icon {
  color: #ED694D; /* Rouge */
}

.filter-chip[data-filter="inspirations"] .chip-icon {
  color: #F63FD7; /* Rose */
}

.filter-chip[data-filter="conseils"] .chip-icon {
  color: #F1B710; /* Jaune */
}

.filter-chip[data-filter="realisations"] .chip-icon {
  color: #1DAACF; /* Bleu */
}

.filter-chip[data-filter="nouveautes"] .chip-icon {
  color: #23A997; /* Vert */
}

.filter-chip:hover {
  background-color: #fcd2c2;
  transform: translateY(-1px);
}

.filter-chip:hover .chip-icon {
  transform: scale(1.1);
}

/* État actif des tags (Figma State=Actif) */
.filter-chip.active {
  background-color: var(--color-primary); /* #ED694D */
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.filter-chip.active .chip-icon {
  color: var(--color-white);
}

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-bottom: 56px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-card-thumb {
  width: 100%;
  height: 221px;
  background-color: #D9D9D9;
  border-radius: 24px;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.article-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card:hover .article-card-thumb {
  opacity: 0.92;
}

.article-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.article-card-badge-wrap {
  display: flex;
}

/* Badges Articles : Salon = Rouge, Inspiration = Rose, Conseils = Jaune, Réalisations = Bleu, Nouveautés = Vert */
.badge-salon {
  background-color: #FFFFFF;
  border: 1px solid #ED694D;
  color: #ED694D;
}
.badge-salon .badge-icon {
  color: #ED694D;
}

.badge-inspiration {
  background-color: #FFFFFF;
  border: 1px solid #F63FD7;
  color: #E035C2;
}
.badge-inspiration .badge-icon {
  color: #F63FD7;
}

.badge-conseil {
  background-color: #FFFFFF;
  border: 1px solid #F1B710;
  color: #C68E00;
}
.badge-conseil .badge-icon {
  color: #F1B710;
}

.badge-realisation {
  background-color: #FFFFFF;
  border: 1px solid #1DAACF;
  color: #1DAACF;
}
.badge-realisation .badge-icon {
  color: #1DAACF;
}

.badge-nouveaute {
  background-color: #FFFFFF;
  border: 1px solid #23A997;
  color: #23A997;
}
.badge-nouveaute .badge-icon {
  color: #23A997;
}

.article-card-title {
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0;
  transition: color 0.25s ease;
}

.article-card:hover .article-card-title {
  color: var(--color-primary);
}

.article-card-desc {
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(0, 18, 30, 0.75);
  margin: 0;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.article-card-link .link-arrow-icon {
  transition: transform 0.25s ease;
}

.article-card-link:hover .link-arrow-icon {
  transform: translateX(4px);
}

.actualites-action-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.btn-actualites {
  padding: 16px 38px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .actualites-grid-container {
    padding: 0 40px;
  }

  .actualites-grid {
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .actualites-grid-section {
    padding: 72px 0 88px 0;
  }

  .actualites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .actualites-filters {
    gap: 12px;
    margin-bottom: 40px;
  }

  .filter-chip {
    padding: 8px 18px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .actualites-grid-section {
    padding: 56px 0 72px 0;
  }

  .actualites-grid-container {
    padding: 0 20px;
  }

  .actualites-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .actualites-grid-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .article-card-thumb {
    height: 200px;
    border-radius: 18px;
  }
}

/* ==========================================================================
   PAGE CONTACT (A PROPOS #8561:7282) - HERO SECTION (Conforme Figma #8561:7283)
   ========================================================================== */
.hero-contact-section {
  position: relative;
  width: 100%;
  background-color: var(--color-dark);
  padding: 170px 0 170px 0;
  overflow: visible;
  z-index: 2;
}

.hero-contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.hero-contact-content {
  flex: 0 0 482px;
  max-width: 482px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 36px;
}

.hero-contact-title {
  font-family: var(--font-family-base);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.16;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-contact-title .highlight-yellow {
  color: var(--color-yellow);
}

.hero-contact-desc {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Floating Card Form (#8561:7479) - Chevauchement entre le Hero et la section suivante */
.hero-contact-card-wrap {
  flex: 1;
  max-width: 613px;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: 36px;
  margin-bottom: -220px;
}

.contact-form-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.2;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-family-base);
  font-size: 15px;
  color: var(--color-dark);
  background-color: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(237, 105, 77, 0.18);
}

.form-textarea {
  min-height: 129px;
  resize: vertical;
  line-height: 1.5;
}

.form-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-contact-submit svg {
  transition: transform 0.25s ease;
}

.btn-contact-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-primary-glow);
}

.btn-contact-submit:hover svg {
  transform: translateX(4px);
}

/* Responsive Contact Hero */
@media (max-width: 1100px) {
  .hero-contact-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 40px;
  }

  .hero-contact-content {
    flex: none;
    max-width: 100%;
    text-align: center;
    padding-top: 0;
    align-items: center;
  }

  .hero-contact-card-wrap {
    max-width: 613px;
    margin-top: 0;
    margin-bottom: -160px;
  }
}

@media (max-width: 768px) {
  .hero-contact-section {
    padding: 120px 0 90px 0;
  }

  .hero-contact-container {
    padding: 0 20px;
  }

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

  .hero-contact-desc {
    font-size: 16px;
  }

  .hero-contact-card-wrap {
    margin-bottom: -100px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn-contact-submit {
    width: 100%;
  }
}

/* ==========================================================================
   PAGE CONTACT - SECTION NOUS CONTACTER (Conforme Figma #8561:7290 / #8561:7291)
   ========================================================================== */
.contact-info-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 160px 0 100px 0;
  z-index: 1;
}

.contact-info-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.contact-info-text {
  flex: 0 0 588px;
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-title {
  font-family: var(--font-family-base);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary); /* #ED694D */
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-info-desc {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

.contact-info-details {
  flex: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}

.contact-detail-icon-img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.25s ease;
}

.contact-detail-row:hover .contact-detail-icon-img {
  transform: scale(1.08);
}

.contact-detail-content {
  font-family: var(--font-family-base);
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-dark);
}

.contact-detail-content strong {
  font-weight: 700;
  color: var(--color-dark);
}

.contact-detail-content .contact-link {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-content .contact-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .contact-info-container {
    padding: 0 40px;
    gap: 48px;
  }
}

@media (max-width: 992px) {
  .contact-info-section {
    padding: 130px 0 80px 0;
  }

  .contact-info-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .contact-info-text {
    flex: none;
    max-width: 100%;
  }

  .contact-info-details {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 100px 0 60px 0;
  }

  .contact-info-container {
    padding: 0 20px;
    gap: 28px;
  }

  .contact-info-title {
    font-size: 28px;
  }

  .contact-info-desc {
    font-size: 16px;
  }

  .contact-detail-row {
    align-items: flex-start;
  }

  .contact-detail-icon-img {
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }

  .contact-detail-content {
    font-size: 15px;
  }
}

/* ==========================================================================
   PAGE CONTACT - SECTION UNE QUESTION ? UN PROJET ? (Conforme Figma #8561:7577)
   ========================================================================== */
.contact-cards-section {
  position: relative;
  width: 100%;
  background-color: var(--color-dark); /* #00121E */
  padding: 100px 0 120px 0;
  overflow: hidden;
}

/* Forme jaune d'arrière-plan (#8561:7578 / Vector 43.svg) */
.contact-cards-shape {
  position: absolute;
  right: 0;
  top: 150px;
  width: 310px;
  max-width: 30vw;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.contact-cards-shape img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-cards-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.contact-cards-title {
  font-family: var(--font-family-base);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-card-item {
  background-color: #FFF4E9;
  border: 1px solid #EDEDED;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.contact-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  color: var(--color-ice-blue, #1DAACF);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.contact-card-title {
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-ice-blue, #1DAACF);
  margin: 0;
}

.contact-card-desc {
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-dark);
  margin: 0;
}

.btn-contact-card {
  width: 100%;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  background-color: var(--color-primary); /* #ED694D */
  color: var(--color-white);
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-contact-card:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

@media (max-width: 1100px) {
  .contact-cards-container {
    padding: 0 40px;
    gap: 40px;
  }

  .contact-cards-grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .contact-cards-section {
    padding: 72px 0 88px 0;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-cards-shape {
    width: 235px;
    right: 0;
    top: 95px;
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  .contact-cards-section {
    padding: 56px 0 72px 0;
  }

  .contact-cards-container {
    padding: 0 20px;
    gap: 32px;
  }

  .contact-cards-title {
    font-size: 26px;
  }

  .contact-card-item {
    padding: 24px 20px;
  }

  .contact-cards-shape {
    width: 165px;
    right: 0;
    top: 70px;
    opacity: 0.75;
  }
}

/* ==========================================================================
   PAGE CONTACT - SECTION GOOGLE MAPS (Conforme Figma #8561:7335)
   ========================================================================== */
.contact-map-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 80px 0 96px 0;
}

.contact-map-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}

.contact-map-wrapper {
  width: 100%;
  height: 548px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #EDEDED;
  background-color: #FFF4E9;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1100px) {
  .contact-map-container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .contact-map-section {
    padding: 60px 0 72px 0;
  }

  .contact-map-wrapper {
    height: 440px;
    border-radius: 24px;
  }
}

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

  .contact-map-container {
    padding: 0 20px;
  }

  .contact-map-wrapper {
    height: 360px;
    border-radius: 18px;
  }
}


/* ==========================================================================
   Blocks communs (common.title / common.text / common.image / common.form)
   Requis par tous les thèmes Sites — voir docs/theme.md §3
   ========================================================================== */

.block-title {
  padding: 48px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.block-title-heading {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--color-dark);
  margin: 0 0 12px;
}

.block-title-subtitle {
  font-size: 1.05rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin: 0;
}

.block-title[data-align="center"] {
  text-align: center;
}

.block-title[data-align="right"] {
  text-align: right;
}

.block-text {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  line-height: 1.7;
  color: var(--color-dark);
}

.block-text[data-align="center"] {
  text-align: center;
}

.block-text[data-align="right"] {
  text-align: right;
}

.block-image {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
}

.block-image-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.block-image-caption {
  font-size: 0.85rem;
  color: var(--color-dark);
  opacity: 0.6;
  margin-top: 8px;
  text-align: center;
}

.block-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
}

.block-form-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 20px;
  color: var(--color-dark);
}

.block-form-field {
  margin-bottom: 16px;
}

.block-form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.block-form-input,
.block-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 18, 30, 0.15);
  border-radius: 10px;
  font-family: var(--font-family-base);
  font-size: 1rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: var(--transition-default);
}

.block-form-input:focus,
.block-form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.block-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.block-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.block-form-submit {
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-default);
}

.block-form-submit:hover {
  background: var(--color-primary-hover);
}

.form-message-success,
.form-message-error {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.form-message-success {
  background: rgba(29, 170, 207, 0.12);
  color: var(--color-ice-blue);
  border: 1px solid rgba(29, 170, 207, 0.3);
}

.form-message-error {
  background: rgba(237, 105, 77, 0.12);
  color: var(--color-primary);
  border: 1px solid rgba(237, 105, 77, 0.3);
}
