:root {
  /* Palette extraite du logo */
  --navy: #1A4F7A;
  --navy-deep: #0D4870;
  --navy-darker: #0A3958;
  --water-mid: #2A84B0;
  --water-light: #52C8EA;
  --water-pale: #8AE8F8;
  --sky-light: #95B8CC;
  --sky-mid: #6E95AE;
  --sun: #F08010;
  --sun-mid: #F5A823;
  --sun-light: #FFD84D;
  --bone: #F5EFE6;
  --bone-warm: #EBE3D5;
  --pale: #FAFAF7;
  --ink: #0A1419;
  --gray: #5A6F7D;
  --gray-soft: #8A9AA5;
  --line: rgba(26, 79, 122, 0.12);
  --line-strong: rgba(26, 79, 122, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--pale);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif { font-family: 'Fraunces', serif; }

/* ======= ANNOUNCEMENT BAR ======= */
.announce {
  background: var(--ink);
  color: var(--bone);
  padding: 11px 0;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.announce-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.announce-emergency {
  display: flex;
  align-items: center;
  gap: 10px;
}
.announce-emergency strong {
  color: var(--sun-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.announce-emergency a {
  color: var(--bone);
  text-decoration: none;
  font-weight: 600;
}
.announce-emergency a:hover { color: var(--sun-light); }
.announce-credentials {
  display: flex;
  gap: 22px;
  align-items: center;
  opacity: 0.85;
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.cmmtq-logo {
  height: 22px;
  width: auto;
  opacity: 0.95;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--sun);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

/* ======= HEADER ======= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.logo-tagline {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 5px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--sun); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  background: var(--navy);
  color: var(--bone) !important;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--sun) !important;
}

/* ======= HERO ======= */
.hero {
  position: relative;
  background: var(--bone);
  padding: 76px 32px 88px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--sun-light) 0%, var(--sun) 40%, transparent 70%);
  opacity: 0.35;
  filter: blur(40px);
  z-index: 1;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.45; transform: translateY(-50%) scale(1.12); }
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--sun);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sun);
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy-deep);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--sun);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--sun-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(240, 128, 16, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--bone);
}
.btn-light {
  background: var(--bone);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--pale);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

/* Hero card panel */
.hero-card {
  position: relative;
  background: var(--bone);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(13, 72, 112, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 3;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--sun);
  border-radius: 50%;
  z-index: -1;
}
.hero-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-card-eyebrow::before {
  content: '🚨';
  font-size: 14px;
}
.hero-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-card p {
  font-size: 14.5px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.55;
}
.hero-card-phone {
  display: block;
  background: var(--navy);
  color: var(--bone);
  padding: 18px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.hero-card-phone:hover { background: var(--navy-deep); }
.hero-card-phone-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.hero-card-phone-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-card-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  font-style: italic;
}

/* ======= STRIP : 3 PILLARS ======= */
.pillars {
  background: var(--navy);
  color: var(--bone);
  padding: 56px 32px;
}
.pillars-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--sun-light);
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.9;
}
.pillar-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pillar-content p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.55;
}

/* ======= SECTION BASE ======= */
section {
  padding: 88px 32px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--sun);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--sun);
  font-weight: 500;
}
.section-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 600px;
}

/* ======= EXPERTISE / DIFFÉRENCIATION ======= */
.expertise {
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.expertise-visual {
  position: sticky;
  top: 120px;
}
.expertise-visual-card {
  background: var(--navy);
  color: var(--bone);
  padding: 48px 40px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.expertise-author-photo {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sun);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
@media (max-width: 540px) {
  .expertise-author-photo { width: 70px; height: 70px; top: 24px; right: 24px; }
}
.expertise-visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sun) 0%, transparent 60%);
  opacity: 0.35;
  filter: blur(30px);
}
.expertise-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 110px;
  line-height: 0.5;
  color: var(--sun);
  font-style: italic;
  margin-bottom: 24px;
}
.expertise-quote {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.expertise-quote em {
  font-style: italic;
  color: var(--sun-light);
}
.expertise-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.expertise-author-line {
  width: 24px;
  height: 1px;
  background: var(--sun-light);
}
.expertise-author-text {
  font-size: 13px;
  letter-spacing: 0.05em;
}
.expertise-author-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.expertise-author-text span {
  opacity: 0.6;
  font-size: 12px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.expertise-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-strong);
}
.expertise-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.expertise-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--sun);
  font-weight: 400;
  line-height: 1;
}
.expertise-check {
  width: 40px;
  height: 40px;
  background: var(--sun);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(240, 128, 16, 0.25);
}
.expertise-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.expertise-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
}

