/* ══════════════════════════════════
   IMMOCONFORM — Shared Styles
   Palette: #041C58 #0D3379 #1E54A8 #3A7FD6 #4498F0
   ══════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Open+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --ic-900:  #041C58;
  --ic-800:  #0D3379;
  --ic-700:  #1E54A8;
  --ic-500:  #3A7FD6;
  --ic-300:  #4498F0;
  --ic-100:  #D6E8FC;
  --ic-50:   #EEF5FD;
  --grey-900:#1A1A2E;
  --grey-700:#595959;
  --grey-400:#8A8A9A;
  --grey-200:#E4E8F0;
  --grey-100:#F5F7FA;
  --white:   #FFFFFF;
  --green:   #3F8C70;
  --amber:   #F19D19;
  --orange:  #F26515;
  --red:     #E03B3B;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(4,28,88,.07);
  --shadow:    0 4px 24px rgba(4,28,88,.10);
  --shadow-lg: 0 12px 48px rgba(4,28,88,.16);
  --shadow-card: 0 18px 48px rgba(4,28,88,.10);
  --shadow-lift: 0 26px 64px rgba(4,28,88,.16);
  --accent-warm: #F26515;
  --accent-soft: #F7FBFF;

  --font-head: 'Barlow', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background:
    linear-gradient(180deg, #fff 0, #fff 520px, #F8FBFF 900px, #fff 1260px);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: clip;
}
img, svg, video, canvas { max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; color: var(--ic-900); }
h1 { font-size: clamp(30px,4.5vw,54px); font-weight: 800; }
h2 { font-size: clamp(22px,3vw,38px); }
h3 { font-size: clamp(17px,2vw,22px); }
p { color: var(--grey-700); text-wrap: pretty; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  border: 2px solid transparent; white-space: nowrap;
  max-width: 100%; min-width: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: -40% auto -40% -54%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg);
  transition: left .45s ease;
  pointer-events: none;
  z-index: 1;
}
.btn:hover::after { left: 112%; }
.btn-primary {
  background: linear-gradient(135deg, var(--ic-700), var(--ic-800)); color: var(--white); padding: 13px 26px;
  border-color: var(--ic-700);
  box-shadow: 0 10px 26px rgba(30,84,168,.20);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--ic-800), var(--ic-900)); border-color: var(--ic-800); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(30,84,168,.32); }
.btn-outline {
  background: rgba(255,255,255,.72); color: var(--ic-700); padding: 12px 24px;
  border-color: rgba(30,84,168,.45);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--ic-700); border-color: var(--ic-700); color: white; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30,84,168,.18); }
.btn-white {
  background: white; color: var(--ic-800); padding: 13px 26px;
  box-shadow: 0 12px 26px rgba(4,28,88,.12);
}
.btn-white:hover { background: var(--ic-50); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(4,28,88,.18); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: white; padding: 12px 24px;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-lg { font-size: 17px; padding: 15px 32px; border-radius: var(--radius-sm); }
.btn-sm { font-size: 13px; padding: 8px 16px; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container > *,
.header-main > *,
.hero-grid > *,
.expert-grid > *,
.profile-layout > * { min-width: 0; }
section { padding: 80px 0; }
section {
  position: relative;
  overflow: clip;
}
section:nth-of-type(even):not(.hero):not(.cta-strip):not(.page-hero) {
  background:
    linear-gradient(180deg, rgba(238,245,253,.42), rgba(255,255,255,0) 46%),
    var(--accent-soft);
}
.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ic-500); margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--ic-300));
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; max-width: 780px; }
.section-header p { font-size: 17px; color: var(--grey-700); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center h2 { margin-left: auto; margin-right: auto; }
.section-header.center p { margin: 0 auto; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(228,232,240,.78);
  box-shadow: 0 10px 34px rgba(4,28,88,.08);
  backdrop-filter: blur(14px);
}
.header-main {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 10px 24px; gap: 18px;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.nav-toggle { display: none; }
.nav-toggle-btn { display: none; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 2px; }
.main-nav a {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--grey-700); text-decoration: none; padding: 7px 14px;
  border-radius: var(--radius-sm); transition: all .18s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--ic-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover { color: var(--ic-700); background: var(--ic-50); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--ic-700); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions a[href^="tel:"]::before,
.cta-strip a[href^="tel:"]::before {
  content: '';
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.57 2.61a2 2 0 0 1-.45 2.11L8 9.67a16 16 0 0 0 6.33 6.33l1.23-1.23a2 2 0 0 1 2.11-.45c.84.25 1.71.45 2.61.57A2 2 0 0 1 22 16.92Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.57 2.61a2 2 0 0 1-.45 2.11L8 9.67a16 16 0 0 0 6.33 6.33l1.23-1.23a2 2 0 0 1 2.11-.45c.84.25 1.71.45 2.61.57A2 2 0 0 1 22 16.92Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── HERO ── */
.hero {
  min-height: 360px;
  background:
    radial-gradient(circle at 16% 18%, rgba(63,140,112,.16), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 30%, rgba(255,255,255,.28) 48%, rgba(255,255,255,0) 64%),
    linear-gradient(135deg, rgba(238,245,253,.66) 0%, rgba(255,255,255,.16) 36%, rgba(68,152,240,0) 100%),
    url('assets/hero-lyon-panorama.png') right center / cover no-repeat;
  position: relative; overflow: hidden; padding: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto auto -40px -40px;
  width: min(34vw, 390px);
  height: 240px;
  background:
    linear-gradient(135deg, transparent 0 50%, rgba(68,152,240,.13) 50% 68%, transparent 68%),
    linear-gradient(135deg, transparent 0 40%, rgba(30,84,168,.09) 40% 54%, transparent 54%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.88));
  opacity: .06;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 560px) 1fr;
  gap: 48px; align-items: center;
  min-height: 360px;
  max-width: 1180px; margin: 0 auto; padding: 52px 24px 56px;
  position: relative; z-index: 1;
}
.hero-content { padding: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4AE8A0; flex-shrink: 0; }
.hero-content h1 {
  color: var(--ic-900);
  margin-bottom: 18px;
  font-size: clamp(30px,4vw,45px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 10px 32px rgba(255,255,255,.82);
}
.hero-content h1 span { font-weight: 500; }
.hero-content h1 em,
.hero-content h1 span:last-child {
  font-style: normal;
  color: var(--ic-700);
}
.hero-sub {
  font-size: 15px;
  color: var(--grey-700);
  margin-bottom: 30px;
  max-width: 560px;
  line-height: 1.65;
  padding-left: 18px;
  border-left: 4px solid rgba(63,140,112,.34);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.htrust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--grey-700); }
