/* ============================================
   DESIGN SYSTEM - TOKENS
   ============================================ */
:root {
  /* Colors - Primary */
  --bg: #F7F4EE;
  --panel: #FFFFFF;
  --panel-soft: #F0E9DE;
  --gold: #A18463;
  --gold-hover: #8a6f52;
  --gold-light: rgba(161, 132, 99, 0.1);
  --navy: #1C3143;
  --navy-hover: #152332;
  --navy-light: rgba(28, 49, 67, 0.1);
  --black: #000000;
  --white: #FFFFFF;
  --text: #1C3143;
  --muted: rgba(28, 49, 67, 0.75);
  --muted-light: rgba(28, 49, 67, 0.5);
  
  /* Colors - Functional */
  --success: #22c55e;
  --success-light: rgba(34, 197, 94, 0.1);
  --error: #ef4444;
  --error-light: rgba(239, 68, 68, 0.1);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --info: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.1);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Typography */
  --font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  
  /* Borders */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --border-width: 1px;
  --border-width-thick: 2px;
  --border-color: rgba(28, 49, 67, 0.15);
  --border-color-light: rgba(28, 49, 67, 0.08);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(28, 49, 67, 0.05);
  --shadow: 0 16px 48px rgba(28, 49, 67, 0.12);
  --shadow-md: 0 4px 12px rgba(28, 49, 67, 0.15);
  --shadow-lg: 0 20px 60px rgba(28, 49, 67, 0.16);
  --shadow-focus: 0 0 0 3px rgba(161, 132, 99, 0.3);
  --shadow-focus-error: 0 0 0 3px rgba(239, 68, 68, 0.3);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  
  /* Z-index */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 50;
  --z-modal: 100;
  --z-tooltip: 200;
  
  /* Touch targets (accessibility) */
  --touch-target-min: 44px;
  
  /* Scale factor */
  --scale-factor: 1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================
   SKIP LINKS (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: var(--z-tooltip);
  padding: var(--space-md) var(--space-lg);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  border-radius: 0 0 var(--radius) 0;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  line-height: var(--line-height-relaxed);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

/* Lazy loading images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded {
  opacity: 1;
}

.section {
  padding: 60px 16px; /* Mobile first */
}

@media (min-width: 481px) {
  .section {
    padding: 70px 20px;
  }
}

@media (min-width: 769px) {
  .section {
    padding: 90px 5vw;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* transparent au chargement */
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;

  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    border-bottom 0.3s ease;
}

/* état après scroll */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 49, 67, 0.08);
}

.logo {
  display: flex;
  align-items: center;
}

.hero-content,
.hero-visual {
  margin-top: 80px; /* Recentré verticalement */
}

.logo-image {
  height: 40px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  padding: var(--space-sm) 10px;
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-medium);
  min-height: var(--touch-target-min);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-base), background var(--transition-base);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.header-auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-auth {
  padding: 10px 18px;
  border-radius: 50px !important;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-auth-login {
  background: transparent;
  color: #A18463;
  border-color: #A18463;
}

.btn-auth-login:hover {
  background: #A18463;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(161, 132, 99, 0.3);
}

.btn-auth-signup {
  background: #A18463;
  color: var(--white);
  border-color: #A18463;
}

.btn-auth-signup:hover {
  background: #8a6f52;
  border-color: #8a6f52;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(161, 132, 99, 0.4);
}

.main-nav a:hover:not(.btn-auth),
.main-nav a.active:not(.btn-auth) {
  color: #A18463;
  background: transparent;
}

/* Menu burger */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  min-width: var(--touch-target-min);
  min-height: var(--touch-target-min);
  z-index: var(--z-modal);
  position: relative;
  align-items: center;
  justify-content: center;
}

.burger-menu:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.burger-menu span {
  background: var(--navy);
}

.site-header.scrolled .burger-menu span {
  background: var(--navy);
}

/* HERO avec décor + canvas animé */
.hero-background-wrapper {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 0;
}

#hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 32px;

  /* COLLE LE HERO AU HEADER */
  padding: 50px 8vw 0;  /* padding top réduit pour réduire la hauteur de la section */
  padding-bottom: 0;
  margin-bottom: -180px;  /* Remonte le bas de la section au niveau des points animés */
  
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* halo / dégradés de fond du hero */
#hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(161, 132, 99, 0.15), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(28, 49, 67, 0.12), transparent 32%);
  z-index: -2;          /* derrière le canvas */
  filter: blur(2px);
}

/* canvas des points animés */
#hero-canvas,
#hero-canvas-comment,
#hero-canvas-tarifs,
#hero-canvas-catalogue,
#hero-canvas-contact,
#hero-canvas-produit,
#hero-canvas-backoffice,
#hero-canvas-experience,
#hero-canvas-multi,
#hero-canvas-tarifs-accueil,
#hero-canvas-features,
#canvas-faq,
.section-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;          /* sous le contenu, au-dessus du ::before */
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(1.8rem, 2.5vw + 0.8rem, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #222A3A 0%, #B6916B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  margin-top: 12px;
  width: 100%;
}

.hero-stat-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  box-shadow: 
    0 1px 4px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-stat-icon {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(38%) sepia(18%) saturate(900%) hue-rotate(8deg) brightness(0.95);
  margin-bottom: 6px;
}

.hero-stat-card:nth-child(2) .hero-stat-icon,
.hero-stat-card:nth-child(3) .hero-stat-icon {
  width: 75px;
  height: 75px;
}

.hero-stat-text {
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  white-space: normal;
  text-align: center;
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */

/* Mobile (jusqu'à 480px) */
@media (max-width: 480px) {
  .section {
    padding: 60px 16px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  #hero {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .hero-stats {
    gap: var(--space-xs);
  }

  .hero-stat-card {
    padding: var(--space-sm) var(--space-xs);
    gap: var(--space-xs);
    min-height: var(--touch-target-min);
  }

  .hero-stat-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .hero-stat-card:nth-child(2) .hero-stat-icon,
  .hero-stat-card:nth-child(3) .hero-stat-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .hero-stat-text {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-tight);
  }

  .features-blocks-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-hero-cta {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-base);
  }
  
  .section-header h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
}

/* Tablet (481px à 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .section {
    padding: 70px 20px;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: var(--space-sm);
  }
  
  .hero-stat-card {
    min-width: 0;
    padding: var(--space-md) var(--space-sm);
    gap: var(--space-sm);
    min-height: var(--touch-target-min);
  }

  .hero-stat-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .hero-stat-text {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
  }

  .features-blocks-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* Desktop (769px et plus) - styles par défaut */
@media (min-width: 769px) {
  .section {
    padding: 90px 5vw;
  }
}

/* ============================================
   BUTTONS - Design System
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  font-family: var(--font-family);
  border: var(--border-width) solid transparent;
  cursor: pointer;
  min-height: var(--touch-target-min);
  text-decoration: none;
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-base), 
              background var(--transition-base), 
              color var(--transition-base),
              border-color var(--transition-base);
  position: relative;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  box-shadow: var(--shadow-focus);
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Loading state */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Primary button */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover:not(:disabled) {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
}

/* Hero CTA (main action) */
.btn-hero-cta {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
}

.btn-hero-cta:hover:not(:disabled) {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white) !important;
}