/* ======= SERVICES ======= */
.services {
  background: var(--pale);
}
.services-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
  padding: 6px;
  background: var(--bone);
  border-radius: 6px;
  width: fit-content;
}
.tab {
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
}
.tab.active {
  background: var(--navy);
  color: var(--bone);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--pale);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  background: var(--bone);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(13, 72, 112, 0.12);
  z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
  background: var(--sun);
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, var(--navy-deep));
}
.service-icon {
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.service-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sun);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.service-link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-card:hover .service-link::after {
  transform: translateX(4px);
}

/* ======= B2B SECTION ======= */
.b2b {
  background: var(--navy-darker);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.b2b::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(60px);
}
.b2b .section-eyebrow { color: var(--sun-light); }
.b2b .section-eyebrow::before { background: var(--sun-light); }
.b2b .section-title { color: var(--bone); }
.b2b .section-title em { color: var(--sun-light); }
.b2b .section-lead { color: rgba(245, 239, 230, 0.75); }

.b2b-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.b2b-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.b2b-list li {
  display: flex;
  align-items: start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.55;
}
.b2b-list li::before {
  content: '✓';
  color: var(--sun-light);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}
.b2b-clients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.b2b-client-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 24px;
  border-radius: 4px;
  transition: all 0.2s;
}
.b2b-client-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--sun);
}
.b2b-client-type {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.b2b-client-card h5 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
.b2b-client-card p {
  font-size: 13.5px;
  opacity: 0.7;
  line-height: 1.5;
}
.b2b-cta {
  margin-top: 40px;
}

/* ======= TESTIMONIALS ======= */
.testimonials {
  background: var(--bone);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--pale);
  padding: 44px 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--sun);
  font-size: 16px;
}
.testimonial-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--water-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Fraunces', serif;
}
.testimonial-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-info span {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.testimonials-placeholder {
  margin-top: 40px;
  padding: 32px;
  background: var(--bone-warm);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  color: var(--navy);
  font-style: italic;
  border: 1px dashed var(--line-strong);
}

/* ======= ZONE ======= */
.zone {
  background: var(--pale);
}
.zone-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.zone-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.zone-cities li {
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.zone-cities li::after {
  content: '✓';
  color: var(--sun);
  font-weight: 700;
}
.zone-map {
  background: var(--navy);
  border-radius: 6px;
  height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 168, 35, 0.2) 0%, transparent 50%);
}
.zone-map-pin {
  text-align: center;
  color: var(--bone);
  position: relative;
  z-index: 2;
}
.zone-map-pin-icon {
  width: 60px;
  height: 60px;
  background: var(--sun);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: bounce 2.5s ease-in-out infinite;
}
.zone-map-pin-icon::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--bone);
  border-radius: 50%;
}
@keyframes bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}
.zone-map-pin-label {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 500;
}
.zone-map-pin-sub {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ======= BLOG ======= */
.blog {
  background: var(--bone);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--pale);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.25s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 72, 112, 0.12);
}
.blog-card-image {
  height: 200px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.blog-card-image-1 { background: linear-gradient(135deg, var(--navy) 0%, var(--water-mid) 100%); }
.blog-card-image-2 { background: linear-gradient(135deg, var(--water-mid) 0%, var(--water-light) 100%); }
.blog-card-image-3 { background: linear-gradient(135deg, var(--sun) 0%, var(--sun-mid) 100%); }
.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}
.blog-card-image-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  opacity: 0.85;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image-icon {
  transform: scale(1.18) rotate(4deg);
}
.blog-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 600;
}
.blog-card-meta span { color: var(--gray); }
.blog-card-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.blog-card-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  flex: 1;
}
.blog-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--sun);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ======= CONTACT ======= */
.contact {
  background: var(--navy);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--sun) 0%, transparent 60%);
  opacity: 0.12;
  filter: blur(80px);
}
.contact .section-eyebrow { color: var(--sun-light); }
.contact .section-eyebrow::before { background: var(--sun-light); }
.contact .section-title { color: var(--bone); }
.contact .section-title em { color: var(--sun-light); }
.contact .section-lead { color: rgba(245, 239, 230, 0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-item-value {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.contact-item-value a {
  color: var(--bone);
  text-decoration: none;
}
.contact-item-value a:hover { color: var(--sun-light); }
.contact-item-sub {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.6);
  margin-top: 4px;
}
.contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--bone);
  transition: all 0.2s;
  text-decoration: none;
}
.contact-socials a:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 44px;
  border-radius: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  min-width: 0;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun-light);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bone);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sun);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 239, 230, 0.4);
}
.form-field select option {
  background: var(--navy);
  color: var(--bone);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  background: var(--sun);
  color: var(--ink);
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}
.form-submit:hover {
  background: var(--sun-mid);
  transform: translateY(-2px);
}