.htrust-item .check { color: #4AE8A0; font-size: 16px; }

.hero-photo-wrap {
  align-self: end; border-radius: 18px 18px 0 0; overflow: hidden;
  box-shadow: 0 -8px 40px rgba(4,28,88,.4);
}
.photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--ic-500) 0%, var(--ic-700) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.6); font-family: monospace; font-size: 12px;
}
.photo-placeholder svg { opacity: .5; }
.photo-placeholder .photo-label { text-align: center; line-height: 1.6; }

/* ── SITUATION CARDS ── */
.sit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.sit-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.96));
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-card); border: 1.5px solid rgba(30,84,168,.12);
  transition: all .22s; cursor: pointer; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.sit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ic-700), var(--green)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.sit-card::after {
  content: '';
  position: absolute;
  right: -46px;
  top: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,127,214,.16), rgba(58,127,214,0) 68%);
  transition: transform .28s ease, opacity .28s ease;
  opacity: .65;
}
.sit-card:hover::before { transform: scaleX(1); }
.sit-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-lift); border-color: rgba(58,127,214,.32); }
.sit-card:hover::after { transform: scale(1.16); opacity: 1; }
.sit-card.selected { border-color: var(--ic-700); }
.sit-card.selected::before { transform: scaleX(1); }
.sit-icon-wrap {
  width: 116px; height: 116px; border-radius: 28px; background: transparent;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--ic-700);
  border: 0;
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.sit-icon-wrap img {
  width: 116px;
  height: 116px;
  display: block;
  object-fit: contain;
  image-rendering: auto;
}
.sit-card:hover .sit-icon-wrap {
  transform: translateY(-2px);
  box-shadow: none;
}
.project-sale .sit-icon-wrap {
  color: var(--ic-700);
}
.project-rent .sit-icon-wrap {
  color: var(--green);
}
.project-renovation .sit-icon-wrap {
  color: var(--ic-800);
}
.sit-card h3 { font-size: 19px; margin-bottom: 10px; }
.sit-card p { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.sit-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; min-height: 58px; align-content: flex-start; }
.tag {
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  background: var(--ic-50); color: var(--ic-700);
}
.sit-cta { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ic-700); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; margin-top: auto; }
.sit-cta:hover { color: var(--ic-800); transform: translateX(3px); }
.sit-pack { margin-top: auto; }
.project-card {
  position: relative;
  overflow: hidden;
}
.project-card > * {
  position: relative;
  z-index: 1;
}
.packs-complets {
  margin-top: 48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.pricing-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
.pricing-pack-card {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid rgba(31,95,184,.18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pricing-pack-card:hover {
  border-color: var(--ic-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pricing-pack-card.featured {
  background: var(--ic-900);
  color: white; position: relative; box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,.28);
}
.pricing-pack-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--ic-900); font-family: var(--font-head);
  font-weight: 700; font-size: 12px; padding: 5px 16px; border-radius: 100px; white-space: nowrap;
  z-index: 2;
}
.pricing-pack-title {
  font-family: var(--font-head); font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ic-700); margin-bottom: 12px;
  padding-right: 0;
}
.pricing-pack-price {
  font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--ic-900);
  margin-bottom: 4px;
  line-height: 1.08;
}
.pricing-pack-price span { font-size: 16px; font-weight: 500; color: var(--grey-400); }
.pricing-pack-note {
  font-size: 13px;
  color: var(--grey-400);
  margin-bottom: 20px;
  line-height: 1.45;
}
.pricing-pack-card .checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  flex: 1;
}
.pricing-pack-card .check-item {
  display: block;
  min-width: 0;
  padding-left: 30px;
  color: var(--grey-700);
  font-size: 14px;
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.pricing-pack-card .check-item::before {
  top: .1em;
}
.pricing-pack-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  white-space: normal;
  text-align: center;
}
.pricing-pack-card.featured .pricing-pack-title { color: var(--ic-300); }
.pricing-pack-card.featured .pricing-pack-price { color: white; }
.pricing-pack-card.featured .pricing-pack-price span,
.pricing-pack-card.featured .pricing-pack-note { color: rgba(255,255,255,.5); }
.pricing-pack-card.featured .check-item { color: rgba(255,255,255,.8); }
.pricing-pack-card.featured .check-item::before {
  color: #4AE8A0;
  background: rgba(74,232,160,.14);
}

/* ── STATS BAR ── */
.stats-bar {
  background:
    radial-gradient(circle at 12% 0, rgba(68,152,240,.24), transparent 28%),
    linear-gradient(135deg, var(--ic-900), #062A72 60%, #0A604C);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-item {
  text-align: center; padding: 18px 16px;
  border-radius: 16px;
  transition: transform .2s ease, background .2s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}
.stat-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: white; letter-spacing: -.03em; }
.stat-num sup { font-size: 24px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }

.expert-photo-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; background: linear-gradient(160deg, var(--ic-50), white); aspect-ratio: 1 / 1.08;
  transition: transform .25s ease, box-shadow .25s ease;
}
.expert-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.expert-photo-card img {
  width: 88%; height: 100%; object-fit: contain; object-position: center top;
  display: block; margin: 0 auto;
}
.expert-photo-card::after {
  content: ''; position: absolute; inset: 46% 0 0;
  background: linear-gradient(180deg, rgba(4,28,88,0), rgba(4,28,88,.92));
  pointer-events: none;
}
.expert-photo-caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1;
  background: rgba(4,28,88,.86); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 14px 16px; backdrop-filter: blur(10px);
}
.expert-photo-name {
  font-family: var(--font-head); font-weight: 800; font-size: 17px; color: white;
}
.expert-photo-role {
  font-size: 13px; color: rgba(255,255,255,.72); margin-top: 3px;
}
.expert-photo-tags {
  display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap;
}
.expert-photo-tags span {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.84);
  font-size: 11px; padding: 3px 9px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600;
}
.profile-photo-panel {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--ic-50), white); aspect-ratio: 1 / 1.08;
  transition: transform .25s ease, box-shadow .25s ease;
}
.profile-photo-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.profile-photo-panel img {
  width: 88%; height: 100%; object-fit: contain; object-position: center top; display: block; margin: 0 auto;
}
.profile-layout { display: grid; grid-template-columns: minmax(280px, 330px) minmax(0, 1fr); gap: 64px; align-items: start; }
.profile-sidebar { position: sticky; top: 100px; }
.profile-card-grid,
.profile-commit-grid,
.diagnostic-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.diagnostic-pack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

/* ── CARDS ── */
.card {
  background:
    linear-gradient(180deg, #fff, #F9FCFF);
  border-radius: var(--radius);
  border: 1px solid rgba(30,84,168,.12);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--ic-700), var(--green));
  opacity: 0;
  transition: opacity .22s ease;
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
  border-color: rgba(58,127,214,.26);
}
.card:hover::before { opacity: 1; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(30,84,168,.1);
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.stars { color: #FFC107; font-size: 15px; letter-spacing: 1px; margin-bottom: 14px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--grey-700); font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ic-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: white; flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--ic-900); }
.reviewer-meta { font-size: 12px; color: var(--grey-400); }

/* ── RSE ── */
.rse-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 56px; align-items: start;
}
.rse-lead {
  font-size: 17px; line-height: 1.8; color: var(--grey-700); margin-top: 14px; margin-bottom: 30px;
}
.rse-commitments {
  display: grid; gap: 14px;
}
.rse-commitments article {
  display: grid; grid-template-columns: 46px 1fr; gap: 16px;
  background: white; border: 1px solid var(--grey-200); border-radius: 14px; padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rse-commitments article:hover {
  transform: translateY(-3px);
  border-color: rgba(63,140,112,.28);
  box-shadow: var(--shadow-card);
}
.rse-commitments span {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--ic-50); color: var(--ic-700); font-family: var(--font-head); font-weight: 900; font-size: 13px;
}
.rse-commitments h3 {
  font-size: 18px; color: var(--ic-900); margin-bottom: 5px;
}
.rse-commitments p {
  color: var(--grey-700); line-height: 1.65; font-size: 14px;
}
.rse-panel {
  position: sticky; top: 100px; border-radius: 18px; padding: 30px;
  background:
    radial-gradient(circle at 95% 0, rgba(63,140,112,.36), transparent 34%),
    linear-gradient(160deg, var(--ic-900), var(--ic-800));
  color: white;
  box-shadow: var(--shadow-lg);
}
.rse-panel-icon {
  width: 58px; height: 58px; border-radius: 16px; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; color: #4AE8A0;
  font-size: 30px; margin-bottom: 18px;
}
.rse-panel h3 {
  color: white; font-size: 25px; margin-bottom: 12px;
}
.rse-panel p {
  color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 24px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(30,84,168,.12);
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  box-shadow: 0 10px 24px rgba(4,28,88,.045);
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4,28,88,.08);
}
.faq-item.open { border-color: var(--ic-300); box-shadow: var(--shadow-card); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ic-900);
}
.faq-q:hover { color: var(--ic-700); }
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%; background: var(--ic-50);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, transform .25s; color: var(--ic-700); font-size: 18px; font-weight: 400;
}
.faq-item.open .faq-toggle { background: var(--ic-700); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 24px; font-size: 14.5px; color: var(--grey-700); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 720px; padding: 4px 24px 22px; }