/* Secondary button */
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--panel-soft);
  border-color: var(--gold);
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero-image {
  width: min(1000px, 95vw);
  border-radius: var(--radius);
  box-shadow: none;
  background: transparent;
  border: none;
  animation: floatY 7s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  display: block;
}

.hero-image:hover {
  transform: translateY(-10px) scale(1.03) rotate(-2.2deg);
  box-shadow: none;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2vw + 0.6rem, 2.2rem);
  color: var(--navy);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
}

.steps-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card,
.benefit-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: grid;
  gap: 10px;
  animation: fadeInUp 0.7s ease both;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.step-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #202D3D 0%, #B6916B 100%);
  transition: width 0.1s linear, opacity 0.3s ease;
  z-index: 1;
  opacity: 0;
}

.step-card:nth-child(1),
.benefit-card:nth-child(1) { animation-delay: 0.05s; }
.step-card:nth-child(2),
.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.step-card:nth-child(3),
.benefit-card:nth-child(3) { animation-delay: 0.15s; }
.step-card:nth-child(4),
.benefit-card:nth-child(4) { animation-delay: 0.2s; }
.benefit-card:nth-child(5) { animation-delay: 0.25s; }
.benefit-card:nth-child(6) { animation-delay: 0.3s; }

.step-card:hover,
.benefit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(28, 49, 67, 0.16);
  border-color: rgba(161, 132, 99, 0.45);
}

.filters-section .visual-split,
.multi-support .visual-card {
  display: grid;
  gap: 22px;
}

.visual-split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.visual-copy {
  display: grid;
  gap: 14px;
}

.visual-copy h2,
.visual-copy h3 {
  color: var(--navy);
}

.visual-copy h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.visual-copy .section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.visual-copy p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.visual-card {
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: none;
  border: none;
  display: grid;
  place-items: center;
}

.visual-card.wide {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-image {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: none;
  max-height: none;
  object-fit: contain;
}

.testimonials-logos-wrapper {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.testimonials {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: grid;
  gap: 10px;
  animation: fadeInUp 0.7s ease both;
}

.filters-title {
  font-size: 1.9rem;   /* augmente */
  font-weight: 700;    /* si tu veux plus fort */
  line-height: 1.2;    /* optionnel */
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(28, 49, 67, 0.15);
}

.testimonial-quote {
  font-weight: 600;
  color: var(--navy);
}

.testimonial-author {
  color: var(--muted);
  font-size: 0.95rem;
}

.logos {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  
}

.logo-item {
  background: transparent;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: none;
  border: none;
  display: grid;
  place-items: center;
  min-height: 90px;
}

.logo-item img {
  max-height: 200px;
  width: auto;
  opacity: 0.9;
}

.comment-ca-marche {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 20px 5vw 40px 5vw;
  background: #445789 !important;
}

.comment-ca-marche #hero-canvas-comment {
  opacity: 0.3;
}

.section-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.section-logo-image {
  max-width: 200px;
  height: auto;
}

.comment-ca-marche-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1fr);
  gap: 60px;
  align-items: start;
}

.comment-ca-marche-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.comment-ca-marche-text .section-header {
  text-align: left;
  margin-bottom: 12px;
}

.comment-ca-marche-text .section-header h2 {
  margin-bottom: 8px;
}

.comment-ca-marche-text .section-header p {
  margin-bottom: 0;
}

.comment-ca-marche-text .section-header h2,
.comment-ca-marche-text .section-header p {
  color: #ffffff;
}

.comment-ca-marche-text .steps-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 100%;
  margin: 0;
}

@media (min-width: 769px) {
  .comment-ca-marche-text .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.comment-ca-marche .step-card {
  background: #202D3D;
  border: 2px solid #3C3C3C;
  padding: 14px 16px;
  gap: 8px;
}

.comment-ca-marche .step-card h3,
.comment-ca-marche .step-card p {
  color: #ffffff;
}

.comment-ca-marche .step-card h3 {
  font-size: 1rem !important;
  margin-bottom: 8px;
}

.comment-ca-marche .step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-card-image-mobile {
  display: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 16px;
  object-fit: cover;
}

/* Afficher les images mobiles sur petits écrans */
@media (max-width: 1024px) {
  .step-card-image-mobile {
    display: block !important;
  }
}

.comment-ca-marche-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
}

.comment-ca-marche-image {
  width: 100%;
  max-height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.features-blocks-section {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 5vw;
}

.features-blocks-section .section-canvas {
  opacity: 0.1;
}

.features-blocks-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-blocks-text {
  text-align: center;
  width: 100%;
}

.features-blocks-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.features-blocks-description {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-blocks-description:last-child {
  margin-bottom: 0;
}

.feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.feature-block-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-block-title {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.feature-block-text {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.benefices {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.filters-section {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.multi-support {
  background: #445789 !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.multi-support .section-header h2,
.multi-support .section-header p {
  color: #ffffff;
}

.multi-support .section-canvas {
  opacity: 0.3;
}

.sticker-carousel {
  overflow: hidden;
  margin: 32px auto 14px;
  padding: 10px 0;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollStickers 80s linear infinite;
}

.carousel-track img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  filter: none;
  margin-right: 18px;
}

.carousel-track img:last-child {
  margin-right: 0;
}

.carousel-cta {
  text-align: center;
  margin-top: 8px;
}

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

/* Logos Carousel Section */
.logos-carousel-section {
  padding: 5px 5vw;
  padding-top: 5px;
  position: relative;
  overflow: hidden;
}

.logos-carousel {
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 0;
  width: 100%;
  position: relative;
}

.logos-carousel-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollLogos 60s linear infinite;
}

.logos-carousel-track img {
  height: 80px;
  width: auto;
  min-width: 120px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
  margin-right: 40px;
}

.logos-carousel-track img:hover {
  filter: grayscale(0%) opacity(1);
}

.logos-carousel-track img:last-child {
  margin-right: 0;
}

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

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1); /* icône blanche */
}

.step-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);  /* couleur de l’icône */
}

.step-card h3,
.benefit-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.step-card p,
.benefit-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.benefit-card h3 {
  border-left: 4px solid var(--gold);
  padding-left: 10px;
}

/* Section Tarifs Accueil */
.tarifs-accueil {
  background: #445789 !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tarifs-accueil .section-canvas {
  opacity: 0.3;
}

.tarifs-accueil-header h2,
.tarifs-accueil-subtitle {
  color: #ffffff;
}

.tarifs-accueil-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Conteneur des cartes de pricing */
.pricing-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
  align-items: stretch;
}

/* Cartes de pricing */
.pricing-card {
  background: #202D3D;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 500px;
  width: 100%;
}

