/* ========== RESET & GLOBAL ========== */
* {
  box-sizing: border-box;
}

body {
  background-image: url('https://www.transparenttextures.com/patterns/cartographer.png');
  background-size: 600px;
  background-attachment: fixed;
  margin: 0;
  background-color: #101820;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* ========== HEADER & NAVBAR ========== */
header {
  padding: 60px 60px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  color: white;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: #00FF9D;
}

.cta-nav {
  background-color: #00FF9D;
  color: #21252A !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  height: 48px;
  margin-left: 0px;
}

.cta-nav:hover {
  background-color: #00CC82;
}

/* ========== MAIN HERO SECTION ========== */
main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 60px;
  gap: 0px 60px;
}

.text-content {
  text-align: left;
}

.text-content h1 {
  font-size: 3.3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-content p.tagline {
  font-size: 1.5rem;
  color: #ffffffcc;
  margin-bottom: 30px;
  max-width: 720px;
}

ul.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  color: white;
  font-size: 1.3rem;
}

ul.benefits li {
  margin: 10px 0;
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 80px rgba(0, 255, 128, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  cursor: grab;
}

.hero-image img:hover {
  cursor: pointer;
}

.sparkle {
  text-align: center;
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  animation: float 4s ease-in-out infinite;
  margin-top: 60px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.tick-icon {
  width: 20px;   /* ajuste la taille selon ton besoin */
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  padding: 40px 60px;
  margin-top: 48px;
}

.pricing-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: white;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: scale(1.03);
}

.pricing-card.recommended {
  background-color: rgba(0, 255, 157, 0.05);
  border: 2px solid rgba(0, 255, 157, 0.5);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00FF9D;
  color: #21252A;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 1;
}

.coming-soon-badge {
  background: #4a5568;
  color: #a0aec0;
}

.current-price.current-price--dimmed {
  font-style: italic;
  font-weight: 300;
  color: #bfc3c7;
  font-size: 1rem;
}

.pricing-button.pricing-button--disabled {
  background: #4a5568;
  color: #a0aec0;
  cursor: not-allowed;
  pointer-events: none;
  width: 100%;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: normal;
}

.pricing-button.pricing-button--disabled:hover {
  background: #4a5568;
}

.pricing-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-height: 2.5rem;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  min-height: 2.2rem;
}

.original-price {
  text-decoration: line-through;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}

.audit-sur-mesure {
  font-style: italic;
  font-weight: 300;
  color: #bfc3c7;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  text-align: left;
  flex-grow: 1; /* pousse le bouton vers le bas */
}

.feature-item {
  margin: 8px 0;
  color: white;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.feature-item.excluded {
  color: rgba(255,255,255,0.5);
}


.feature-cross {
  color: rgba(255,255,255,0.3);
  margin-right: 8px;
}

.pricing-button {
  background: #00FF9D;
  color: #21252A;
  font-weight: bold;
  border: none;
  padding: 14px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  margin-top: auto; /* aligne tous les boutons sur la même ligne basse */
}

.pricing-button:hover {
  background: #00CC82;
}

.pricing-button.disabled {
  background: #666;
  cursor: not-allowed;
}

.devis-button {
  background: #4DA6FF;
  color: #001E3C;
}

.devis-button:hover {
  background: #3399FF;
}

/* ========== SVG TOOLTIP ========== */
#Wallonie path {
  fill: #F29C1F;
  stroke: #1E1E1E;
  stroke-width: 0.33;
  cursor: pointer;
  transition: fill 0.2s, filter 0.2s;
}

#Wallonie path:hover {
  fill: #00CC82;
}

#province-tooltip {
  position: absolute;
  display: none;
  background: #120e0b7d;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  z-index: 9999;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 60px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  margin-top: 60px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-email {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 15px;
  padding: 10px 20px;
  border: 2px solid #00FF9D;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background-color: #00FF9D;
  color: #21252A;
}


/* ========== PRODUIT SECTION ========== */
.product-section {
  padding: 80px 60px;
  margin-top: 20px;
}

.product-section h2 {
  font-size: 2rem;
  margin-bottom: 56px;
  color: white;
  text-align: center;
}

/* Layout showcase : PDF à gauche, description à droite */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── Document PDF simple ── */
.pdf-doc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-doc-img {
  width: 66%;
  border-radius: 6px;
  display: block;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.15),
    0 8px 24px rgba(0,0,0,0.35),
    0 24px 64px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pdf-doc-img:hover {
  transform: scale(1.04);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.15),
    0 16px 40px rgba(0,0,0,0.4),
    0 36px 80px rgba(0,0,0,0.5);
}

.pdf-top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}

.pdf-ref {
  font-size: 7px;
  color: #999;
}

.pdf-doc-title {
  text-align: center;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #222;
  margin-bottom: 10px;
}