/* ── ZONE ── */
.ic-zone-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fd 52%, #fff 100%);
  overflow: hidden;
}
.ic-zone-header {
  max-width: 850px; margin: 0 auto 36px; text-align: center;
}
.ic-zone-header h2 {
  margin-top: 10px; color: var(--ic-900);
}
.ic-zone-header p {
  color: var(--grey-700); font-size: 17px; line-height: 1.7; margin-top: 12px;
}
.ic-zone-layout {
  display: grid; grid-template-columns: minmax(340px, .88fr) minmax(0, 1.25fr);
  gap: 34px; align-items: stretch;
}
.ic-zone-map-card {
  position: relative; overflow: hidden; min-height: 520px;
  border-radius: 18px; border: 1px solid rgba(31,95,184,.16);
  background: #edf4fb; box-shadow: 0 26px 70px rgba(13,46,99,.14);
  margin: 0;
}
.ic-zone-map-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(255,255,255,.52) 100%);
}
.ic-zone-map-card img {
  width: 100%; height: auto; object-fit: contain; object-position: center;
  display: block;
}
.ic-zone-map-legend {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 4;
  display: flex; gap: 10px; flex-wrap: wrap; padding: 13px 14px;
  background: rgba(255,255,255,.94); border: 1px solid rgba(31,95,184,.14);
  border-radius: 12px; box-shadow: 0 14px 30px rgba(13,46,99,.12);
}
.ic-zone-map-legend span {
  display: inline-flex; align-items: center; gap: 7px; color: var(--ic-900);
  font-size: 12px; font-weight: 800;
}
.ic-zone-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.ic-zone-dot-priority { background: #084d99; }
.ic-zone-dot-expanded { background: transparent; border: 2px dashed #3a7fd6; }
.ic-zone-content {
  background:
    linear-gradient(180deg, #fff, #F8FBFF);
  border: 1px solid rgba(31,95,184,.14); border-radius: 18px;
  padding: 30px; box-shadow: var(--shadow-card);
}
.ic-zone-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--ic-700);
}
.ic-zone-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #20c997;
  box-shadow: 0 0 0 5px rgba(32,201,151,.13);
}
.ic-zone-content h3 { font-size: clamp(24px, 2.2vw, 32px); line-height: 1.15; color: var(--ic-900); margin-bottom: 14px; }
.ic-zone-content > p { color: var(--grey-700); line-height: 1.7; margin-bottom: 20px; }
.ic-zone-levels { display: grid; gap: 10px; margin-bottom: 22px; }
.ic-zone-level {
  display: grid; grid-template-columns: 38px 1fr; column-gap: 12px;
  padding: 14px; border-radius: 12px; background: var(--grey-100); border: 1px solid var(--grey-200);
}
.ic-zone-level span {
  grid-row: span 2; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; background: white; color: var(--ic-700);
  font-family: var(--font-head); font-size: 12px; font-weight: 900;
}
.ic-zone-level strong { color: var(--ic-900); font-family: var(--font-head); font-size: 14px; }
.ic-zone-level p { color: var(--grey-600); font-size: 13px; line-height: 1.45; margin-top: 3px; }
.ic-zone-level-priority { background: var(--ic-50); border-color: rgba(31,95,184,.18); }
.ic-zone-eco-card {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px;
  margin-bottom: 22px; padding: 16px; border-radius: 14px;
  background: linear-gradient(135deg, #f1fbf5, #f8fbff);
  border: 1px solid rgba(32,201,151,.26); color: var(--ic-900); text-decoration: none;
  box-shadow: 0 12px 26px rgba(13,46,99,.06); transition: transform .18s, border-color .18s, box-shadow .18s;
}
.ic-zone-eco-card:hover {
  transform: translateY(-2px); border-color: rgba(32,201,151,.46); box-shadow: 0 18px 34px rgba(13,46,99,.1);
}
.ic-zone-eco-icon {
  width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: white; color: var(--green); font-family: var(--font-head); font-size: 22px; font-weight: 900;
}
.ic-zone-eco-card strong {
  display: block; font-family: var(--font-head); font-size: 15px; color: var(--ic-900); margin-bottom: 3px;
}
.ic-zone-eco-card em {
  display: block; font-style: normal; color: var(--grey-700); font-size: 13px; line-height: 1.45;
}
.ic-zone-eco-card b {
  color: var(--ic-700); font-family: var(--font-head); font-size: 13px; white-space: nowrap;
}
.ic-zone-search {
  padding: 16px; border-radius: 14px; background: #f8fbff; border: 1px solid rgba(31,95,184,.12);
}
.ic-zone-search label {
  display: block; margin-bottom: 8px; color: var(--ic-900); font-family: var(--font-head); font-size: 13px; font-weight: 800;
}
.ic-zone-search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.ic-zone-search input {
  min-width: 0; height: 44px; border: 1.5px solid var(--grey-200); border-radius: 10px;
  padding: 0 13px; color: var(--ic-900); background: white; font: inherit;
}
.ic-zone-search input:focus {
  outline: none; border-color: var(--ic-700); box-shadow: 0 0 0 4px rgba(31,95,184,.1);
}
.ic-zone-search .btn-secondary {
  background: var(--ic-700); color: white; border-color: var(--ic-700);
}
.ic-zone-search .btn-secondary:hover {
  background: var(--ic-800); border-color: var(--ic-800);
}
.ic-zone-result {
  margin-top: 11px; padding: 11px 12px; border-radius: 10px; background: white;
  color: var(--grey-700); font-size: 13px; line-height: 1.5; border: 1px solid var(--grey-200);
}
.ic-zone-result-priority { color: #0f5132; background: #eefbf5; border-color: rgba(32,201,151,.32); }
.ic-zone-result-expanded { color: var(--ic-900); background: var(--ic-50); border-color: rgba(31,95,184,.22); }
.ic-zone-result-request { color: #5f3800; background: #fff8ec; border-color: rgba(246,107,14,.22); }
.ic-zone-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ic-zone-actions .btn-ghost {
  background: white; color: var(--ic-700); border-color: rgba(31,95,184,.25);
}
.ic-zone-actions .btn-ghost:hover {
  background: var(--ic-50); border-color: var(--ic-700); color: var(--ic-900);
}

.ic-zone {
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 42%, #eef6ff 100%);
  padding: 92px 0;
  overflow: hidden;
}
.anchor-compat {
  display: block;
  position: relative;
  top: -90px;
  height: 0;
  visibility: hidden;
}
.ic-zone-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}
.ic-zone-copy {
  max-width: 620px;
}
.ic-zone-copy h2 {
  color: #102A43;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  margin-top: 10px;
  margin-bottom: 20px;
}
.ic-zone-copy p {
  color: var(--grey-700);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.ic-zone .ic-zone-actions {
  justify-content: flex-start;
  margin-top: 28px;
}
.ic-zone-map-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(16,42,67,.10);
  border: 1px solid rgba(29,78,216,.13);
  background: white;
  margin: 0;
  min-height: 0;
}
.ic-zone-map-card::after {
  display: none;
}
.ic-zone-map {
  width: 100%;
  display: block;
  object-fit: cover;
  opacity: .88;
  filter: saturate(.86) contrast(.96);
  transition: transform .45s ease;
}
.ic-zone-map-card:hover .ic-zone-map {
  transform: scale(1.02);
}
.ic-zone-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(29,78,216,.10);
}
.ic-zone-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #102A43;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
}
.ic-zone-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ic-dot-blue { background: #1D4ED8; }
.ic-dot-green { background: #16A34A; }
.ic-dot-line { background: transparent; border: 2px solid #1D4ED8; }
.ic-dot-pin { background: white; border: 3px solid #16A34A; }
.ic-zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(29,78,216,.10);
  box-shadow: 0 18px 48px rgba(16,42,67,.08);
}
.ic-city-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 100px;
  background: white;
  border: 1px solid rgba(29,78,216,.14);
  color: #102A43;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16,42,67,.05);
}
.ic-zone-eco {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.ic-eco-card {
  background: white;
  border: 1px solid rgba(22,163,74,.18);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(16,42,67,.08);
}
.ic-eco-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eefbf3;
  color: #16A34A;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}
.ic-eco-card h3 {
  color: #102A43;
  font-size: 19px;
  margin-bottom: 8px;
}
.ic-eco-card p {
  color: var(--grey-700);
  line-height: 1.6;
  font-size: 14px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background:
    radial-gradient(circle at 20% 0, rgba(68,152,240,.28), transparent 32%),
    radial-gradient(circle at 80% 100%, rgba(63,140,112,.26), transparent 30%),
    linear-gradient(135deg, var(--ic-900), var(--ic-700));
  padding: 70px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, rgba(4,28,88,.68) 0%, transparent 60%);
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { color: white; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 17px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background:
    radial-gradient(circle at 10% 0, rgba(68,152,240,.18), transparent 28%),
    linear-gradient(180deg, #041C58, #021338);
  color: rgba(255,255,255,.65);
  padding: 68px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand img {
  height: 50px; width: auto; filter: none; margin-bottom: 16px;
  background: white; border-radius: 10px; padding: 8px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.5); margin-top: 10px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s, transform .18s; }
.footer-links a:hover { color: white; transform: translateX(3px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-contact { margin-top:16px; font-size:13px; color:rgba(255,255,255,.45); line-height:1.9; }
.footer-contact a { color:inherit; text-decoration:none; }
.footer-c6s {
  display:flex; align-items:center; gap:10px;
  margin-top:20px; padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:12px; color:rgba(255,255,255,.35); letter-spacing:.02em;
}
.footer-c6s-logo { height:26px; width:auto; border-radius:6px; opacity:.55; }

/* ── PROTOCOL TIMELINE ── */
.protocol-outer { position:relative; height:calc(100vh + 2600px); }
.protocol-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: linear-gradient(140deg, #041C58 0%, #0D3379 55%, #1b4fa0 100%);
  display: flex; flex-direction: column;
}
.protocol-sticky::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 800px 600px at 20% 110%, rgba(68,152,240,.14), transparent),
    radial-gradient(ellipse 600px 400px at 80% -10%, rgba(30,84,168,.22), transparent);
}
.protocol-header {
  position:relative; z-index:1;
  text-align:center; padding:44px 24px 28px; flex-shrink:0;
}
.protocol-header h2 { color:white; margin-top:10px; margin-bottom:10px; }
.protocol-header p  { font-size:15px; color:rgba(255,255,255,.58); max-width:560px; margin:0 auto; }

.protocol-track-outer {
  position:relative; z-index:1;
  flex:1; overflow:hidden;
  display:flex; align-items:center;
  padding:0 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.protocol-track {
  display:flex; align-items:stretch; gap:0;
  width:max-content; will-change:transform;
}

.protocol-card {
  width:268px; flex-shrink:0;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px; padding:26px 22px 22px;
  cursor:default; position:relative; overflow:hidden;
  transition:background .3s ease, border-color .3s ease,
             transform .35s cubic-bezier(.34,1.4,.64,1), box-shadow .3s ease;
}
.protocol-card:hover {
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.32);
  transform:translateY(-8px) scale(1.025);
  box-shadow:0 28px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(68,152,240,.25);
}
.protocol-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--ic-300), var(--ic-500));
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease; border-radius:0 0 2px 2px;
}
.protocol-card:hover::after { transform:scaleX(1); }
.protocol-card-glow {
  position:absolute; top:-50px; right:-50px;
  width:140px; height:140px; border-radius:50%;
  background:radial-gradient(circle, rgba(68,152,240,.22), transparent 70%);
  opacity:0; transition:opacity .3s ease; pointer-events:none;
}
.protocol-card:hover .protocol-card-glow { opacity:1; }

.protocol-step-badge {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-head); font-size:10px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--ic-300);
  margin-bottom:16px;
}
.protocol-step-badge::before {
  content:''; display:block; width:18px; height:2px;
  background:var(--ic-300); border-radius:1px;
}
.protocol-illu {
  width:64px; height:64px; margin-bottom:16px; display:block;
  transition:transform .35s cubic-bezier(.34,1.4,.64,1), filter .3s ease;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.protocol-card:hover .protocol-illu {
  transform:scale(1.14) translateY(-3px);
  filter:drop-shadow(0 8px 20px rgba(68,152,240,.35));
}
.protocol-card-title {
  font-family:var(--font-head); font-weight:700; font-size:15px;
  color:white; margin-bottom:10px; line-height:1.3;
}
.protocol-card-desc {
  font-size:12.5px; color:rgba(255,255,255,.55); line-height:1.65; margin:0;
}

.protocol-arrow {
  flex-shrink:0; width:52px;
  display:flex; align-items:center; justify-content:center;
}
.protocol-arrow svg { opacity:.35; transition:opacity .3s; }

.protocol-progress {
  position:relative; z-index:1;
  flex-shrink:0; display:flex; justify-content:center;
  align-items:center; gap:6px; padding:16px 0 28px;
}
.protocol-dot {
  height:4px; border-radius:2px;
  background:rgba(255,255,255,.2);
  transition:width .35s ease, background .35s ease;
  width:14px;
}
.protocol-dot.active { background:white; width:28px; }

@media (max-width: 900px) {
  .protocol-outer { height:auto; }
  .protocol-sticky {
    position:relative; height:auto;
    padding-bottom:40px; overflow:visible;
  }
  .protocol-track-outer {
    overflow-x:auto; -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory; align-items:flex-start;
    padding:0 20px 12px;
    mask-image:none; -webkit-mask-image:none;
  }
  .protocol-track { transform:none !important; }
  .protocol-card { width:246px; scroll-snap-align:start; }
}

/* ── CHATBOT ── */
.chatbot-launcher {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: transparent; color: var(--ic-900); border: none; cursor: pointer;
  box-shadow: 0 14px 34px rgba(4,28,88,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; font-size: 26px;
}
.chatbot-launcher:hover { transform: scale(1.06); }
.chatbot-launcher::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(58,127,214,.26);
  animation: launcherRing 2.2s ease-out infinite;
  pointer-events: none;
}
.chatbot-launcher.is-open::before { display: none; }
.chatbot-launcher.is-open {
  background: var(--ic-700);
  color: white;
  box-shadow: 0 4px 20px rgba(30,84,168,.45);
}
.chatbot-launcher.is-open:hover {
  background: var(--ic-800);
}
.chatbot-launcher .notif {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); border: 2px solid white;
  font-size: 10px; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center;
}
.launcher-speech {
  position: absolute;
  right: 50px;
  bottom: 62px;
  min-width: 174px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--ic-900);
  color: var(--ic-900);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 12px 30px rgba(4,28,88,.22);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  pointer-events: none;
  opacity: .98;
  color: white;
}
.launcher-speech strong {
  color: white;
  font-size: 13.5px;
}
.launcher-speech::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: var(--ic-900);
  border-left: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
  border-radius: 0 0 0 3px;
  transform: rotate(-45deg);
}
.launcher-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: block;
  --avatar-img-width: 112%;
  --avatar-img-bottom: -6%;
}
.launcher-avatar.assistant-avatar-pop img {
  width: var(--avatar-img-width);
  height: auto;
  bottom: var(--avatar-img-bottom);
}
.home-page .chatbot-launcher {
  width: 104px;
  height: 104px;
}
.home-page .launcher-avatar {
  width: 104px;
  height: 104px;
  --avatar-img-width: 122%;
  --avatar-img-bottom: -8%;
}
.home-page .launcher-speech {
  right: 92px;
  bottom: 92px;
}

