/* ============================================================
   Fournisseur-Textiles.fr — Design System
   ============================================================ */

/* 1. CSS Variables */
:root {
  --ink:        #1a1a18;
  --paper:      #f5f2ec;
  --forest:     #1e4035;
  --forest-lt:  #285a49;
  --sage:       #5a8a72;
  --gold:       #c8a45a;
  --gold-lt:    #e8c97a;
  --mist:       #e8e4da;
  --white:      #ffffff;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(26,26,24,.10);
  --shadow-lg:  0 12px 48px rgba(26,26,24,.15);
  --transition: 0.25s ease;
  --max-width:  1200px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30,64,53,.12);
}
textarea { resize: vertical; min-height: 120px; }

/* 3. Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* 4. Layout Utilities */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}
.btn-forest:hover {
  background: var(--forest-lt);
  border-color: var(--forest-lt);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .875rem; }

/* 6. Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--forest);
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child { color: var(--forest); font-size: 1rem; }
.logo-text span:last-child { color: var(--gold); font-size: .9rem; }

/* 7. Main Navigation */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .9rem;
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li:hover > a {
  background: var(--paper);
  color: var(--forest);
}
.nav-arrow {
  width: 14px; height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.main-nav > li:hover .nav-arrow { transform: rotate(180deg); }
/* Aliases pour la structure HTML réelle : nav.main-nav > ul.nav-list > li.nav-item > a.nav-link */
.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .6rem .9rem; font-weight: 500; font-size: .9rem;
  color: var(--ink); border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-item:hover .nav-link,
.nav-link:hover { background: var(--paper); color: var(--forest); }
.arrow { font-size: .75rem; transition: transform var(--transition); display: inline-block; }
.nav-item:hover .arrow { transform: rotate(180deg); }
.header-cta { margin-left: 1rem; }

/* 8. Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  min-width: 480px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
/* Invisible bridge above mega-menu to prevent hover gap */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.mega-menu.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-menu.cols-1 { grid-template-columns: 1fr; }
/* Show mega menu on hover */
.nav-list > li:hover > .mega-menu,
.nav-item:hover > .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mega-col h4,
.mega-col .mega-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sage);
  margin-bottom: .75rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.mega-col a {
  display: block;
  padding: .35rem 0;
  font-size: .875rem;
  color: var(--ink);
  transition: color var(--transition), padding-left var(--transition);
}
.mega-col a:hover { color: var(--forest); padding-left: .5rem; }
.mega-title {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--sage); margin-bottom: .75rem;
  font-weight: 600; font-family: var(--font-sans);
  margin-top: 0;
}

/* 9. Hamburger / Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Hamburger animation quand le menu est ouvert */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* Fond semi-transparent derrière le menu mobile */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  cursor: pointer;
}
.mobile-overlay.open { display: block; }

/* 10. Hero Section */
.hero {
  background: var(--forest);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,164,90,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--gold); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
/* Modificateur hero pour pages internes */
.hero--inner { padding: 3.5rem 0 2.5rem; }
.hero--inner .breadcrumb { margin-bottom: 1rem; }
.hero--inner .breadcrumb a { color: rgba(255,255,255,.7); }
.hero--inner .breadcrumb li:last-child { color: rgba(255,255,255,.9); font-weight: 500; }
.hero--inner .breadcrumb li:not(:last-child)::after { color: rgba(255,255,255,.3); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* 11. Stats Bar */
.stats-bar {
  background: var(--forest-lt);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  color: var(--white);
}
.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-top: .25rem;
}
/* .stat — variante inline dans .hero--inner */
.hero--inner .stats-bar {
  display: flex; gap: 1rem; flex-wrap: wrap;
  background: transparent; border: none; padding: 0;
  margin-bottom: 1.75rem;
}
.stat {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .4rem .9rem;
  font-size: .875rem; color: var(--white);
}
.stat strong { color: var(--gold); font-family: var(--font-serif); font-size: 1.1rem; }
.stat span { color: rgba(255,255,255,.8); font-size: .8rem; }

/* 12. Cards */
.card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--sage);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--paper);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--forest);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .75rem; font-size: 1.15rem; }
.card p { font-size: .9rem; color: #555; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 600;
  font-size: .875rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .7rem; }