.pdf-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.pdf-info-cell {
  background: #fff;
  padding: 5px 6px;
}

.pdf-info-label {
  font-size: 5.5px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.pdf-info-value {
  font-size: 8px;
  font-weight: bold;
  color: #222;
}

.pdf-section-header {
  background: #f4f4f4;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 5.5px;
  font-weight: bold;
  color: #888;
  letter-spacing: 0.8px;
  padding: 3px 4px;
  margin: 10px 0 8px;
}

.pdf-diag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}

.pdf-map-placeholder {
  background: #e8f0f5;
  border-radius: 4px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.pdf-map-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d0dce6 0%, #b8cdd8 50%, #c8d8e2 100%);
  position: relative;
}

.pdf-map-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 22px;
  background: rgba(46,134,171,0.25);
  border: 1.2px solid #2E86AB;
  clip-path: polygon(30% 0%, 70% 10%, 90% 40%, 80% 80%, 20% 90%, 5% 50%);
}

.pdf-score-block {
  padding: 4px 0;
}

.pdf-score-label {
  font-size: 5.5px;
  font-weight: bold;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.pdf-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.pdf-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.pdf-dot::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pdf-dot--off::before {
  background: #e8e8e8;
  border: 1px solid #d0d0d0;
}

.pdf-dot--red::before {
  background: #c0392b;
  box-shadow: 0 1px 4px rgba(192,57,43,0.4);
}

.pdf-dot span {
  font-size: 4.5px;
  color: #bbb;
}

.pdf-dot--red span {
  color: #c0392b;
  font-weight: bold;
}

.pdf-alert {
  font-size: 5.5px;
  color: #888;
  line-height: 1.5;
}

.pdf-cat-high {
  font-size: 5.5px;
  font-weight: bold;
  color: #c0392b;
  background: #fff3f2;
  border-left: 2px solid #c0392b;
  padding: 3px 5px;
  margin-bottom: 1px;
}

.pdf-cat-normal {
  font-size: 5.5px;
  color: #aaa;
  padding: 5px 0 2px;
  letter-spacing: 0.3px;
}

.pdf-constraint-row {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  color: #444;
  padding: 3px 4px;
  border-bottom: 1px solid #f0f0f0;
}

.pdf-constraint-row.alt {
  background: #f8f8f8;
}

/* ── Description produit ── */
.product-description {
  color: white;
  padding-top: 12px;
}

.product-description h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: white;
}

.product-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-tick {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
}

.product-features li strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: white;
}

.product-features li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.product-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-cta-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.cta-product {
  display: inline-block;
  background: #00FF9D;
  color: #21252A;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.cta-product:hover {
  background: #00CC82;
}

.cta-hero {
  display: inline-block;
  background: #00FF9D;
  color: #21252A;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.cta-hero:hover {
  background: #00CC82;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  header {
    padding: 20px 30px;
    text-align: center;
  }
  header img {
    height: 60px;
  }
  .text-content {
    text-align: center;
  }
}

.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border-bottom: 1px solid #2d3748;
  padding: 4px 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e2e8f0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #00FF9D;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #a0aec0;
  padding-bottom: 16px;
}

.faq-item a {
  color: #00FF9D;
  text-decoration: none;
}

.faq-item a:hover { text-decoration: underline; }