/* ======= FOOTER ======= */
footer {
  background: var(--ink);
  color: rgba(245, 239, 230, 0.75);
  padding: 80px 32px 32px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand .logo-tagline { color: rgba(245, 239, 230, 0.5); }
.footer-brand .logo-name { color: var(--bone); }
.footer-tagline {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h6 {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(245, 239, 230, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sun-light); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(245, 239, 230, 0.45);
}
.footer-credentials {
  display: flex;
  gap: 24px;
  letter-spacing: 0.05em;
}

/* ======= MENU MOBILE ======= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======= ACCESSIBILITÉ ======= */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--pale);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(13, 72, 112, 0.12);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 32px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    margin: 12px 32px;
    border-radius: 4px;
    justify-content: center;
  }
  .announce-credentials { display: none; }
  .hero { padding: 60px 24px 80px; }
  .hero::before { width: 100%; clip-path: none; opacity: 0.05; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner > div:first-child { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero h1 { font-size: 44px; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  .pillars-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .expertise-grid { grid-template-columns: 1fr; gap: 48px; }
  .expertise-visual { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .b2b-content { grid-template-columns: 1fr; gap: 48px; }
  .b2b-clients { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; gap: 48px; }
  .zone-map { height: 320px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  section { padding: 56px 24px; }
  .section-compact { padding: 52px 24px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ======= SCROLL ANIMATIONS ======= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s; opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }

/* ======================================================================
   ARCHITECTURE MULTI-PAGES — ajouts v4
   ====================================================================== */

/* Espacement resserré pour les sections d'aperçu */
.section-compact { padding: 72px 32px; }

/* Lien de navigation actif */
.nav-links a.active { color: var(--navy); }
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- En-tête de page intérieure ---------- */
.page-hero {
  background: var(--bone);
  padding: 64px 32px 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 168, 35, 0.16), rgba(245, 168, 35, 0) 70%);
  pointer-events: none;
}
.page-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--sun); }
.page-hero-lead {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 620px;
}

/* ---------- Bouton « voir plus » sous une section ---------- */
.section-more {
  margin-top: 48px;
  text-align: center;
}
.section-more-left {
  margin-top: 32px;
  text-align: left;
}
.b2b .btn-outline { border-color: rgba(245, 239, 230, 0.4); color: var(--bone); }
.b2b .btn-light { background: var(--sun); color: var(--ink); }
.b2b .btn-light:hover { background: var(--sun-light); }
.b2b .btn-outline:hover { background: var(--sun); border-color: var(--sun); color: var(--ink); }

/* ---------- Rangée de clients B2B (aperçu accueil) ---------- */
.b2b-clients-row {
  grid-template-columns: repeat(4, 1fr);
}
.b2b-clients-row .b2b-client-card h5 { margin-bottom: 0; }

/* ---------- Services détaillés (page /services/) ---------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-detail {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 32px;
  scroll-margin-top: 110px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-detail:hover {
  border-color: rgba(240, 128, 16, 0.45);
  box-shadow: 0 18px 40px rgba(13, 72, 112, 0.08);
}
.service-detail h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 18px 0 12px;
}
.service-detail > .service-icon-wrap { margin-bottom: 0; }
.service-detail p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray);
}
.service-detail-list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.service-detail-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
}

/* ---------- Liste d'expertise en 2 colonnes ---------- */
.expertise-list-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

/* ---------- Note zone desservie ---------- */
.zone-note {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

/* ---------- Bande d'appel à l'action ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-darker));
  color: var(--bone);
  padding: 64px 32px;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.cta-band .section-eyebrow { color: var(--sun-light); }
.cta-band .section-eyebrow::before { background: var(--sun-light); }
.cta-band-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-band-title em { font-style: italic; color: var(--sun-light); }
.cta-band-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 239, 230, 0.78);
  max-width: 520px;
}
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.cta-band-phone {
  display: block;
  text-decoration: none;
  background: rgba(245, 239, 230, 0.07);
  border: 1px solid rgba(245, 239, 230, 0.22);
  border-radius: 6px;
  padding: 18px 24px;
  transition: all 0.25s ease;
}
.cta-band-phone:hover {
  background: var(--sun);
  border-color: var(--sun);
}
.cta-band-phone-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.cta-band-phone:hover .cta-band-phone-label { color: var(--ink); }
.cta-band-phone-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.cta-band-phone:hover .cta-band-phone-num { color: var(--ink); }
.cta-band .btn-light { justify-content: center; }

/* ---------- Responsive des ajouts ---------- */
@media (max-width: 968px) {
  .page-hero { padding: 48px 24px 44px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .expertise-list-cols { grid-template-columns: 1fr; }
  .b2b-clients-row { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 52px 24px; }
}
@media (max-width: 540px) {
  .b2b-clients-row { grid-template-columns: 1fr; }
  .section-more-left .btn { width: 100%; justify-content: center; }
}

/* ---------- Densité mobile : tuiles 2 colonnes plutôt qu'empilées ---------- */
@media (max-width: 968px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-grid { gap: 12px; }
  .service-card { padding: 20px 16px; }
  .service-card h4 { font-size: 16px; }
  .service-card p { font-size: 13.5px; line-height: 1.5; }
  .service-icon-wrap { width: 44px; height: 44px; margin-bottom: 14px; }
  .service-icon { font-size: 20px; }
  .service-link { font-size: 12px; }
  .b2b-clients-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .b2b-clients-row .b2b-client-card { padding: 18px 16px; }
  .b2b-clients-row .b2b-client-card h5 { font-size: 16px; }
}
.expertise-list-cols .expertise-item:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 968px) {
  .expertise-list-cols .expertise-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .expertise-list-cols .expertise-item:last-child { border-bottom: none; }
}
.contact-item-sub a {
  color: var(--sun-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 216, 77, 0.35);
  transition: border-color 0.2s ease;
}
.contact-item-sub a:hover { border-bottom-color: var(--sun-light); }

/* ---------- Bloc accréditations (/expertise/) ---------- */
.creds { background: var(--pale); }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cred-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 24px;
}
.cred-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 10px;
}
.cred-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.cred-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}
@media (max-width: 968px) {
  .creds-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .creds-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   BILINGUE — ajouts v5
   ====================================================================== */
.lang-switch {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  color: var(--gray) !important;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 7px 11px;
  line-height: 1;
  transition: all 0.2s ease;
}
.lang-switch:hover {
  color: var(--navy) !important;
  border-color: var(--navy);
}
.nav-links a.lang-switch::after { display: none; }

/* Cartes du blogue : le titre est un h2 sur la page blogue, un h4 ailleurs */
.blog-card-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

@media (max-width: 968px) {
  .nav-links .lang-switch {
    margin: 0 32px 12px;
    text-align: center;
    border-bottom: 1px solid var(--line) !important;
  }
}