.card-link::after { content: '→'; }

/* 13. Section Titles */
.section-title { margin-bottom: 3rem; }
.section-title .pretitle {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sage);
  margin-bottom: .5rem;
}
.section-title h2 { margin-bottom: .75rem; }
.section-title p { color: #555; font-size: 1.05rem; max-width: 600px; }
.section-title.centered p { margin: 0 auto; }

/* 14. Trust Bar */
.trust-bar { background: var(--paper); padding: 2rem 0; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  white-space: nowrap;
}
.trust-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-logo-item {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #aaa;
  transition: color var(--transition);
}
.trust-logo-item:hover { color: var(--forest); }

/* 15. Differentiators */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.diff-item { display: flex; gap: 1rem; }
.diff-icon {
  width: 40px; height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.diff-icon svg { width: 20px; height: 20px; }
.diff-text h4 { margin-bottom: .35rem; font-size: 1rem; }
.diff-text p { font-size: .875rem; color: #555; margin: 0; }

/* 16. Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .95rem; font-style: italic; margin-bottom: 1.25rem; color: #444; }
.testimonial-author { display: flex; flex-direction: column; gap: .15rem; }
.testimonial-author strong { font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: #888; }

/* 17. Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--forest), var(--gold));
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--forest);
}
.process-step h4 { margin-bottom: .5rem; font-size: 1rem; }
.process-step p { font-size: .875rem; color: #555; }

/* 18. CTA Band */
.cta-band {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--ink); margin-bottom: .75rem; }
.cta-band p { color: rgba(26,26,24,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 19. FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-item:first-child { border-top: 1px solid var(--mist); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--sage);
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--forest); }
.faq-answer {
  padding: 0 0 1.25rem;
  color: #555;
  font-size: .95rem;
  line-height: 1.7;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* 20. Breadcrumb */
.breadcrumb {
  padding: .75rem 0;
  font-size: .85rem;
  color: #888;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: #ccc; }
.breadcrumb a { color: var(--forest); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--ink); font-weight: 500; }

/* 21. Contact Form */
.contact-form-wrapper {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrapper h3 { margin-bottom: .5rem; }
.contact-form-wrapper .form-lead { color: #666; font-size: .9rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .875rem; font-weight: 500; }
.form-group label span { color: #e53e3e; }
.form-submit { margin-top: 1rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }
.form-note { font-size: .75rem; color: #888; margin-top: .75rem; text-align: center; }
/* Section formulaire (wrapper externe) */
.form-section {
  background: var(--paper);
  padding: 4rem 0;
  text-align: center;
}
.form-section h2 { margin-bottom: .75rem; }
.form-section > .container > p {
  color: #555; font-size: 1.05rem;
  max-width: 600px; margin: 0 auto 2rem;
}
/* Formulaire de contact (l'élément <form>) */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
/* Ligne de formulaire (grille 2 colonnes) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row .form-group { margin-bottom: 0; }

/* 22. Hero Form (inline on homepage) */
.hero-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-form h3,
.hero-form h2 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: var(--forest);
}
.hero-form .form-mini-lead { font-size: .875rem; color: #666 !important; margin-bottom: 1.5rem; }
/* Reset text color inside hero-form (inherits white from .hero parent) */
.hero .hero-form { color: var(--ink) !important; }
.hero .hero-form label { color: var(--ink) !important; }
.hero .hero-form label span { color: #e53e3e !important; }
.hero .hero-form .form-note { color: #888 !important; }
.hero .hero-form p { color: #666; }
/* Form fields inside hero-form: visible on white background */
.hero .hero-form input,
.hero .hero-form textarea,
.hero .hero-form select {
  background: var(--paper) !important;
  border: 1px solid #ccc !important;
  color: var(--ink) !important;
}
.hero .hero-form input:focus,
.hero .hero-form textarea:focus,
.hero .hero-form select:focus {
  background: var(--white) !important;
  border-color: var(--forest) !important;
}

/* 23. Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  font-size: .8rem;
  margin-top: 1rem;
  color: var(--gold);
}
.footer-col h4,
.footer-col .footer-heading {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* 24. WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #25D366;
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsapp-pulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.6);
  animation: none;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}

/* 25. Page Hero (inner pages) */
.page-hero {
  background: var(--forest);
  padding: 3.5rem 0 2.5rem;
  color: var(--white);
}
.page-hero .breadcrumb { margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb li:last-child { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb li:not(:last-child)::after { color: rgba(255,255,255,.3); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero .page-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin-bottom: 1.75rem;
}
.page-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  font-size: .875rem;
}
.hero-stat strong { color: var(--gold); }

/* 26. Content Sections */
.content-section { padding: 4rem 0; }
.content-section:nth-child(even) { background: var(--paper); }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-body h2 { margin-bottom: 1.25rem; }
.content-body h3 { margin: 2rem 0 .75rem; }
.content-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.content-body ul li {
  padding-left: 1.5rem;
  position: relative;
  font-size: .95rem;
  color: #444;
}
.content-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.sticky-form { position: sticky; top: 100px; }
/* Colonnes de contenu (enfants du content-grid) */
.content-main h2 { margin-bottom: 1.25rem; }
.content-main h3 { margin: 2rem 0 .75rem; }
.content-main ul, .content-main ol {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem; list-style: none; padding-left: 0;
}
.content-main ul li {
  padding-left: 1.5rem; position: relative;
  font-size: .95rem; color: #444;
}
.content-main ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sage); font-weight: 700;
}
.content-main ol { list-style: decimal; padding-left: 1.5rem; }
.content-main ol li { padding-left: .5rem; font-size: .95rem; color: #444; list-style: decimal; }
.content-main ol li::before { display: none; }
.content-aside { position: sticky; top: 100px; }

/* 27. Sidebar Cards */
.sidebar-card {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.sidebar-card h4,
.sidebar-card .sidebar-title { color: var(--gold); margin-bottom: .5rem; }
.sidebar-card p { font-size: .875rem; color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }
/* Aside cards (colonne droite du content-grid) */
.aside-card {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.aside-card h3,
.aside-card .aside-title { color: var(--gold); margin-bottom: .5rem; font-size: 1.1rem; }
.aside-card p { font-size: .875rem; color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }
.aside-card .btn-primary { display: block; text-align: center; width: 100%; justify-content: center; }
.aside-links { display: flex; flex-direction: column; gap: 0; list-style: none; }
.aside-links li { border-bottom: 1px solid rgba(255,255,255,.1); }
.aside-links a {
  display: block; font-size: .875rem;
  color: rgba(255,255,255,.75); padding: .5rem 0;
  transition: color var(--transition);
}
.aside-links a:hover { color: var(--gold); }

/* 28. Sub-categories Grid */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.sub-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sub-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
}
.sub-card h4 { font-size: 1rem; margin-bottom: .5rem; }
.sub-card p { font-size: .8rem; color: #666; margin-bottom: .75rem; }
.sub-card-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* 29. See Also */
.see-also { background: var(--paper); padding: 3rem 0; }
.see-also h3,
.see-also .see-also-heading { margin-bottom: 1.5rem; font-family: var(--font-serif); font-size: clamp(1.2rem, 2.5vw, 1.75rem); line-height: 1.2; }
.see-also-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.see-also-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition);
}
.see-also-card:hover { border-color: var(--sage); }
.see-also-card h4,
.see-also-card .see-also-title { font-size: .9rem; margin-bottom: .35rem; color: var(--forest); font-family: var(--font-serif); font-weight: 400; }
.see-also-card p { font-size: .8rem; color: #666; }

/* 30. Merci Page */
.merci-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}
.merci-card {
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.merci-icon {
  width: 80px; height: 80px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.merci-card h1 { font-size: 2rem; margin-bottom: .75rem; }
.merci-card p { color: #555; margin-bottom: 1.5rem; }
.merci-details {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
  font-size: .875rem;
  color: #555;
}

/* 31. Ressources Page */
.ressources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ressource-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.ressource-card:hover { box-shadow: var(--shadow); }
.ressource-card-header {
  background: var(--forest);
  padding: 1.5rem;
  color: var(--white);
}
.ressource-card-header .tag {
  font-size: .75rem;
  background: rgba(255,255,255,.15);
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .5rem;
  display: inline-block;
  color: var(--gold);
}
.ressource-card-header h3 { color: var(--white); font-size: 1.1rem; }
.ressource-card-body { padding: 1.5rem; }
.ressource-card-body p { font-size: .875rem; color: #555; margin-bottom: 1rem; }

/* 32. Responsive */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sub-grid { grid-template-columns: repeat(2, 1fr); }
  .see-also-grid { grid-template-columns: repeat(2, 1fr); }
  .ressources-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .sticky-form { position: static; }
  .content-aside { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  /* Menu mobile : panneau latéral glissant */
  .main-nav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 85%; max-width: 340px;
    background: var(--white);
    z-index: 1000;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: -4px 0 20px rgba(0,0,0,.15);
    gap: 0;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 0; width: 100%; }
  .main-nav.open .nav-item { width: 100%; border-bottom: 1px solid var(--mist); }
  .main-nav.open .nav-link { display: block; padding: .9rem 0; font-size: 1rem; border-radius: 0; }
  .main-nav.open .mega-menu { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: .75rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .see-also-grid { grid-template-columns: 1fr; }
  .sub-grid { grid-template-columns: 1fr; }
  .ressources-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-logos { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrapper { padding: 1.5rem; }
  .hero-form { padding: 1.5rem; }
}

/* 32b. Hide orphan mobile-nav (legacy Batch 1-8 pages) */
.mobile-nav { display: none !important; }

/* 32c. Mega menu fallback for legacy ul.main-nav > li structure */
.main-nav > li:hover > .mega-menu { visibility: visible; opacity: 1; pointer-events: auto; }

/* 33. Utility Print */
@media print { .whatsapp-float, .site-header, .hamburger { display: none !important; } }

/* 34. Additional Components */
/* FAQ à l'intérieur d'un article */
.faq { margin: 2rem 0; }
.faq details { border-bottom: 1px solid var(--mist); }
.faq details:first-child { border-top: 1px solid var(--mist); }
.faq details summary {
  cursor: pointer; padding: 1.25rem 0; font-weight: 600;
  font-size: 1rem; list-style: none; user-select: none;
  color: var(--ink); transition: color var(--transition);
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--forest); }
.faq-body {
  padding: 0 0 1.25rem; color: #555;
  font-size: .95rem; line-height: 1.7;
  animation: fadeIn .2s ease;
}
/* Section "voir aussi" / liens connexes */
.related-section { background: var(--paper); padding: 3rem 0; }
.related-section h3 { margin-bottom: 1.5rem; }
/* Grille de cards générique */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}

/* 35. Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   36. VISUAL HARMONISATION — Cross-batch compatibility
   Ensures all page variants look identical regardless of
   which session generated them.
   ============================================================ */

/* --- Hero --inner → match .page-hero look --- */
.hero.hero--inner {
  background: var(--forest);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
}
.hero.hero--inner .hero-grid {
  display: block; /* override 2-column grid to single column */
}
.hero.hero--inner .hero-text {
  max-width: 100%;
}
.hero.hero--inner h1 { color: var(--white); margin-bottom: .75rem; }
.hero.hero--inner h1 span { color: var(--gold); }
.hero.hero--inner .breadcrumb { margin-bottom: 1rem; }
.hero.hero--inner .breadcrumb a { color: rgba(255,255,255,.7); }
.hero.hero--inner .breadcrumb li:last-child { color: rgba(255,255,255,.9); }
.hero.hero--inner .breadcrumb li:not(:last-child)::after { color: rgba(255,255,255,.3); }
.hero.hero--inner .hero-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero.hero--inner .stats-bar {
  display: flex; gap: 1rem; flex-wrap: wrap;
  background: transparent; border: none; padding: 0;
  margin-bottom: 0;
}
.hero.hero--inner .stat {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  font-size: .875rem; color: var(--white);
}
.hero.hero--inner .stat .stat-num,
.hero.hero--inner .stat strong { color: var(--gold); font-family: var(--font-serif); font-size: 1.1rem; }
.hero.hero--inner .stat .stat-label,
.hero.hero--inner .stat span:not(.stat-num) { color: rgba(255,255,255,.8); font-size: .8rem; }

/* --- Contact Section → match .form-section look --- */
.contact-section {
  background: var(--paper);
  padding: 4rem 0;
}
.contact-section .section-title {
  text-align: center;
  margin-bottom: .75rem;
}
.contact-section .section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.contact-section .contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

/* --- Form wrapper variants → uniform appearance --- */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.form-wrapper h2 {
  text-align: center;
  margin-bottom: .75rem;
}
.form-wrapper > p:first-of-type {
  text-align: center;
  color: #555;
  margin-bottom: 1.5rem;
}

/* --- Sidebar form (niche pages) → match sidebar-card style --- */
.sidebar-form {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.sidebar-form h3,
.sidebar-form h4 { color: var(--gold); margin-bottom: .5rem; font-size: 1.1rem; }
.sidebar-form p { font-size: .875rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.sidebar-form label { color: var(--white); font-size: .875rem; }
.sidebar-form input,
.sidebar-form textarea,
.sidebar-form select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
}
.sidebar-form input::placeholder,
.sidebar-form textarea::placeholder { color: rgba(255,255,255,.4); }
.sidebar-form input:focus,
.sidebar-form textarea:focus,
.sidebar-form select:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--gold);
}

/* --- Sidebar trust badge --- */
.sidebar-trust {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-trust h4 { font-size: 1rem; margin-bottom: .75rem; }
.sidebar-trust ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-trust li { font-size: .875rem; color: #444; padding-left: 1.5rem; position: relative; }
.sidebar-trust li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* --- Card grid aliases → uniform grid appearance --- */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Certification / price tier grids (niche pages) --- */
.cert-grid,
.price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.cert-card,
.price-tier {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.cert-card:hover,
.price-tier:hover {
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.cert-card h3,
.cert-card h4,
.price-tier h3,
.price-tier h4 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--forest); }
.cert-card p,
.price-tier p { font-size: .875rem; color: #555; }

/* --- FAQ section wrapper (alternate class names) --- */
.faq-section {
  padding: 4rem 0;
  background: var(--paper);
}
.faq-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* --- Page content wrapper (alternate to content-section) --- */
.page-content { padding: 4rem 0; }
.page-content:nth-child(even) { background: var(--paper); }

/* --- Sub-card title (span replacement) --- */
.sub-card .sub-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: .5rem;
  display: block;
  line-height: 1.2;
}

/* --- Ressource card title (span replacement) --- */
.ressource-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: block;
  line-height: 1.2;
}

/* --- Sidebar links (alias for .aside-links) --- */
.sidebar-links { display: flex; flex-direction: column; gap: 0; list-style: none; }
.sidebar-links li { border-bottom: 1px solid rgba(255,255,255,.1); }
.sidebar-links a {
  display: block; font-size: .875rem;
  color: rgba(255,255,255,.75); padding: .5rem 0;
  transition: color var(--transition);
}
.sidebar-links a:hover { color: var(--gold); }

/* --- Sidebar card h3 (alias for h4) --- */
.sidebar-card h3 { color: var(--gold); margin-bottom: .5rem; font-size: 1.1rem; }

/* --- Feature list --- */
.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem; padding-left: 0;
}
.feature-list li {
  padding-left: 1.5rem; position: relative;
  font-size: .95rem; color: #444;
}
.feature-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sage); font-weight: 700;
}

/* --- Benefit list (alias for feature-list) --- */
.benefit-list {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem; padding-left: 0;
}
.benefit-list li {
  padding-left: 1.5rem; position: relative;
  font-size: .95rem; color: #444;
}
.benefit-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sage); font-weight: 700;
}

/* --- Data table & comparison table --- */
.table-wrapper { overflow-x: auto; margin: 2rem 0; }
.data-table,
.comparison-table,
.price-table,
.specs-table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
}
.data-table thead,
.comparison-table thead,
.price-table thead,
.specs-table thead { background: var(--forest); color: var(--white); }
.data-table th,
.comparison-table th,
.price-table th,
.specs-table th {
  padding: .75rem 1rem; text-align: left;
  font-weight: 600; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .05em;
}
.data-table td,
.comparison-table td,
.price-table td,
.specs-table td {
  padding: .75rem 1rem; border-bottom: 1px solid var(--mist);
  color: #444;
}
.data-table tbody tr:hover,
.comparison-table tbody tr:hover,
.price-table tbody tr:hover,
.specs-table tbody tr:hover { background: var(--paper); }
.data-table tbody tr:last-child td,
.comparison-table tbody tr:last-child td,
.price-table tbody tr:last-child td,
.specs-table tbody tr:last-child td { border-bottom: none; }
.table-note { font-size: .8rem; color: #888; margin-top: .5rem; font-style: italic; }

/* --- Steps grid --- */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin: 2rem 0; position: relative;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: var(--gold);
  font-family: var(--font-serif); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.step p { font-size: .875rem; color: #555; }
.process-steps-inline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}

/* --- Segment grid --- */
.segment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}
.segment-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.segment-card:hover { box-shadow: var(--shadow); border-color: var(--sage); }
.segment-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--forest); }
.segment-card p { font-size: .875rem; color: #555; }
.segment-card a { color: var(--forest); font-weight: 600; font-size: .875rem; }

/* --- Technique grid --- */
.technique-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}
.technique-card,
.technique-item {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.technique-card:hover,
.technique-item:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.technique-card h4,
.technique-item h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--forest); }
.technique-card p,
.technique-item p { font-size: .875rem; color: #555; }
.technique-list {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem;
}
.technique-list li { padding-left: 1.5rem; position: relative; font-size: .95rem; color: #444; }
.technique-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* --- Specs grid --- */
.specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}
.spec-item {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.spec-item:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.spec-item h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--forest); }
.spec-item p { font-size: .875rem; color: #555; }

/* --- Criteria grid --- */
.criteria-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}
.criterion {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.criterion:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.criterion h3,
.criterion h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--forest); }
.criterion p { font-size: .875rem; color: #555; }

/* --- Tier cards (pricing) --- */
.tier-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.tier-card:hover { box-shadow: var(--shadow); border-color: var(--sage); }
.tier-card h3,
.tier-card h4 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--forest); }
.tier-card p { font-size: .875rem; color: #555; }
.tier-volume { font-size: .8rem; color: var(--sage); font-weight: 600; margin-bottom: .25rem; }

/* --- Use case grid --- */
.use-case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}
.use-case {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.use-case:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.use-case h3,
.use-case h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--forest); }
.use-case p { font-size: .875rem; color: #555; }

/* --- Product list / promo grid --- */
.product-list {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem;
}
.product-list li { padding-left: 1.5rem; position: relative; font-size: .95rem; color: #444; }
.product-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.product-promo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin: 2rem 0;
}
.promo-item {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.5rem;
}
.promo-item h4 { font-size: 1rem; margin-bottom: .5rem; }
.promo-item p { font-size: .875rem; color: #555; }

/* --- Regulatory / safety lists --- */
.regulatory-list,
.safety-list {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem; padding-left: 0;
}
.regulatory-list li,
.safety-list li {
  padding-left: 1.5rem; position: relative;
  font-size: .95rem; color: #444;
}
.regulatory-list li::before,
.safety-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sage); font-weight: 700;
}

/* --- Form benefits / form intro --- */
.form-benefits {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin: 1rem 0; padding-left: 0;
}
.form-benefits li {
  padding-left: 1.5rem; position: relative;
  font-size: .875rem; color: #555;
}
.form-benefits li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sage); font-weight: 700;
}
.form-intro { font-size: .95rem; color: #555; margin-bottom: 1.5rem; }

/* --- Responsive overrides for harmonisation --- */
@media (max-width: 768px) {
  .card-grid.cols-4,
  .card-grid.cols-3,
  .cert-grid,
  .price-tiers { grid-template-columns: 1fr; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .contact-section .contact-form,
  .form-wrapper { padding: 1.5rem; }
  .sidebar-form { margin-top: 2rem; }
  .steps-grid,
  .process-steps-inline { grid-template-columns: repeat(2, 1fr); }
  .segment-grid,
  .technique-grid,
  .specs-grid,
  .criteria-grid,
  .use-case-grid,
  .product-promo-grid { grid-template-columns: 1fr; }
  .data-table,
  .comparison-table,
  .price-table,
  .specs-table { font-size: .8rem; }
  .data-table th,
  .data-table td,
  .comparison-table th,
  .comparison-table td,
  .price-table th,
  .price-table td,
  .specs-table th,
  .specs-table td { padding: .5rem .75rem; }
}