@keyframes launcherRing {
  0% { opacity: .8; transform: scale(.92); }
  70% { opacity: 0; transform: scale(1.18); }
  100% { opacity: 0; transform: scale(1.18); }
}

.chatbot-window {
  position: fixed; bottom: 100px; right: 28px; z-index: 901;
  width: 360px;
  height: min(620px, calc(100vh - 128px));
  background: white; border-radius: 20px;
  box-shadow: 0 8px 48px rgba(4,28,88,.22);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(.9) translateY(20px); opacity: 0;
  transition: all .25s cubic-bezier(.34,1.3,.64,1);
  pointer-events: none;
}
.chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-window.success-open {
  width: 400px;
  height: min(720px, calc(100vh - 96px));
}

.chat-header {
  background: var(--ic-700); padding: 18px 20px;
  display: flex; align-items: center; gap: 13px;
}
.chat-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--ic-500);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.assistant-avatar-pop {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  isolation: isolate;
  --avatar-img-width: 118%;
  --avatar-img-bottom: -4%;
}
.assistant-avatar-pop::before {
  display: none;
}
.assistant-avatar-pop img {
  position: absolute;
  left: 50%;
  bottom: var(--avatar-img-bottom);
  z-index: 1;
  width: var(--avatar-img-width);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  clip-path: none;
  pointer-events: none;
}
.chat-header-info { flex: 1; }
.chat-header-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: white; }
.chat-header-status { font-size: 12px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.chat-header-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4AE8A0; }
.chat-close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 20px; padding: 4px; }
.chat-close:hover { color: white; }

