@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Inter:wght@400;500&display=swap');

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

:root {
  /* Couleur principale — vert logo RR Solutions */
  --amber: #6DC21E;
  --amber-dark: #4D8A14;
  --amber-light: #EBF7D8;

  /* Couleur orange d'origine (conservée en réserve) */
  /* --amber: #EF9F27; */
  /* --amber-dark: #BA7517; */
  /* --amber-light: #FAEEDA; */

  --anthracite: #1C1C1B;
  --gray: #4A4A48;
  --gray-light: #F5F4F0;
  --gray-mid: #E8E6DF;
  --white: #FFFFFF;
  --radius: 10px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--anthracite);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 28, 27, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--anthracite) !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--amber-dark) !important; color: #fff !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--anthracite);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover { background: var(--amber-dark); color: #fff; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--gray-mid);
  color: var(--gray);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--amber-dark); color: var(--amber-dark); }

/* ─── COMMON SECTIONS ─────────────────────── */
section { padding: 90px 5%; }

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--anthracite);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ─── PAGE HEADER (pages intérieures) ───────── */
.page-header {
  background: var(--anthracite);
  padding: 120px 5% 64px;
  position: relative;
  overflow: hidden;
}

.page-header-slats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.page-header-slat { height: 1px; background: rgba(239,159,39,0.10); }

.page-header-content { position: relative; z-index: 2; }
.page-header .section-label { color: var(--amber); }
.page-header .section-title { color: var(--white); font-size: clamp(36px, 5vw, 60px); }
.page-header .section-intro { color: rgba(255,255,255,0.6); margin-bottom: 0; }

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--anthracite);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5% 60px;
}

.hero-slats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.hero-slat { height: 1px; background: rgba(239,159,39,0.12); }

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--amber);
  padding-left: 12px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hero h1 em { font-style: normal; color: var(--amber); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-logo {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.92;
}

.hero-logo img {
  width: clamp(440px, 46vw, 660px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(109,194,30,0.20));
}

.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  display: flex;
  z-index: 2;
}

.hero-stat {
  background: rgba(239,159,39,0.10);
  border-top: 1px solid rgba(239,159,39,0.2);
  border-left: 1px solid rgba(239,159,39,0.2);
  padding: 20px 32px;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

/* ─── SERVICES ────────────────────────────── */
.services-section { background: var(--gray-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--amber-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--anthracite);
}

.service-card p { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* ─── BENEFITS ────────────────────────────── */
.benefits-section { background: var(--anthracite); }
.benefits-section .section-title { color: var(--white); }
.benefits-section .section-intro { color: rgba(255,255,255,0.55); }
.benefits-section .section-label { color: var(--amber); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.benefit-item { background: var(--anthracite); padding: 1.25rem; transition: background 0.2s; }
.benefit-item:hover { background: rgba(239,159,39,0.07); }

.benefit-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.benefit-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.benefit-item p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ─── REALIZATION ──────────────────────────── */
.realization-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.img-placeholder {
  background: var(--gray-light);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}

.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder.tall { grid-row: span 2; aspect-ratio: unset; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray);
}

.check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px; min-width: 18px;
  background: var(--amber-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BA7517' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ─── ZONES ───────────────────────────────── */
.zones-section { background: var(--gray-light); }

.zones-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.zone-tag {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

.zone-tag.active {
  background: var(--amber-light);
  border-color: var(--amber);
  color: var(--amber-dark);
}

a.zone-tag {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

a.zone-tag:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--anthracite);
}

/* ─── CTA BANNER ──────────────────────────── */
.cta-banner {
  background: var(--amber);
  text-align: center;
  padding: 70px 5%;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(28,28,27,0.7);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.btn-dark {
  display: inline-block;
  background: var(--anthracite);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-dark:hover { background: var(--gray); }

/* ─── PRODUCTS PAGE ───────────────────────── */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn:hover { border-color: var(--amber); color: var(--amber-dark); }
.filter-btn.active { background: var(--amber); border-color: var(--amber); color: var(--anthracite); font-weight: 600; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  min-height: 200px;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-4px); }

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--anthracite);
  background: var(--amber);
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card-img {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card-img.img-contain img { object-fit: contain; padding: 0; }

.product-card-img-placeholder {
  color: var(--gray);
  font-size: 13px;
  text-align: center;
  padding: 1rem;
}

.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.product-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--anthracite);
}

.product-card p { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; }

.product-card-footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-mid);
}

.product-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--anthracite);
}

.product-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── PRODUCT DETAIL ──────────────────────── */
.detail-wrap {
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.detail-media { position: sticky; top: 84px; }

.detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  background: var(--gray-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.detail-img.img-contain img { object-fit: contain; padding: 0; }

.detail-img-placeholder { color: var(--gray); font-size: 14px; text-align: center; padding: 2rem; }

.detail-thumbs { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }

.detail-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--gray-light);
  flex-shrink: 0;
  transition: border-color 0.2s;
}

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

.detail-thumb.img-contain img { object-fit: contain; padding: 4px; }

.detail-thumb:hover { border-color: var(--amber-light); }
.detail-thumb.active { border-color: var(--amber); }

.detail-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.detail-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--anthracite);
  background: var(--amber);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
}

.detail-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--anthracite);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.detail-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 1rem;
}

.detail-desc { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 2rem; }

.detail-avantages-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--anthracite);
  margin-bottom: 0.75rem;
}