.pricing-card-essentiel {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-card-pro {
  border: 2px solid #A18463;
  padding-top: 50px;
}

.pricing-card-signature {
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-card-single {
  border: 2px solid #A18463;
  max-width: 600px;
  margin: 0 auto;
}

/* Badges */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

.pricing-badge-essentiel {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-badge-pro {
  background: #A18463;
}

.pricing-badge-signature {
  background: linear-gradient(135deg, #A18463 0%, #8a6f52 100%);
}

/* En-tête de la carte */
.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pricing-price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.pricing-price-period {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 500;
}

.pricing-card-description {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Requêtes IA */
.pricing-ai-requests {
  text-align: center;
  margin-top: 12px;
}

.ai-requests-label {
  display: inline-block;
  background: rgba(161, 132, 99, 0.2);
  color: #A18463;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* CTA section */
.pricing-card-cta {
  text-align: center;
  margin-bottom: 32px;
}

.btn-pricing {
  width: 100%;
  margin-bottom: 8px;
}

.pricing-card-cta .btn-hero-cta {
  width: 100%;
  margin-bottom: 16px;
}

.pricing-trial-text {
  color: #ffffff;
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

/* Liste des fonctionnalités */
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-feature-item .feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.pricing-feature-item.feature-included {
  opacity: 1;
}

.pricing-feature-item.feature-excluded {
  opacity: 0.4;
}

.pricing-feature-item span:last-child {
  flex: 1;
}

.tarifs-accueil-header {
  text-align: center;
  margin-bottom: 40px;
}

.tarifs-accueil-header h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.tarifs-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #A18463 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.tarifs-accueil-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
}

.tarifs-accueil-card {
  background: #202D3D;
  border: 2px solid #3C3C3C;
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.tarifs-price-section {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tarifs-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tarifs-price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.tarifs-price-period {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 500;
}

.tarifs-price-note {
  color: #ffffff;
  font-size: 0.95rem;
  margin: 0;
}

.tarifs-features {
  margin-bottom: 32px;
}

.tarifs-features h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600;
}

.tarifs-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
}

.tarifs-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(2000%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

.tarifs-features-list li span {
  flex: 1;
}

.tarifs-stickers-note {
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 32px 0 24px 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(161, 132, 99, 0.08) 0%, rgba(161, 132, 99, 0.05) 100%);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  font-style: italic;
}

.pricing-stickers-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 24px 0 0 0;
  padding: 12px 16px;
  background: rgba(161, 132, 99, 0.1);
  border-radius: 8px;
  border-left: 3px solid #A18463;
  font-style: italic;
}

/* Extension IA */
.pricing-extension-ia {
  max-width: 600px;
  margin: 50px auto 40px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.extension-ia-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.extension-ia-text {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.extension-ia-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.extension-price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #A18463;
}

.extension-price-detail {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.8;
}

/* Lien vers Shop */
.pricing-shop-link {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.shop-link-text {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0 0 20px 0;
  opacity: 0.9;
}

/* Section Stickers Pricing */
.stickers-pricing-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.stickers-pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.stickers-pricing-header h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.stickers-pricing-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.stickers-pricing-card {
  background: #202D3D;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.stickers-pricing-info {
  text-align: center;
  width: 100%;
}

.stickers-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stickers-price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stickers-price-unit {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 500;
  opacity: 0.9;
}

.stickers-minimum {
  color: #A18463;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 16px 0;
}

.stickers-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stickers-pricing-cta {
  width: 100%;
  text-align: center;
}

/* Section Histoire - Story Styles */
.story-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

/* Images des fondateurs */
.founders-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.founder-image-wrapper {
  text-align: center;
  flex: 0 0 auto;
}

.founder-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #A18463;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
  display: block;
}

.founder-image-caption {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.founder-image-role {
  color: #A18463;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
}

/* Texte de l'histoire */
.story-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 900px;
  width: 100%;
}

.story-paragraph {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 0.8rem;
  opacity: 0.95;
  text-align: center;
}

.story-paragraph:last-child {
  margin-bottom: 0;
}

.story-paragraph strong {
  color: #A18463;
  font-weight: 600;
}

/* CTA Section */
.story-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .stickers-pricing-card {
    padding: 30px 24px;
  }

  .stickers-price-amount {
    font-size: 2.8rem;
  }

  .stickers-pricing-header h3 {
    font-size: 1.6rem;
  }
}

.note-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.1rem;
}

.tarifs-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pricing-cards-container {
    flex-direction: column;
    gap: 30px;
  }

  .pricing-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .pricing-price-amount {
    font-size: 2.8rem;
  }

  .tarifs-accueil-header h2 {
    font-size: 1.8rem;
  }

  /* Responsive Section Histoire */
  .story-content {
    padding: 0 20px;
    gap: 40px;
  }
  
  .story-paragraph {
    text-align: center;
  }

  .founders-images {
    gap: 20px;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
  }

  .founder-image {
    width: 150px;
    height: 150px;
  }

  .founder-image-caption {
    font-size: 1.2rem;
  }

  .founder-image-role {
    font-size: 0.9rem;
  }

  .story-text {
    padding: 0;
  }

  .story-paragraph {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .pricing-extension-ia {
    padding: 24px 20px;
    margin: 40px auto 30px;
  }

  .extension-ia-title {
    font-size: 1.3rem;
  }

  .extension-price-amount {
    font-size: 1.5rem;
  }

  .pricing-shop-link {
    padding: 30px 15px;
  }

  .shop-link-text {
    font-size: 0.95rem;
  }
}

/* Section FAQ */
.faq-section {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.faq-section .section-canvas {
  opacity: 0.1;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5vw;
  position: relative;
  z-index: 1;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-text {
  position: sticky;
  top: 100px;
}

.faq-text .section-header {
  text-align: left;
}

.faq-text .section-header h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.faq-text .section-header p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #A18463;
}

.faq-question:focus {
  outline: none;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--navy);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

  .faq-text {
    position: static;
  }

  .faq-text .section-header {
    text-align: center;
  }

  .faq-text .section-header h2 {
    font-size: 1.8rem;
  }
}

.comlaire-content {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--panel);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: grid;
  gap: 14px;
}

.comlaire-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* Section Contact Rapide */
.contact-rapide {
  padding: 80px 20px 120px;
  background: url('../image/background-prêt à moderniser.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-rapide-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-rapide-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-rapide-header h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-rapide-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-rapide-form {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.contact-rapide-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact-rapide-form .form-group {
  margin-bottom: 0;
}

.contact-rapide-form .form-group label {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-rapide-form .form-group .required {
  color: var(--gold);
}

.contact-rapide-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(28, 49, 67, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.contact-rapide-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-rapide-form button {
  margin-top: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-rapide-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-rapide-form .btn-success {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-rapide-form .btn-text {
  display: inline;
}

@media (max-width: 768px) {
  .contact-rapide-header h2 {
    font-size: 1.8rem;
  }

  .contact-rapide-form {
    padding: 32px 24px;
  }

  .contact-rapide-form .form-row {
    grid-template-columns: 1fr;
  }
}

.cta-finale {
  padding: 80px 20px 120px;
  background: url('../image/background-prêt à moderniser.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.cta-finale .cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 840px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  text-align: center;
  animation: fadeInUp 0.8s ease both 0.1s;
  position: relative;
  overflow: hidden;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-inner .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.cta-inner .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.1), transparent 45%),
              radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.site-footer {
  background: #445789;
  color: var(--white);
  border-top: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-section {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-logo-image {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--white);
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.footer-section h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 20px 0 12px 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-nav-list li {
  margin: 0;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.footer-nav-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-input {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  border-color: var(--gold);
}

.newsletter-btn:hover {
  background: #8a6f52;
  border-color: #8a6f52;
}

.footer-social {
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 40px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 50px 30px 30px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 30px;
  }

  .footer-bottom {
    padding: 20px;
  }
}

/* Menu responsive */
@media (max-width: 1024px) {
  .burger-menu {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(28, 49, 67, 0.15);
    transition: right 0.3s ease;
    z-index: 99;
    padding: 80px 30px 30px;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 16px 20px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(28, 49, 67, 0.08);
  }

  .main-nav a:hover:not(.btn-auth),
  .main-nav a.active:not(.btn-auth) {
    background: transparent;
    color: #A18463;
  }

  .header-auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-auth {
    width: 100%;
    justify-content: center;
  }

  .comment-ca-marche-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .comment-ca-marche-visual {
    display: none;
  }

  .comment-ca-marche-text .section-header {
    text-align: center;
  }

  .comment-ca-marche .step-card h3 {
    font-size: 1.1rem !important;
  }

  .features-blocks-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Overlay pour fermer le menu */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 49, 67, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 720px) {
  /* Réduire les points et lignes sur mobile */
  #hero-canvas,
  #hero-canvas-comment,
  #hero-canvas-tarifs,
  #hero-canvas-catalogue,
  #hero-canvas-contact,
  #hero-canvas-produit,
  #hero-canvas-backoffice {
    width: 100% !important;
    max-width: 100vw !important;
  }

  .site-header {
    padding: 18px 20px;
  }

  .hero {
    padding-top: 90px;
  }

  #hero {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }
}

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

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   STYLES POUR LA PAGE PRODUIT
   ============================================ */

/* Intro produit */
.intro-produit {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.intro-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.intro-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: none;
}

.intro-definition {
  display: grid;
  gap: 20px;
}

.intro-definition h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 0;
}

.definition-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.definition-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* Usages et Caractéristiques côte à côte */
.usages-caracteristiques {
  background: var(--panel-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.usages-caracteristiques-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.usages-section {
  width: 100%;
}

.back-office-text {
  width: 100%;
}

.usages-section h2 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}

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

.usage-item {
  background: var(--panel);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  text-align: center;
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 49, 67, 0.16);
}

.usage-icon {
  font-size: 2.5rem;
  display: block;
}

.usage-icon img {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}

.usage-item p {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.features-grid-compact {
  display: grid;
  gap: 16px;
}

.feature-card-compact {
  background: var(--panel);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 49, 67, 0.16);
}

.feature-card-compact .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-compact .feature-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.feature-content h3 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Back-office section */
.back-office-section {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.back-office-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.image-annotations-container {
  position: relative;
  display: inline-block;
  padding: 0 240px;
}

.back-office-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: none;
  position: relative;
  z-index: 1;
}

/* Annotations animées */
.annotation {
  position: absolute;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease, scale 0.3s ease;
}

.annotation:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}


.annotation-text {
  position: absolute;
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 400;
  max-width: 320px;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  line-height: 1.6;
}

.annotation-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.annotation-text p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Positionnement des annotations - 3 à gauche, 3 à droite, symétrique */
/* Annotations à gauche */
.annotation-1 {
  top: 8%;
  left: -60px;
}

.annotation-1 .annotation-text {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: right;
}

.annotation-2 {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}

.annotation-2 .annotation-text {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: right;
}

.annotation-3 {
  bottom: 8%;
  left: -60px;
}

.annotation-3 .annotation-text {
  bottom: 50%;
  left: 0;
  transform: translateY(50%);
  text-align: right;
}

/* Annotations à droite */
.annotation-4 {
  top: 8%;
  right: -60px;
}

.annotation-4 .annotation-text {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: left;
}

.annotation-5 {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}

.annotation-5 .annotation-text {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: left;
}

.annotation-6 {
  bottom: 8%;
  right: -60px;
}

.annotation-6 .annotation-text {
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  text-align: left;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Responsive pour les annotations */
@media (max-width: 1200px) {
  .image-annotations-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .back-office-image {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .annotation {
    position: static !important;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    transform: none !important;
  }

  .annotation-text {
    position: static !important;
    max-width: 100%;
    min-width: auto;
    text-align: center !important;
    transform: none !important;
    margin: 0 auto;
  }

  .annotation-1,
  .annotation-2,
  .annotation-3,
  .annotation-4,
  .annotation-5,
  .annotation-6 {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
}


.back-office-text h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

.feature-detail-list {
  display: grid;
  gap: 24px;
}

.feature-detail-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}

.feature-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-detail-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.feature-detail-content h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-detail-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Expérience client section */
.experience-client-section {
  background: #445789 !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.experience-client-section .section-canvas {
  opacity: 0.3;
}

.experience-client-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.experience-client-text h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.experience-client-text .section-subtitle {
  color: #ffffff;
}

.experience-client-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience-client-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: none;
}

.client-steps {
  display: grid;
  gap: 24px;
}

.client-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #202D3D;
  border-radius: calc(var(--radius) - 4px);
  border: 2px solid #3C3C3C;
  box-shadow: var(--shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.step-content p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.experience-client-cta {
  margin-top: 32px;
  text-align: left;
}

.filters-cta {
  margin-top: 24px;
}

/* Section Comlaire redesignée */
.section-comlaire {
  background: var(--navy);
  color: var(--white);
}

.section-comlaire .section-header h2,
.section-comlaire .section-header p {
  color: var(--white);
}

.section-comlaire .comlaire-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}

.section-comlaire .comlaire-content p {
  color: rgba(255, 255, 255, 0.9);
}

.section-comlaire .comlaire-content a,
.section-comlaire .comlaire-link {
  color: var(--white);
  text-decoration: underline;
}

.comlaire-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.comlaire-header {
  text-align: center;
  margin-bottom: 50px;
}

.comlaire-header h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.comlaire-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.comlaire-main {
  display: grid;
  gap: 40px;
}

.comlaire-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.comlaire-intro-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.comlaire-intro-text strong {
  color: var(--white);
  font-weight: 600;
}

.comlaire-expertise h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.expertise-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.expertise-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon img {
  width: 48px;
  height: 48px;
  display: block;
  filter: brightness(0) invert(1);
}

.expertise-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.expertise-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.comlaire-cta {
  text-align: center;
}

.comlaire-link-btn {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.comlaire-link-btn:hover {
  background: var(--panel-soft);
  color: var(--navy);
}

/* Responsive pour la page produit */
@media (max-width: 1024px) {
  .intro-content,
  .usages-caracteristiques-grid,
  .back-office-content,
  .experience-client-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-visual,
  .back-office-visual,
  .experience-client-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .intro-produit {
    padding-top: 100px;
  }

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

  .feature-detail-item,
  .client-step,
  .feature-card-compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-detail-icon,
  .step-number,
  .feature-card-compact .feature-icon {
    margin: 0 auto;
  }

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

  .comlaire-header h2 {
    font-size: 1.8rem;
  }
}

/* ============================================
   STYLES POUR LA PAGE TARIFS
   ============================================ */

/* Hero tarifs */
.hero-tarifs {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-tarifs .section-header h1 {
  color: var(--navy);
}

.hero-tarifs .section-header p {
  color: var(--muted);
}

/* Licence logiciel */
.licence-logiciel {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tarifs-principaux {
  background: var(--panel-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tarifs-grid-main {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.stickers-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .tarifs-grid-main {
    grid-template-columns: 1fr;
  }
  
  .stickers-column {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .tarifs-grid-top {
    grid-template-columns: 1fr;
  }
}

.tarif-block {
  background: var(--panel);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  text-align: center;
  min-height: 100%;
}

.sticker-personnalise-block {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sticker-catalogue-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.licence-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Nouvelle structure Licence - Marketing */
.licence-header-section {
  margin-bottom: 24px;
}

.licence-price-wrapper {
  margin: 20px 0;
  text-align: center;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.monthly-equivalent {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
}

.monthly-equivalent strong {
  color: var(--primary);
  font-size: 1.2rem;
}

.price-comparison {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

.licence-guarantee {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guarantee-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.guarantee-text {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.licence-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.feature-category {
  padding: 16px;
  background: rgba(28, 49, 67, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(28, 49, 67, 0.08);
  transition: all 0.3s ease;
}

.feature-category:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.feature-category-title {
  margin: 0 0 12px 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 24px;
}

.licence-features-grid .feature-list li::before {
  content: none;
}

.licence-value-proposition {
  margin: 24px 0;
}

.value-box {
  padding: 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-radius: var(--radius);
  border: 2px solid rgba(251, 191, 36, 0.3);
  text-align: center;
}

.value-main {
  margin: 0 0 8px 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
}

.value-main strong {
  color: var(--primary);
  font-size: 1.3rem;
}

.value-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.licence-cta {
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .licence-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .licence-guarantee {
    padding: 12px;
  }
  
  .value-box {
    padding: 16px;
  }
}

.tarif-block .section-header {
  text-align: left;
  margin: 0;
}

.tarif-header {
  margin-bottom: 24px;
}

.tarif-header h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.tarif-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.price-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -20px 0 24px 0;
  font-style: italic;
}

.value-highlight {
  margin-top: 24px;
  padding: 16px;
  background: rgba(161, 132, 99, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.value-highlight p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
}

.sticker-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 12px 0;
}

.sticker-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}

/* Nouvelle structure Stickers - Marketing */
.sticker-options-wrapper {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticker-option-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(28, 49, 67, 0.1);
  background: var(--panel);
  transition: all 0.3s ease;
}

.sticker-option-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.sticker-option-card.option-catalogue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
  border-color: rgba(59, 130, 246, 0.2);
}

.sticker-option-card.option-personnalise {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-color: rgba(251, 191, 36, 0.3);
}

.option-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.option-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: white;
}

.option-badge.premium {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--navy);
}

.option-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
}

.option-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.option-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.personalisation-pricing {
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pricing-line:last-of-type {
  margin-bottom: 0;
}

.pricing-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(28, 49, 67, 0.1);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  font-style: italic;
}

.option-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.spec-item {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
}

.sticker-cta-section {
  margin-top: 12px;
  text-align: center;
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .sticker-option-card {
    padding: 16px;
  }
  
  .option-header {
    flex-wrap: wrap;
  }
  
  .pricing-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.benefit-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(28, 49, 67, 0.05);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

.price-plus {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

.graphisme-note {
  margin: 16px 0;
  padding: 12px;
  background: rgba(161, 132, 99, 0.08);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
}

.tarifs-reassurance {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 24px;
  background: rgba(161, 132, 99, 0.1);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  text-align: center;
}

.tarifs-reassurance p {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
}

.licence-card {
  max-width: 800px;
  margin: 0;
  background: var(--panel);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  text-align: center;
}

.licence-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
}

.price-period {
  font-size: 1.2rem;
  color: var(--muted);
}

.licence-image {
  margin: 20px 0 8px 0;
  text-align: center;
}

.licence-visual {
  max-width: 100%;
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Styles pour ordinateur uniquement */
@media (min-width: 769px) {
  .licence-visual {
    max-height: 400px;
  }
  
  .licence-image {
    margin-bottom: 0px;
  }
}

.licence-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.licence-features ul {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  max-width: 100%;
}

.licence-features li {
  color: var(--muted);
  font-size: 1rem;
  padding-left: 8px;
}

/* Tarifs stickers */
.tarifs-stickers {
  background: var(--panel);
}

.stickers-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stickers-options .sticker-option {
  height: 100%;
}

.sticker-option {
  background: var(--panel);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  text-align: center;
  display: grid;
  gap: 16px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticker-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 49, 67, 0.16);
}

.sticker-option.featured {
  border: 2px solid var(--gold);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.sticker-option h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.sticker-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px 0;
}

.sticker-price .price-amount,
.sticker-price .price-unit {
  display: inline;
}

.sticker-price .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.sticker-price .price-unit {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticker-option p {
  color: var(--muted);
  line-height: 1.6;
}

/* Commande en ligne / panier */
.commande-en-ligne {
  background: var(--panel-soft);
}

.commande-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}

.commande-info {
  background: var(--panel);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: grid;
  gap: 14px;
}

.commande-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.commande-list li {
  position: relative;
  padding-left: 14px;
}

.commande-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

.commande-note {
  padding: 12px;
  background: var(--panel-soft);
  border-radius: 10px;
  color: var(--muted);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.commande-panier {
  background: var(--panel);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: grid;
  gap: 16px;
}

.commande-panier-header h3 {
  margin: 0;
  color: var(--navy);
}

.panier-helper {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 4px 0 0;
}

.panier-items {
  display: grid;
  gap: 12px;
}

.panier-items.empty {
  border: 1px dashed rgba(28, 49, 67, 0.2);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.panier-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(28, 49, 67, 0.1);
  border-radius: 10px;
  background: var(--panel-soft);
}

.panier-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
}

.panier-item-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.panier-totals {
  border-top: 1px solid rgba(28, 49, 67, 0.1);
  padding-top: 10px;
  display: grid;
  gap: 6px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.total-line.total-ttc {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.commande-actions {
  display: grid;
  gap: 8px;
}

.commande-small {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Section avantages menu en ligne */
.avantages-menu-ligne {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.avantages-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5vw;
  position: relative;
  z-index: 1;
}

.avantages-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.avantages-text h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.avantages-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

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

.avantages-image {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(28, 49, 67, 0.25);
}

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

.problematique-item {
  padding: 24px;
  background: var(--panel);
  border-radius: calc(var(--radius) - 4px);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(28, 49, 67, 0.1);
}

.problematique-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 49, 67, 0.15);
  border-left-color: var(--gold);
}

.problematique-icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
}

.problematique-icon-svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(2000%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

.problematique-item h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.problematique-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .avantages-header {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .avantages-content {
    padding: 40px 5vw;
  }

  .avantages-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .avantages-text h2 {
    font-size: 1.5rem;
  }

  .problematiques-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .problematique-item {
    padding: 20px;
  }

  .problematique-item h3 {
    font-size: 1rem;
  }

  .problematique-item p {
    font-size: 0.85rem;
  }
}

/* Section explicative sticker */
.explication-sticker {
  background: var(--panel-soft);
}

.explication-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.explication-text h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.explication-text > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.explication-points {
  display: grid;
  gap: 20px;
}

.explication-point {
  padding: 20px;
  background: var(--panel);
  border-radius: calc(var(--radius) - 4px);
  border-left: 4px solid var(--gold);
}

.explication-point strong {
  color: var(--navy);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
}

.explication-point p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

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

.explication-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: none;
}

/* Calculateur */
.calculateur {
  background: var(--panel);
}

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

.calculateur-form {
  background: var(--panel-soft);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-select,
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(28, 49, 67, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s ease;
}

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.calculateur-result {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid rgba(28, 49, 67, 0.1);
}

.result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--muted);
  font-size: 1rem;
}

.result-line.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  padding-top: 16px;
  border-top: 2px solid rgba(28, 49, 67, 0.1);
  margin-top: 8px;
}

.result-note {
  margin-top: 16px;
  margin-bottom: 24px;
}

.result-note p {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Exemples concrets */
.exemples-concrets {
  background: var(--panel-soft);
}

.exemples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.exemple-card {
  background: var(--panel);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.exemple-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.exemple-details p {
  color: var(--muted);
  margin-bottom: 12px;
}

.exemple-details ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.exemple-details li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.exemple-details li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
}

.exemple-details strong {
  color: var(--navy);
}

.exemple-ttc {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 49, 67, 0.1);
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* Galerie projets */
.galerie-projets {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.galerie-item {
  background: var(--panel-soft);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.galerie-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* FAQ */
.faq {
  background: var(--panel-soft);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--panel-soft);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive page tarifs */
@media (max-width: 1024px) {
  .explication-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .explication-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .hero-tarifs {
    padding-top: 100px;
  }

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

  .licence-card {
    padding: 28px 24px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .stickers-options {
    grid-template-columns: 1fr;
  }

  .calculateur-form {
    padding: 28px 24px;
  }

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

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

/* ============================================
   STYLES POUR LA PAGE CATALOGUE
   ============================================ */

/* Hero catalogue */
.hero-catalogue {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 8vw 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-catalogue-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-catalogue-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-catalogue-logo .hero-logo-image {
  max-width: 200px;
  height: auto;
  display: block;
}

.hero-catalogue-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-catalogue-subtitle {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
}

/* Canvas avec opacité 100% pour le catalogue (comme la page d'accueil) */
#hero-canvas-catalogue {
  opacity: 1;
}

/* Canvas avec opacité 30% pour la section stickers */
#hero-canvas-stickers {
  opacity: 0.3;
}

/* Section Stickers */
#stickers-section.stickers-section {
  background: #445789 !important;
  padding: 80px 8vw !important;
  min-height: 400px !important;
  display: block !important;
  visibility: visible !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stickers-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: block !important;
}

#stickers-grid-main.stickers-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 32px !important;
  width: 100% !important;
  min-height: 200px !important;
  visibility: visible !important;
}

@media (max-width: 1200px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 900px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
  
  #stickers-section.stickers-section {
    padding: 60px 6vw !important;
  }
}

@media (max-width: 600px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  #stickers-section.stickers-section {
    padding: 40px 4vw !important;
  }
  
  .sticker-item-image {
    padding: 15px !important;
  }
}

@media (max-width: 400px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

.sticker-item {
  background: transparent !important;
  border-radius: var(--radius);
  overflow: visible !important;
  transition: transform 0.3s ease;
  width: 100% !important;
  min-height: 150px !important;
  display: block !important;
  visibility: visible !important;
}

.sticker-item:hover {
  transform: translateY(-8px);
}

.sticker-item-image {
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  aspect-ratio: 1;
  width: 100% !important;
  min-height: 150px !important;
  visibility: visible !important;
}

.sticker-item-image img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 180px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: contain !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.sticker-item:hover .sticker-item-image img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.sticker-reference {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Section Caractéristiques */
.features-section {
  padding: 80px 8vw;
  background: var(--white);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

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

.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.feature-text {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Responsive pour la section stickers */
@media (max-width: 1200px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 900px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
  
  #stickers-section.stickers-section {
    padding: 60px 6vw !important;
  }
  
  .hero-catalogue {
    padding: 100px 6vw 60px;
    min-height: 400px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 720px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  #stickers-section.stickers-section {
    padding: 60px 6vw !important;
  }
  
  .hero-catalogue {
    padding: 80px 4vw 50px;
    min-height: 350px;
  }
  
  .hero-catalogue-logo .hero-logo-image {
    max-width: 150px;
  }
  
  .features-section {
    padding: 60px 6vw;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .feature-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #stickers-grid-main.stickers-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  #stickers-section.stickers-section {
    padding: 40px 4vw !important;
  }
  
  .sticker-item-image {
    padding: 15px !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .feature-text {
    text-align: center;
  }
}

/* Grille stickers */
.grille-stickers {
  background: var(--panel-soft);
}

.catalogue-controls {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalogue-info {
  color: var(--muted);
  font-size: 0.95rem;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.catalogue-item {
  background: url('../image/sticker.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28, 49, 67, 0.16);
}

.catalogue-item-image {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  aspect-ratio: 1;
}

.catalogue-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 200px;
}

.catalogue-item-info {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.catalogue-item-info h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Pagination */
.catalogue-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.pagination-btn {
  padding: 10px 20px;
  background: var(--panel);
  border: 1px solid rgba(28, 49, 67, 0.15);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-pages {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pagination-page {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(28, 49, 67, 0.15);
  border-radius: 10px;
  background: var(--panel);
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.pagination-page:hover {
  background: var(--panel-soft);
  border-color: var(--gold);
}

.pagination-page.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Popup Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 49, 67, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(28, 49, 67, 0.3);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.product-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(28, 49, 67, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: background 0.2s ease;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 300;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(28, 49, 67, 0.2);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.modal-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../image/sticker.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  padding: 40px;
  aspect-ratio: 1;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 400px;
}

.modal-info {
  display: grid;
  gap: 20px;
  align-content: start;
}

.modal-title {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.modal-description {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(28, 49, 67, 0.1);
  border-bottom: 1px solid rgba(28, 49, 67, 0.1);
}

.price-label {
  color: var(--muted);
  font-size: 1rem;
}

.price-value {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-dimensions-ref {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(28, 49, 67, 0.1);
}

.modal-dimensions,
.modal-reference {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.dimensions-label,
.reference-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.dimensions-value,
.reference-value {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
}

.reference-value {
  font-family: 'Courier New', monospace;
  background: var(--panel-soft);
  padding: 4px 8px;
  border-radius: 4px;
}

.modal-size-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 12px 0 0 0;
  font-style: italic;
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 150px;
}

/* Section sticker personnalisé */
.sticker-personnalise {
  background: var(--panel);
}

.personnalise-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.personnalise-text h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.personnalise-text > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.personnalise-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.personnalise-features li {
  color: var(--muted);
  font-size: 1rem;
  padding-left: 8px;
}

.personnalise-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.personnalise-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: none;
}

/* Responsive page catalogue */
@media (max-width: 1024px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-image-container {
    order: -1;
  }

  .personnalise-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .personnalise-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .hero-catalogue {
    padding-top: 100px;
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .catalogue-item-image {
    padding: 20px;
  }

  .catalogue-pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pagination-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .pagination-page {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .modal-content {
    margin: 10px;
  }

  .modal-body {
    padding: 30px 24px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }

  .personnalise-cta {
    flex-direction: column;
  }

  .personnalise-cta .btn {
    width: 100%;
  }
}

/* ============================================
   STYLES POUR LA PAGE CONTACT
   ============================================ */

.hero-contact {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-contact .section-header h1 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.5vw + 0.6rem, 2.2rem) !important;
}

.hero-contact .section-header p {
  color: var(--muted);
}


.connexion-section {
  background: var(--panel-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.connexion-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

.connexion-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.connexion-header {
  text-align: center;
  margin-bottom: 32px;
}

.connexion-header h2 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 8px;
}

.connexion-header p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.connexion-form {
  display: grid;
  gap: 20px;
}

.connexion-form .form-group {
  margin-bottom: 0;
}

.connexion-form .form-group label {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.connexion-form .form-group .required {
  color: var(--gold);
}

.connexion-form input[type="text"],
.connexion-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(28, 49, 67, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.connexion-form input[type="text"]:focus,
.connexion-form input[type="password"]:focus {
  outline: none;
  border-color: var(--gold);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--gold);
}

.forgot-password {
  color: var(--navy);
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.forgot-password:hover {
  color: var(--gold);
}

.connexion-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 49, 67, 0.1);
  text-align: center;
}

.connexion-footer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.connexion-footer a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.connexion-footer a:hover {
  color: var(--gold);
}

@media (max-width: 720px) {
  .connexion-card {
    padding: 32px 24px;
  }

  .connexion-header h2 {
    font-size: 1.6rem;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Section Formulaire de Contact */
.contact-form-section {
  background: var(--panel-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 5vw;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-text {
  position: sticky;
  top: 100px;
}

.contact-form-text h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-form-text > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A18463 0%, #8a6f52 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step-content h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.process-step-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Reassurance box */
.reassurance-box {
  background: linear-gradient(135deg, rgba(161, 132, 99, 0.08) 0%, rgba(161, 132, 99, 0.05) 100%);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
  border-left: 3px solid #A18463;
}

.reassurance-box h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.reassurance-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reassurance-box li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.reassurance-box li::before {
  content: "✓";
  color: #A18463;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-block {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.contact-info-block h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-info-block p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 4px 0;
  line-height: 1.5;
}

.contact-info-block a {
  color: #A18463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-block a:hover {
  color: #8a6f52;
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.contact-grid {
  background: var(--panel-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0;
}

.contact-grid-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.contact-info-card {
  background: var(--panel);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 49, 67, 0.12);
}

.contact-info-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.contact-info-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: #A18463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #8a6f52;
  text-decoration: underline;
}

.contact-info-cta {
  margin-top: 8px;
  text-align: center;
}

.contact-form-header,
.contact-info-header {
  margin-bottom: 8px;
}

.contact-form-header h2,
.contact-info-header h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-header p,
.contact-info-header p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form .form-group label,
.form-group label {
  color: var(--navy);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--space-sm);
}

.contact-form .form-group label:has(+ input:required)::after,
.form-group label:has(+ input:required)::after {
  display: none;
}

.contact-form .form-group .required {
  color: #A18463;
}

/* ============================================
   FORM INPUTS - Design System
   ============================================ */
.contact-form input,
.contact-form select,
.contact-form textarea,
.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition-base), 
              box-shadow var(--transition-base),
              background-color var(--transition-base);
  min-height: var(--touch-target-min);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--shadow-focus);
}

/* Error state */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error,
.form-input.error,
.form-select.error {
  border-color: var(--error);
  background-color: var(--error-light);
}

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus,
.form-input.error:focus,
.form-select.error:focus {
  box-shadow: var(--shadow-focus-error);
}

/* Success state */
.contact-form input.success,
.contact-form select.success,
.contact-form textarea.success,
.form-input.success,
.form-select.success {
  border-color: var(--success);
  background-color: var(--success-light);
}

/* Disabled state */
.contact-form input:disabled,
.contact-form select:disabled,
.contact-form textarea:disabled,
.form-input:disabled,
.form-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--panel-soft);
}

/* Error message */
.form-error-message {
  display: block;
  color: var(--error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-error-message::before {
  content: '⚠';
  font-size: var(--font-size-base);
}

/* Success message */
.form-success-message {
  display: block;
  color: var(--success);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-success-message::before {
  content: '✓';
  font-size: var(--font-size-base);
}

/* Helper text */
.form-helper-text {
  display: block;
  color: var(--muted);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231C3143' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* Checkbox group */
.checkbox-group {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.checkbox-section {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--panel-soft);
  border-radius: var(--radius);
}

.checkbox-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(28, 49, 67, 0.1);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #A18463;
  flex-shrink: 0;
}

.checkbox-item label {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.checkbox-item label:hover {
  color: #A18463;
}

@media (max-width: 768px) {
  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-text {
    position: static;
  }

  .contact-form-text h2 {
    font-size: 1.8rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-section {
    padding: 60px 5vw;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .contact-info-card h3 {
    font-size: 1.1rem;
  }

  .process-step-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .process-step-content h3 {
    font-size: 0.95rem;
  }

  .process-step-content p {
    font-size: 0.85rem;
  }

  .reassurance-box {
    padding: 16px;
  }

  .reassurance-box h3 {
    font-size: 1rem;
  }

  .reassurance-box li {
    font-size: 0.85rem;
  }
}

/* Section informations de contact */
.contact-info-section {
  background: var(--panel-soft);
  padding: 80px 5vw;
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-block {
  background: var(--panel-soft);
  border: 1px solid rgba(28, 49, 67, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 49, 67, 0.1);
}

.info-block h3 {
  margin: 0 0 12px 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
}

.info-line {
  color: var(--muted);
  margin: 4px 0;
}

.info-line a {
  color: var(--navy);
  text-decoration: underline;
}

.contact-map {
  background: url('../image/hero-maior-domus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.map-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

.chat-card,
.map-card {
  background: var(--panel);
  border: 1px solid rgba(28, 49, 67, 0.08);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}

.chat-card h2,
.map-card h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Page Mentions légales */
.mentions-legales-content {
  max-width: 900px;
  margin: 0 auto;
}

.mentions-text {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 49, 67, 0.08);
}

.mentions-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(28, 49, 67, 0.1);
}

.mentions-section {
  margin-bottom: 40px;
}

.mentions-section:last-child {
  margin-bottom: 0;
}

.mentions-section h2 {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-top: 8px;
}

.mentions-section h3 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 24px 0 12px 0;
}

.mentions-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.mentions-section p:last-child {
  margin-bottom: 0;
}

.mentions-section strong {
  color: var(--navy);
  font-weight: 600;
}

.mentions-section a {
  color: #A18463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mentions-section a:hover {
  color: #8a6f52;
  text-decoration: underline;
}

.mentions-details {
  background: var(--panel-soft);
  border-left: 3px solid #A18463;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.mentions-details p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.6;
}

.mentions-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.mentions-list li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.mentions-list li::before {
  content: "•";
  color: #A18463;
  font-weight: 700;
  position: absolute;
  left: 8px;
}

@media (max-width: 768px) {
  .mentions-text {
    padding: 32px 24px;
  }

  .mentions-section h2 {
    font-size: 1.5rem;
  }

  .mentions-section h3 {
    font-size: 1.1rem;
  }

  .mentions-section p,
  .mentions-list li {
    font-size: 0.95rem;
  }
}

.chat-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.chat-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 12px 0;
}

.chat-actions .btn {
  flex: 1;
  min-width: 140px;
}

.small-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin: 16px 0 0 0;
}

.map-embed {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 1024px) {
}

@media (max-width: 720px) {
  .hero-contact {
    padding-top: 100px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   ADAPTATION PROPORTIONNELLE POUR ÉCRANS D'ORDINATEUR
   (Ne s'applique pas aux écrans mobiles < 768px)
   ============================================ */

/* Base de référence : 1920px (100%) */
/* Pour les écrans plus petits, on utilise clamp() et des unités viewport */

@media (min-width: 768px) {
  /* Taille de base du texte qui s'adapte */
  html {
    font-size: clamp(14px, 0.833vw, 16px);
  }

  body {
    font-size: clamp(14px, 0.833vw, 16px);
    line-height: 1.6;
  }

  /* Titres adaptatifs */
  h1 {
    font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
    line-height: 1.2;
  }

  .auth-header h1 {
    font-size: 1.2rem !important;
  }

  h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem) !important;
    line-height: 1.3;
  }

  h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.8rem) !important;
    line-height: 1.4;
  }

  .comment-ca-marche .step-card h3 {
    font-size: clamp(1rem, 1.2vw, 1.2rem) !important;
  }

  .comment-ca-marche .step-card p {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem) !important;
  }

  h4 {
    font-size: clamp(1.1rem, 1.3vw, 1.4rem) !important;
  }

  p {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  /* Sections et espacements */
  .section {
    padding: clamp(60px, 4.7vw, 90px) clamp(15px, 1.04vw, 20px);
  }

  .section-header {
    margin-bottom: clamp(30px, 3.1vw, 60px);
  }

  /* Header */
  .site-header {
    padding: clamp(18px, 1.15vw, 22px) clamp(24px, 1.67vw, 32px);
  }

  .logo-image {
    height: clamp(32px, 2.08vw, 40px);
  }

  .main-nav ul {
    gap: clamp(12px, 0.94vw, 18px);
  }

  .main-nav a {
    padding: clamp(6px, 0.52vw, 8px) clamp(8px, 0.52vw, 10px);
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    border-radius: clamp(8px, 0.52vw, 10px);
  }

  /* Boutons */
  .btn {
    padding: clamp(12px, 0.73vw, 14px) clamp(24px, 1.46vw, 28px);
    font-size: clamp(0.9rem, 1vw, 1rem);
    border-radius: clamp(40px, 2.6vw, 50px);
  }

  .btn-large {
    padding: clamp(16px, 0.94vw, 18px) clamp(32px, 1.88vw, 36px);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
  }

  /* Containers */
  .container {
    max-width: clamp(1000px, 62.5vw, 1200px);
    padding: 0 clamp(15px, 1.04vw, 20px);
  }

  /* Cartes et blocs */
  .step-card,
  .tarif-block,
  .catalogue-item,
  .feature-card {
    padding: clamp(20px, 1.67vw, 32px);
    border-radius: clamp(10px, 0.73vw, 14px);
  }

  /* Grilles */
  .catalogue-grid,
  .features-grid,
  .tarifs-grid,
  .products-grid {
    gap: clamp(16px, 1.25vw, 24px);
  }

  /* Hero section */
  .hero {
    padding-top: clamp(100px, 6.25vw, 120px);
    padding-left: clamp(60px, 8vw, 80px);
    padding-right: clamp(60px, 8vw, 80px);
  }

  .hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    margin-bottom: clamp(16px, 1.04vw, 20px);
  }

  .hero-content p {
    font-size: clamp(1rem, 1.25vw, 1.2rem) !important;
    margin-bottom: clamp(24px, 1.56vw, 30px);
  }

  .hero-stat-icon {
    width: clamp(65px, 4.5vw, 85px) !important;
    height: clamp(65px, 4.5vw, 85px) !important;
  }

  .hero-stat-card:nth-child(2) .hero-stat-icon,
  .hero-stat-card:nth-child(3) .hero-stat-icon {
    width: clamp(75px, 5.2vw, 95px) !important;
    height: clamp(75px, 5.2vw, 95px) !important;
  }

  .hero-image {
    width: min(clamp(1000px, 50vw, 1200px), 95vw) !important;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Espacements généraux */
  .gap-small {
    gap: clamp(8px, 0.52vw, 10px);
  }

  .gap-medium {
    gap: clamp(16px, 1.04vw, 20px);
  }

  .gap-large {
    gap: clamp(24px, 1.56vw, 30px);
  }

  /* Marges */
  .mb-small {
    margin-bottom: clamp(12px, 0.78vw, 15px);
  }

  .mb-medium {
    margin-bottom: clamp(24px, 1.56vw, 30px);
  }

  .mb-large {
    margin-bottom: clamp(40px, 2.6vw, 50px);
  }

  /* Padding */
  .p-small {
    padding: clamp(12px, 0.78vw, 15px);
  }

  .p-medium {
    padding: clamp(20px, 1.3vw, 25px);
  }

  .p-large {
    padding: clamp(32px, 2.08vw, 40px);
  }

  /* Formulaires */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: clamp(10px, 0.65vw, 12px) clamp(12px, 0.78vw, 14px);
    font-size: clamp(0.9rem, 1vw, 1rem);
    border-radius: clamp(8px, 0.52vw, 10px);
  }

  /* Footer */
  .site-footer {
    padding: clamp(40px, 2.6vw, 50px) clamp(20px, 1.04vw, 24px);
  }

  .footer-container {
    max-width: clamp(1000px, 62.5vw, 1200px);
    gap: clamp(24px, 1.56vw, 30px);
  }
}

/* ============================================
   NOUVEAUX STYLES POUR LA PAGE CATALOGUE
   ============================================ */

/* Section produits */
.products-grid-section {
  padding: 60px 20px;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Cartes produits */
.product-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(28, 49, 67, 0.18);
}

.product-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--panel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 250px;
}

.product-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.product-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.product-card-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.product-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.product-feature {
  display: inline-block;
  padding: 8px 16px;
  background: var(--panel-soft);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.product-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-card-actions .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* Modal Stickers */
.stickers-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.stickers-modal.active {
  opacity: 1;
  visibility: visible;
}

.stickers-modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(28, 49, 67, 0.3);
  max-width: 1400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.stickers-modal.active .stickers-modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid rgba(28, 49, 67, 0.1);
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.modal-header p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Grille de stickers dans le modal */
.stickers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  padding: 40px;
}

.sticker-card {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28, 49, 67, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 49, 67, 0.12);
}

.sticker-card-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--panel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sticker-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticker-card-info {
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(28, 49, 67, 0.1);
}

.sticker-ref {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Courier New', monospace;
}

/* Responsive pour les cartes produits */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card-image {
    height: 220px;
  }

  .product-card-content {
    padding: 24px;
  }

  .product-card-actions {
    flex-direction: column;
  }

  .product-card-actions .btn {
    width: 100%;
  }

  .stickers-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    padding: 24px;
  }

  .modal-header {
    padding: 24px 24px 16px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   STYLES POUR LES BOUTIQUES
   ============================================ */

/* Section catégories */
.categories-section {
  padding: 40px 20px 20px;
}

.categories-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.category-btn {
  padding: 12px 24px;
  background: var(--panel);
  border: 2px solid rgba(28, 49, 67, 0.15);
  border-radius: 50px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
  border-color: var(--gold);
  background: var(--panel-soft);
}

.category-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.category-btn.active:hover {
  background: var(--navy);
  color: var(--white);
}

/* Responsive catégories */
@media (max-width: 768px) {
  .categories-nav {
    gap: 8px;
  }

  .category-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