.chat-progress {
  padding: 8px 16px 7px;
  background: var(--ic-50);
  border-bottom: 1px solid var(--ic-100);
}
.chat-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--ic-900);
}
.chat-progress-track {
  height: 6px;
  border-radius: 100px;
  background: white;
  overflow: hidden;
  border: 1px solid var(--ic-100);
}
.chat-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ic-700), var(--ic-300));
  transition: width .25s ease;
}
.chat-draft {
  min-height: 0;
  padding: 0 18px;
  background: white;
  color: var(--grey-700);
  font-size: 12px;
  border-bottom: 1px solid transparent;
}
.chat-draft:not(:empty) {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-color: var(--grey-200);
}
.chat-draft strong {
  color: var(--ic-800);
  font-family: var(--font-head);
}

.chat-messages { flex: 1; overflow-y: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; min-height: 160px; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--grey-200); border-radius: 2px; }

.msg { display: flex; gap: 8px; align-items: flex-end; }
.msg.bot { flex-direction: row; }
.msg.user { flex-direction: row-reverse; }
.msg-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--ic-100); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.msg-avatar.assistant-avatar-pop {
  border-color: white;
  --avatar-img-width: 122%;
  --avatar-img-bottom: -8%;
}
.msg-avatar.assistant-avatar-pop img {
  width: var(--avatar-img-width);
  height: auto;
}
.msg-bubble {
  max-width: 80%; padding: 11px 15px; border-radius: 16px;
  font-size: 14px; line-height: 1.6;
}
.msg.bot .msg-bubble { background: var(--grey-100); color: var(--grey-900); border-bottom-left-radius: 4px; }
.msg.user .msg-bubble { background: var(--ic-700); color: white; border-bottom-right-radius: 4px; }
.msg.success-msg {
  align-items: stretch;
}
.msg.success-msg .msg-bubble {
  max-width: calc(100% - 36px);
}
.success-bubble {
  border: 1.5px solid rgba(63,140,112,.22);
  background: linear-gradient(180deg, #F2FBF7 0%, #FFFFFF 100%) !important;
  box-shadow: 0 10px 24px rgba(4,28,88,.08);
  padding: 18px !important;
}
.success-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 12px;
}
.success-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ic-900);
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.success-text {
  color: var(--grey-700);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 6px;
}
.success-note {
  margin-top: 12px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  background: var(--ic-50);
  color: var(--ic-800);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
}

.chat-choices { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; max-height: 126px; overflow-y: auto; flex-shrink: 0; }
.choice-btn {
  background: white; border: 1.5px solid var(--ic-300); color: var(--ic-700);
  border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-head); transition: all .18s;
}
.choice-btn:hover { background: var(--ic-700); color: white; border-color: var(--ic-700); }
.choice-btn.choice-primary { background: var(--ic-700); color: white; border-color: var(--ic-700); }
.choice-btn.choice-primary:hover { background: var(--ic-800); border-color: var(--ic-800); }