.detail-pictogram {
  max-width: 320px;
  margin: 1.5rem 0 0;
}

.detail-pictogram img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
}

.detail-price-box {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-price-label { font-size: 14px; color: var(--gray); }
.detail-price-value { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--anthracite); }

.detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.detail-back:hover { color: var(--amber-dark); }

/* ─── ABOUT ───────────────────────────────── */
.about-intro {
  max-width: 860px;
}

.about-intro::after {
  content: '';
  display: block;
  clear: both;
}

.about-photo {
  float: right;
  width: 140px;
  aspect-ratio: 3/4;
  margin: 0 0 1rem 1.5rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

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

.about-values { background: var(--gray-light); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
}

.value-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--anthracite);
}

.value-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── CONTACT PAGE ────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.contact-detail svg {
  width: 20px; height: 20px;
  stroke: var(--amber-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

a.contact-detail:hover { color: var(--amber-dark); }

/* ─── FORM ────────────────────────────────── */
.form-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }

.form-group label { font-size: 13px; font-weight: 600; color: var(--anthracite); letter-spacing: 0.02em; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--anthracite);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4A48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

.form-radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  color: var(--gray);
}

.form-radio-group input[type="radio"] { accent-color: var(--amber); width: 16px; height: 16px; }

.choice-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 100%; }

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  max-width: 100%;
  min-width: 0;
}

.choice-card span { overflow-wrap: break-word; min-width: 0; }

.choice-card input { position: absolute; opacity: 0; width: 0; height: 0; }

.choice-card:hover { border-color: var(--amber); }

.choice-card:has(input:checked) {
  border-color: var(--amber);
  background: var(--amber-light);
  color: var(--anthracite);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--amber);
  color: var(--anthracite);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.submit-btn:hover { background: var(--amber-dark); color: #fff; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: #2e7d32;
}

.form-success strong { display: block; font-size: 20px; margin-bottom: 0.5rem; }
.form-success p { font-size: 15px; color: #388e3c; }

.form-error-msg {
  display: none;
  background: #fce4ec;
  border: 1px solid #f48fb1;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: #c62828;
  font-size: 14px;
  margin-top: 1rem;
}

/* ─── DOCUMENTATION PAGE ──────────────────── */
.doc-toggle {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.doc-toggle-option {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  background: var(--anthracite);
  color: var(--white);
}

.doc-toggle-option:hover { background: var(--amber-dark); color: var(--white); border: none; }

.doc-toggle-option:has(input:checked) {
  background: var(--amber);
  border: none;
  color: var(--anthracite);
}

.doc-panel .section-intro { max-width: none; text-align: justify; }

.doc-quote {
  border-left: 3px solid var(--amber);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 15px;
  font-style: italic;
  color: var(--anthracite);
  line-height: 1.7;
}

.doc-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 13px;
  font-style: normal;
  color: var(--gray);
}

.insect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.insect-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.insect-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }

.insect-card-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--amber-light), var(--gray-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.insect-card-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.insect-card-visual svg {
  width: 56px; height: 56px;
  stroke: var(--amber-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insect-card-body { padding: 1.75rem 2rem 2rem; }

.insect-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--anthracite);
}

.insect-card p { font-size: 15px; color: var(--gray); line-height: 1.6; text-align: justify; }

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

/* ─── LEGAL ───────────────────────────────── */
.legal-content { max-width: 780px; }

.legal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--anthracite);
  margin: 2.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 0.5rem; }

.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }

/* ─── LOADING ─────────────────────────────── */
.loading { text-align: center; padding: 4rem; color: var(--gray); font-size: 15px; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--anthracite);
  padding: 48px 5%;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
}

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

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.35rem;
}

.footer-logo span { color: var(--amber); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 13px;
}

footer a { color: var(--amber); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1.25rem 0; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .realization-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .detail-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .detail-media { position: static; }

  .hero-logo { display: none; }
  .hero-stats { position: static; flex-wrap: wrap; margin-top: 3rem; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  section { padding: 60px 5%; }

  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(28,28,27,0.98);
    padding: 0.5rem 5% 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-cta { margin: 0.75rem 0 !important; text-align: center !important; display: block !important; padding: 12px !important; border-radius: 8px !important; }

  .form-row { grid-template-columns: 1fr; }
  .hero-stat { flex: 1; min-width: 120px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .filter-btn { padding: 6px 14px; font-size: 13px; }
  .page-header { padding: 100px 5% 48px; }
}

/* ─── FRANCE MAP ──────────────────────────── */
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.france-map-svg {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}

.france-map-svg .france-bg {
  fill: var(--gray-mid);
  stroke: rgba(74,74,72,0.5);
  stroke-width: 1;
  stroke-linejoin: round;
}

.france-map-svg .zone {
  fill: var(--amber);
  fill-opacity: 0.9;
  stroke: var(--amber-dark);
  stroke-width: 0.6;
  stroke-linejoin: round;
}

.france-map-svg .zone-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  fill: var(--anthracite);
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.france-map-svg .paris-dot { fill: rgba(28,28,27,0.6); }

.france-map-svg .paris-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  fill: rgba(28,28,27,0.55);
  dominant-baseline: middle;
  font-style: italic;
}

.map-legend-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}

.legend-dot {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--amber);
  flex-shrink: 0;
}

.map-note { font-size: 13px; color: var(--gray); margin-top: 1.25rem; font-style: italic; line-height: 1.5; }

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .map-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .france-map-svg { max-width: 280px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