/* ── Language switcher ── */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: white;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 0 12px;
  height: 48px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.lang-current:hover { color: #00FF9D; }

.lang-current svg { opacity: 0.5; }

body.light .lang-current { color: #1a1e24; }
body.light .lang-current:hover { color: #00AA6B; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1e2530;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 4px;
  flex-direction: column;
  gap: 2px;
  min-width: 56px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.lang-dropdown.open { display: flex; }

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
  text-align: center;
}

.lang-btn:hover { background: rgba(255,255,255,0.08); color: white; }
.lang-btn.active { color: white; background: rgba(255,255,255,0.12); }

body.light .lang-dropdown { background: white; border-color: #e2e8f0; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
body.light .lang-btn { color: rgba(0,0,0,0.4); }
body.light .lang-btn:hover { background: rgba(0,0,0,0.05); color: #1a1e24; }
body.light .lang-btn.active { background: rgba(0,0,0,0.07); color: #1a1e24; }

/* ── Theme toggle button ── */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  outline: none;
  border-radius: 999px;
}

.theme-toggle:focus-visible {
  outline: 2px solid #00FF9D;
  outline-offset: 2px;
}

.theme-toggle-track {
  display: flex;
  align-items: center;
  width: 40px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 11px;
  padding: 3px;
  transition: background 0.3s;
  border: 1px solid rgba(255,255,255,0.25);
}

.theme-toggle-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  flex-shrink: 0;
}

.toggle-icon { display: none; }
.toggle-icon--moon { display: block; }

.theme-toggle.is-light .toggle-icon--moon { display: none; }
.theme-toggle.is-light .toggle-icon--sun { display: block; }

.theme-toggle.is-light .theme-toggle-track {
  background: rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.15);
}

.theme-toggle.is-light .theme-toggle-thumb {
  transform: translateX(18px);
  color: #4a5568;
}

/* ========== LIGHT THEME ========== */
body.light {
  background-color: #f5f7fa;
  background-image: none;
  color: #1a1e24;
}

body.light .logo { filter: brightness(0); }

body.light .nav-links a { color: #1a1e24; }
body.light .nav-links a:hover { color: #00AA6B; }
body.light .theme-toggle:hover { background: rgba(0,0,0,0.06); }

body.light .text-content p.tagline { color: #4a5568; }
body.light ul.benefits { color: #2d3748; }

body.light .product-section { background: none; }
body.light .product-section h2 { color: #1a1e24; }
body.light .product-description { color: #1a1e24; }
body.light .product-description h3 { color: #1a1e24; }
body.light .product-intro { color: #4a5568; }
body.light .product-features li strong { color: #1a1e24; }
body.light .product-features li span { color: #718096; }

body.light .pricing-section { background: none; }
body.light .pricing-title { color: #1a1e24; }

body.light .pricing-card {
  background-color: white;
  border: 1px solid #cbd5e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
body.light .pricing-card.recommended {
  background-color: rgba(0, 170, 107, 0.06);
  border: 2px solid rgba(0, 150, 90, 0.45);
}
body.light .pricing-card h3 { color: #1a1e24; }
body.light .current-price { color: #1a1e24; }
body.light .feature-item { color: #2d3748; }
body.light .audit-sur-mesure { color: #718096; }

body.light .pdf-doc-img {
  box-shadow:
    0 1px 3px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.1);
}

body.light .contact-section {
  background-color: #edf2f7;
}
body.light .contact-section h2 { color: #1a1e24; }
body.light .contact-section p { color: #4a5568; }
body.light .cta-nav,
body.light .pricing-button:not(.pricing-button--disabled):not(.devis-button),
body.light .cta-product,
body.light .cta-hero {
  background-color: #00C278;
}
body.light .cta-nav:hover,
body.light .pricing-button:not(.pricing-button--disabled):not(.devis-button):hover,
body.light .cta-product:hover,
body.light .cta-hero:hover {
  background-color: #00AA6B;
}
body.light .recommended-badge:not(.coming-soon-badge) {
  background: #00C278;
}
body.light .contact-email { color: #1a1e24; border-color: #00AA6B; }
body.light .contact-email:hover { background-color: #00AA6B; color: white; }

body.light .faq-section h2 { color: #1a1e24; }
body.light .faq-item { border-bottom-color: #cbd5e0; }
body.light .faq-item summary { color: #1a1e24; font-weight: 600; }
body.light .faq-item summary::after { color: #00C278; }
body.light .faq-item p { color: #374151; }

body.light .site-footer { color: #718096; }
body.light .site-footer a { color: #718096; }
body.light .site-footer a:hover { color: #1a1e24; }

.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #4a5568;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-footer a {
  color: #4a5568;
  text-decoration: none;
}

.site-footer a:hover {
  color: #a0aec0;
}

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

  /* ── Navbar ── */
  header {
    padding: 20px 24px;
  }

  .navbar {
    justify-content: flex-start;
  }

  .logo {
    height: 22px;
  }

  .nav-links a {
    display: none;
  }

  .cta-nav {
    display: none !important;
  }

  .lang-switcher,
  .theme-toggle {
    display: none;
  }

  /* ── Hero (main) — centré verticalement dans le viewport ── */
  main {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - 62px);
    padding: 20px 24px 40px;
    gap: 0;
  }

  .hero-image {
    display: none;
  }

  .text-content {
    text-align: left;
  }

  .text-content h1 {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }

  .text-content p.tagline {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  ul.benefits {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  ul.benefits li {
    margin: 8px 0;
  }

  .mobile-cta-hero {
    display: block;
    text-align: center;
    margin-top: 4px;
  }

  /* ── Section "Notre produit" ── */
  .product-section {
    padding: 40px 20px;
  }

  .product-section h2 {
    margin-bottom: 24px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pdf-doc {
    display: none;
  }

  .product-cta {
    justify-content: flex-start;
  }

  .cta-product {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* ── Section Tarifs ── */
  .pricing-section {
    padding: 30px 20px;
  }

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

  /* ── Contact ── */
  .contact-section {
    padding: 40px 20px;
  }

  /* ── Général : padding sections ── */
  section,
  .product-section,
  .pricing-section,
  .contact-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