.chat-input-row { padding: 14px 16px; border-top: 1px solid var(--grey-200); display: flex; gap: 8px; }
.chat-input-error {
  margin: 0 16px 10px;
  padding: 8px 10px;
  border: 1px solid rgba(224,59,59,.22);
  border-radius: var(--radius-sm);
  background: rgba(224,59,59,.08);
  color: var(--red);
  font-size: 12px;
}
.chat-input {
  flex: 1; border: 1.5px solid var(--grey-200); border-radius: 100px;
  padding: 9px 16px; font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .18s;
}
.chat-input:focus { border-color: var(--ic-500); }
.chat-send {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ic-700);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: white; transition: background .18s; flex-shrink: 0;
}
.chat-send:hover { background: var(--ic-800); }

.typing-indicator { display: flex; gap: 4px; padding: 12px 16px; align-items: center; }
.typing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grey-400); animation: bounce .9s infinite; }
.typing-dot:nth-child(2) { animation-delay: .15s; }
.typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

/* Callback modal */
.callback-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4,28,88,.68);
  backdrop-filter: blur(4px);
}
.callback-overlay.open { display: flex; }
.callback-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(4,28,88,.28);
  padding: 34px 38px 38px;
  border: 1px solid var(--ic-100);
}
.callback-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--ic-50);
  color: var(--ic-700);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.callback-close:hover {
  background: var(--ic-700);
  color: white;
}
.callback-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 40px;
  margin-bottom: 16px;
}
.callback-head img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: contain;
  background: var(--ic-50);
  padding: 8px;
  border: 1px solid var(--ic-100);
}
.callback-title {
  color: var(--ic-900);
  text-align: left;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  margin: 2px 0 0;
}
.callback-intro {
  text-align: left;
  color: var(--grey-700);
  margin-bottom: 26px;
  max-width: 620px;
}
.callback-form {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px 16px;
  align-items: start;
}
.callback-form label {
  color: var(--ic-800);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding-top: 10px;
  text-align: left;
}
.callback-form input,
.callback-form textarea {
  width: 100%;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--grey-100);
  color: var(--grey-900);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
}
.callback-form input:focus,
.callback-form textarea:focus {
  border-color: var(--ic-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(58,127,214,.14);
}
.callback-form textarea {
  min-height: 96px;
  resize: vertical;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.callback-captcha {
  display: inline-grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  background: #FAFAFA;
  border: 1px solid #D7D7D7;
  border-radius: 2px;
  padding: 10px 12px;
  min-width: 242px;
  max-width: 100%;
  min-height: 60px;
}
.callback-recaptcha-check {
  width: 22px;
  height: 22px;
  accent-color: var(--ic-700);
  cursor: pointer;
}
.callback-recaptcha-text {
  color: #111;
  font-size: 12px;
  cursor: pointer;
}
.callback-captcha-state {
  grid-column: 1 / -1;
  color: var(--grey-500);
  font-size: 10px;
  line-height: 1.2;
  margin-top: -3px;
}
.callback-refresh,
.captcha-refresh {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ic-100);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ic-700);
  cursor: pointer;
  font-size: 14px;
}
.callback-submit-row {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.callback-submit-row .btn {
  min-width: 134px;
  justify-content: center;
}
.callback-status {
  color: var(--grey-500);
  font-size: 12px;
}
.callback-status.is-error {
  color: var(--red);
}
.phone-icon {
  display: inline-flex;
  align-items: center;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.devis-captcha {
  margin-top: 18px;
  padding: 16px;
  border: 1.5px solid var(--ic-100);
  border-radius: var(--radius);
  background: var(--ic-50);
}
.devis-captcha label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ic-900);
}
.devis-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: #FAFAFA;
  border: 1.5px solid #D7D7D7;
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 242px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.devis-captcha-box.verified {
  border-color: var(--green);
  background: #F1FAF6;
  box-shadow: 0 0 0 3px rgba(63, 140, 112, .1);
}
.devis-captcha-box .callback-recaptcha-check {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  min-width: 28px;
  margin: 0;
  border: 2px solid #C1C1C1;
  border-radius: 5px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.devis-captcha-box .callback-recaptcha-check:hover {
  border-color: var(--ic-500);
}
.devis-captcha-box .callback-recaptcha-check:checked {
  border-color: var(--green);
  background: var(--green);
}
.devis-captcha-box .callback-recaptcha-check:checked::after {
  content: '✓';
  color: white;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.devis-captcha-box .callback-recaptcha-check:focus-visible {
  outline: 2px solid var(--ic-500);
  outline-offset: 2px;
}
.devis-captcha-box .callback-recaptcha-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
  cursor: pointer;
}
.devis-captcha-shield {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-400);
  flex-shrink: 0;
  margin-left: auto;
  transition: color .2s;
}
.devis-captcha-box.verified .devis-captcha-shield {
  color: var(--green);
}
.devis-captcha-shield svg {
  flex-shrink: 0;
}
.devis-captcha-shield .callback-captcha-state {
  grid-column: auto;
  margin-top: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  max-width: 90px;
  color: inherit;
}
.devis-captcha-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--grey-700);
}

/* ── EXPERT GRID ── */
.expert-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  background:
    radial-gradient(circle at 16% 10%, rgba(68,152,240,.32), transparent 30%),
    radial-gradient(circle at 82% 90%, rgba(63,140,112,.26), transparent 28%),
    linear-gradient(135deg, var(--ic-900) 0%, var(--ic-800) 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  display: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 18px; margin-top: 12px; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
/* ── GLOBAL VISUAL REFRESH ── */
.check-item {
  position: relative;
  padding-left: 28px;
}
.check-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .05em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(63,140,112,.12);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
}

.diagnostic-pack-grid > *,
.profile-card-grid > *,
.profile-commit-grid > *,
.ic-eco-card,
.ic-zone-level,
.ic-city-badge {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.diagnostic-pack-grid > *:hover,
.profile-card-grid > *:hover,
.profile-commit-grid > *:hover,
.ic-eco-card:hover,
.ic-zone-level:hover,
.ic-city-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(58,127,214,.24);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .section-header,
  .sit-card,
  .pricing-pack-card,
  .card,
  .review-card,
  .expert-photo-card,
  .page-hero .container {
    animation: icFadeLift .55s ease both;
  }
  .sit-card:nth-child(2),
  .pricing-pack-card:nth-child(2),
  .card:nth-child(2),
  .review-card:nth-child(2) { animation-delay: .06s; }
  .sit-card:nth-child(3),
  .pricing-pack-card:nth-child(3),
  .card:nth-child(3),
  .review-card:nth-child(3) { animation-delay: .12s; }
}

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

@media (max-width: 960px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.02) 100%),
      url('assets/hero-lyon-panorama.png') right center / cover no-repeat;
  }
  .hero-grid { grid-template-columns: 1fr; min-height: 340px; }
  .hero-photo-wrap { display: none; }
  .sit-grid { grid-template-columns: 1fr 1fr; }
  .pricing-pack-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ic-zone-grid { grid-template-columns: 1fr; gap: 32px; }
  .ic-zone-copy { max-width: none; }
  .ic-zone-eco { grid-template-columns: 1fr; }
  .ic-zone-layout { grid-template-columns: 1fr; }
  .ic-zone-map-card { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .expert-grid { grid-template-columns: 1fr; gap: 40px; }
  .expert-grid > div:first-child { max-width: 480px; margin: 0 auto; width: 100%; }
  .profile-layout { grid-template-columns: 1fr; gap: 40px; }
  .profile-sidebar { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
  .profile-card-grid,
  .profile-commit-grid,
  .diagnostic-pack-grid { grid-template-columns: 1fr; }
  .rse-grid { grid-template-columns: 1fr; gap: 34px; }
  .rse-panel { position: static; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .page-hero { padding: 48px 0; }
  .breadcrumb { flex-wrap: wrap; }
  .profile-photo-panel,
  .expert-photo-card { border-radius: 22px; }
  .profile-photo-panel img,
  .expert-photo-card img { width: 82%; }
  .profile-sidebar { max-width: 360px; }
  .profile-card-grid .card { padding: 18px; }
  .profile-commit-grid { gap: 10px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .hero {
    min-height: 420px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 52%, rgba(255,255,255,.08) 100%),
      url('assets/hero-lyon-panorama.png') 62% bottom / auto 100% no-repeat;
  }
  .hero-grid {
    min-height: 420px;
    padding: 42px 24px 130px;
    align-items: start;
  }
  .hero-content h1 { font-size: 31px; }
  .hero-sub { font-size: 14px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sit-grid { grid-template-columns: 1fr; }
  .ic-zone { padding: 62px 0; }
  .ic-zone-copy h2 { font-size: 31px; }
  .ic-zone .ic-zone-actions { flex-direction: column; align-items: stretch; }
  .ic-zone-legend { grid-template-columns: 1fr; padding: 14px; }
  .ic-zone-cities { padding: 16px; border-radius: 22px; }
  .ic-city-badge { font-size: 12px; min-height: 31px; }
  .ic-eco-card { border-radius: 22px; padding: 18px; }
  .packs-complets { margin-top: 36px; }
  .pricing-pack-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 9px 12px;
  }
  .logo-link { min-width: 0; }
  .logo-link img { height: 38px; width: auto; max-width: 132px; object-fit: contain; }
  .nav-toggle-btn {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
  }
  .nav-toggle-btn span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ic-900);
    transition: transform .18s, opacity .18s;
  }
  .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 220;
    background: white;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow);
    padding: 8px 14px 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle:checked ~ .main-nav { display: flex; }
  .main-nav a {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }
  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
  }
  .header-actions .btn {
    padding: 7px 9px;
    font-size: 12px;
    border-width: 1.5px;
  }
  .header-actions .btn-outline:nth-child(2) { display: none; }
  .ic-zone-header { text-align: left; margin-bottom: 24px; }
  .ic-zone-header p { font-size: 15px; }
  .ic-zone-map-card { min-height: 0; border-radius: 14px; }
  .ic-zone-map-legend {
    left: 12px; right: 12px; bottom: 12px; padding: 10px;
  }
  .ic-zone-content { padding: 22px; }
  .ic-zone-eco-card { grid-template-columns: 40px 1fr; }
  .ic-zone-eco-card b { grid-column: 2; }
  .ic-zone-search-row { grid-template-columns: 1fr; }
  .ic-zone-search-row .btn { justify-content: center; }
  .ic-zone-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom span[style] {
    flex-wrap: wrap;
    gap: 12px !important;
  }
  .expert-grid > div:first-child { max-width: 100%; }

  /* Chatbot */
  .chatbot-launcher { bottom: 16px; right: 16px; width: 58px; height: 58px; font-size: 22px; }
  .launcher-avatar { width: 58px; height: 58px; }
  .home-page .chatbot-launcher { width: 82px; height: 82px; }
  .home-page .launcher-avatar { width: 82px; height: 82px; }
  .launcher-speech {
    right: 46px;
    bottom: 58px;
    min-width: 132px;
    padding: 7px 9px;
    font-size: 11px;
  }
  .chatbot-window {
    width: calc(100vw - 24px);
    right: 12px;
    left: 12px;
    bottom: 76px;
    max-height: min(520px, calc(100svh - 96px));
    max-height: min(520px, calc(100vh - 96px));
    border-radius: 16px;
  }
  .chatbot-window.success-open {
    width: calc(100vw - 24px);
    height: min(680px, calc(100vh - 92px));
  }
  .chat-input { font-size: 16px; }
  .chat-messages { padding: 14px; gap: 10px; }
  .chat-choices { padding: 0 14px 10px; }
  .callback-modal { padding: 30px 18px 28px; }
  .callback-title { font-size: 28px; }
  .callback-form { grid-template-columns: 1fr; gap: 8px; }
  .callback-form label { text-align: left; padding-top: 8px; }
  .callback-submit-row { grid-column: 1; }
  .callback-captcha { grid-template-columns: auto 34px; }
  .devis-captcha-box { justify-content: flex-start; }
  .devis-captcha-shield { margin-left: 0; }
}
