  :root {
    --orange: #F47C2B;
    --orange-light: #FDEBD0;
    --orange-dark: #D4610E;
    --green: #1E8C4A;
    --green-light: #D4EDDF;
    --green-dark: #145F32;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray-100: #F2F1EE;
    --gray-200: #E5E3DC;
    --gray-400: #9A9488;
    --gray-600: #6B6358;
    --dark: #141210;
    --text: #1C1A17;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* ─── CUSTOM CURSOR ─── */
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 9999;
    pointer-events: none;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-out);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.35s var(--ease-out);
    opacity: 0.6;
  }
  .cursor-ring.hover { transform: translate(-50%, -50%) scale(1.8); opacity: 0.3; }

  /* ─── SCROLL PROGRESS ─── */
  .scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  width: 100%;
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out);

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-200);
}
nav.scrolled {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  padding: 20px 60px;
}
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark);
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }


  .nav-logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img{
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}


  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--orange);
    transition: width 0.3s var(--ease-out);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--orange);
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    text-decoration: none;
    transition: all 0.3s var(--ease-out) !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--orange) !important; color: white !important; transform: translateY(-1px); }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: none; background: none; border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--dark);
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 800;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--orange); }




/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: #050505;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 60px 80px;
  text-align: center;
}

.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-grid {
  display: none !important;
}

.hero-circle-1 {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 40%,
    rgba(244,124,43,0.10) 0%,
    rgba(30,140,74,0.08) 50%,
    transparent 75%
  );
  animation: float1 8s ease-in-out infinite;
}

.hero-circle-2 {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
  animation: float2 10s ease-in-out infinite;
}

.hero-circle-3 {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.10);
  animation: float2 7s ease-in-out infinite reverse;
}

.hero-accent {
  position: absolute;
  top: 20%;
  right: 12%;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  transform: rotate(20deg);
  opacity: 0.9;
  animation: rotate-float 12s ease-in-out infinite;
}

.hero-accent-2 {
  position: absolute;
  bottom: 22%;
  right: 28%;
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.75;
  animation: float1 9s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-52%) translateX(-10px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-48%) translateX(8px); }
}

@keyframes rotate-float {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50% { transform: rotate(28deg) translateY(-12px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.28) 100%
  );
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-title .line-green {
  color: var(--green);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.74);
  font-weight: 300;
  max-width: 760px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(255,255,255,0.10);
}

.btn-primary::before {
  display: none;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
  color: #111111;
  box-shadow: 0 14px 36px rgba(255,255,255,0.14);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--orange));
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-num span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  margin-top: 6px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .hero {
    text-align: left;
    justify-content: flex-start;
  }

  .hero-content {
    align-items: flex-start;
    max-width: 760px;
  }

  .hero-sub {
    max-width: 520px;
  }

  .hero-actions,
  .hero-stats {
    justify-content: flex-start;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}





  /* ─── MARQUEE BAND ─── */
  .marquee-band {
    background: var(--orange);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 0 24px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .marquee-sep {
    color: var(--green);
    font-size: 1rem;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── SECTION STYLES ─── */
  section { padding: 120px 60px; }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--orange);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--dark);
  }

  /* ─── ABOUT ─── */
  .about { background: var(--off-white); }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

/* ===== FIX SECTION ABOUT IMAGE ===== */

.about-visual {
  position: relative;
  min-height: 480px;
  height: auto;
}

.about-image-wrap {
  position: relative;
  width: 85%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* tablette */
@media (max-width: 1024px) {
  .about-visual {
    min-height: 420px;
    height: auto !important;
  }

  .about-image-wrap {
    height: 420px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .about-visual {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 170px;
  }

  .about-image-wrap {
    width: 100%;
    height: auto;
    border-radius: 24px;
  }

  .about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
  }

  .about-card-float {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 180px;
    z-index: 3;
  }

  .about-card-badge {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    z-index: 3;
    white-space: nowrap;
  }

  .about-geo-line {
    display: none;
  }
}

/* très petits écrans */
@media (max-width: 480px) {
  .about-visual {
    padding-bottom: 155px;
  }

  .about-image {
    aspect-ratio: 1 / 1.02;
  }

  .about-card-float {
    width: 165px;
    bottom: 68px;
    padding: 18px;
  }

  .about-card-badge {
    font-size: 0.75rem;
    padding: 12px 16px;
  }
}

  .about-visual {
    position: relative; height: 480px;
  }
  .about-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }
  .about-card-main {
    width: 85%; top: 0; left: 0;
    background: var(--dark);
    color: white;
    border-radius: 24px; padding: 40px;
  }
  .about-card-main h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: white;
  }
  .about-card-main p {
    font-size: 0.9rem; line-height: 1.7;
    color: rgba(255,255,255,0.55);
  }
  .about-card-main .logo-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
  }
  .about-card-float {
    bottom: 40px; right: 0;
    padding: 24px;
    background: var(--orange);
    color: white;
    width: 200px;
    border-radius: 20px;
    animation: float1 6s ease-in-out infinite;
  }
  .about-card-float .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
  }
  .about-card-float .label { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }
  .about-card-badge {
    bottom: -10px; left: 55%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 14px 22px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    animation: float2 7s ease-in-out infinite;
  }
  .about-geo-line {
    position: absolute; bottom: 0; left: 0;
    width: 70%; height: 140px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    border-radius: 0 0 0 16px;
    opacity: 0.15;
  }
  .about-content {}
  .about-content .section-title { margin-bottom: 24px; }
  .about-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-600);
    font-weight: 300;
    margin-bottom: 32px;
  }
  .about-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .about-tag {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.25s;
  }
  .about-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }

  /* ─── SERVICES ─── */
  .services { background: var(--white); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap; gap: 20px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
  }
  .service-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
    cursor: none;
  }
  .service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover .service-icon,
  .service-card:hover .service-name,
  .service-card:hover .service-desc,
  .service-card:hover .service-num { color: white; }
  .service-card:hover .service-icon-bg { background: rgba(255,255,255,0.2); }
  .service-card:hover .service-arrow { transform: translate(4px, -4px); opacity: 1; }
  .service-card > * { position: relative; z-index: 1; }
  .service-icon-bg {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: background 0.45s;
  }
  .service-icon { font-size: 1.5rem; color: var(--orange); transition: color 0.45s; }
  .service-num {
    position: absolute; top: 28px; right: 28px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-200);
    letter-spacing: 0.06em;
    transition: color 0.45s;
  }
  .service-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transition: color 0.45s;
  }
  .service-desc {
    font-size: 0.87rem;
    line-height: 1.65;
    color: var(--gray-600);
    transition: color 0.45s;
  }
  .service-arrow {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.2rem;
    opacity: 0.3;
    transition: all 0.35s;
    color: var(--dark);
  }
  .service-card:hover .service-arrow { color: white; }

  /* ─── VALUES ─── */
  .values { background: var(--off-white); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .value-item {
    display: flex; gap: 24px;
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.35s var(--ease-out);
  }
  .value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: transparent;
  }
  .value-icon-wrap {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .value-icon-wrap.orange { background: var(--orange-light); }
  .value-icon-wrap.green { background: var(--green-light); }
  .value-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .value-desc { font-size: 0.87rem; line-height: 1.65; color: var(--gray-600); }

  /* ─── STATS ─── */
  .stats-section {
    background: var(--dark);
    padding: 100px 60px;
    position: relative; overflow: hidden;
  }
  .stats-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 22vw;
    font-weight: 800;
    color: white;
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.04em;
  }
  .stats-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
  }
  .stat-item {}
  .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
  }
  .stat-number .suffix { color: var(--orange); }
  .stat-sep {
    width: 32px; height: 3px;
    background: var(--green);
    margin: 0 auto 12px;
    border-radius: 2px;
  }
  .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── DOMAINS ─── */
  .domains { background: var(--white); }
  .domains-scroll {
    display: flex; gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-top: 56px;
    scrollbar-width: none;
  }
  .domains-scroll::-webkit-scrollbar { display: none; }
  .domain-pill {
    flex-shrink: 0;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 14px 28px;
    display: flex; align-items: center; gap: 12px;
    transition: all 0.3s var(--ease-out);
    cursor: none;
  }
  .domain-pill:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
    transform: scale(1.04);
  }
  .domain-pill .icon { font-size: 1.1rem; }
  .domain-pill .name { font-weight: 500; font-size: 0.9rem; white-space: nowrap; }

  .domains-big {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gray-100);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 28px;
  }
  .domain-big-item {
    background: var(--white);
    padding: 44px 40px;
    display: flex; align-items: flex-start; gap: 24px;
    transition: all 0.4s var(--ease-out);
    position: relative; overflow: hidden;
  }
  .domain-big-item::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 3px; width: 0;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transition: width 0.5s var(--ease-out);
  }
  .domain-big-item:hover::after { width: 100%; }
  .domain-big-item:hover { background: var(--off-white); }
  .domain-big-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px; height: 60px;
    background: var(--off-white);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
  }
  .domain-big-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .domain-big-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

  /* ─── VISION BANNER ─── */
  .vision-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 90px 60px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .vision-banner::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(30,140,74,0.3) 0%, transparent 50%);
  }
  .vision-banner > * { position: relative; z-index: 1; }
  .vision-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto 28px;
    line-height: 1.2;
  }
  .vision-quote em { font-style: normal; color: rgba(255,255,255,0.7); }
  .vision-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px; margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ─── CONTACT ─── */
  .contact { background: var(--off-white); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .contact-form-wrap {
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 2px 32px rgba(0,0,0,0.06);
  }
  .form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
  }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-input, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--off-white);
    transition: all 0.25s;
    outline: none;
    resize: none;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(244,124,43,0.1);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.35s var(--ease-out);
    margin-top: 8px;
    position: relative; overflow: hidden;
  }
  .form-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    opacity: 0;
    transition: opacity 0.35s;
  }
  .form-submit span { position: relative; z-index: 1; }
  .form-submit:hover::before { opacity: 1; }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(244,124,43,0.3); }

  .contact-info { padding-top: 8px; }
  .contact-info .section-title { margin-bottom: 20px; }
  .contact-info .lead {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-weight: 300;
    margin-bottom: 44px;
  }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 18px;
    margin-bottom: 28px;
  }
  .contact-detail-icon {
    width: 44px; height: 44px;
    background: white;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
  }
  .contact-detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    padding: 72px 60px 40px;
    color: rgba(255,255,255,0.5);
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap; gap: 40px;
  }
  .footer-brand .brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .footer-brand .brand-sub { font-size: 0.82rem; max-width: 260px; line-height: 1.6; }
  .footer-dots {
    display: flex; gap: 8px; margin-top: 16px;
  }
  .footer-dot {
    width: 10px; height: 10px; border-radius: 50%;
  }
  .footer-dot.orange { background: var(--orange); }
  .footer-dot.green { background: var(--green); }
  .footer-dot.dim { background: rgba(255,255,255,0.2); }
  .footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-links-col ul { list-style: none; }
  .footer-links-col li { margin-bottom: 10px; }
  .footer-links-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    font-size: 0.87rem;
    transition: color 0.25s;
  }
  .footer-links-col a:hover { color: white; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem;
  }
  .footer-bottom a { color: var(--orange); text-decoration: none; }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav { padding: 18px 32px; }
    nav.scrolled { padding: 12px 32px; }
    section { padding: 90px 32px; }
    .hero { padding: 120px 32px 80px; }
    .stats-section { padding: 80px 32px; }
    .vision-banner { padding: 72px 32px; }
    footer { padding: 60px 32px 32px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .domains-big { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor { display: none; }
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .nav-cta-wrapper { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    section { padding: 70px 24px; }
    .hero { padding: 110px 24px 60px; }
    .hero-stats { gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stats-section { padding: 64px 24px; }
    .vision-banner { padding: 60px 24px; }
    footer { padding: 48px 24px 28px; }
    .footer-top { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 24px; }
    .hero-circle-1, .hero-circle-2, .hero-circle-3,
    .hero-accent, .hero-accent-2 { opacity: 0.4; }
  }


  /* =========================================
   PATCH CENTRAGE + RESPONSIVE MOBILE PROPRE
   À coller TOUT À LA FIN de style.css
========================================= */

/* 1) Largeur de site plus premium, centrée */
.hero-content,
.about-inner,
.services-header,
.services-grid,
.stats-inner,
.domains > .reveal,
.domains-big,
.values > .reveal,
.values-grid,
.contact-inner,
.footer-top,
.footer-bottom {
  width: min(100%, 1240px);
  margin-inline: auto;
}

/* 2) On évite l’effet trop pleine largeur */
section,
.stats-section,
.vision-banner,
footer {
  padding-left: 24px;
  padding-right: 24px;
}

/* 3) Navbar mieux contenue */
nav {
  padding-left: 24px;
  padding-right: 24px;
}

nav.scrolled {
  padding-left: 24px;
  padding-right: 24px;
}

/* 4) Hero mieux contenu */
.hero {
  padding-left: 24px;
  padding-right: 24px;
}

.hero-content {
  max-width: 760px;
}

/* 5) Mobile / petits écrans */
@media (max-width: 768px) {
  nav,
  .hero-content,
  .about-inner,
  .services-header,
  .services-grid,
  .stats-inner,
  .domains > .reveal,
  .domains-big,
  .values > .reveal,
  .values-grid,
  .contact-inner,
  .footer-top,
  .footer-bottom {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  nav {
    padding: 16px 18px !important;
  }

  nav.scrolled {
    padding: 12px 18px !important;
  }

  .nav-logo {
    gap: 10px;
    font-size: clamp(1.15rem, 5.8vw, 1.65rem);
    line-height: 1;
  }

  .nav-logo-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 0.7rem;
    border-radius: 10px;
  }

  .hamburger {
    padding: 2px;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 56px !important;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 22px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    max-width: none;
    margin-bottom: 30px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding-top: 24px;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    line-height: 1.04;
  }

  /* ABOUT : on casse les positions absolues */
  .about {
    overflow: hidden;
  }

  .about-inner {
    gap: 28px !important;
  }

  .about-visual {
    height: auto !important;
    min-height: 0 !important;
  }

  .about-card {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 0 14px 0;
  }

  .about-card-main {
    width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 22px;
  }

  .about-card-main .logo-text {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .about-card-main h3 {
    font-size: 1.3rem;
    line-height: 1.08;
  }

  .about-card-main p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-card-float,
  .about-card-badge {
    animation: none !important;
  }

  .about-geo-line {
    display: none !important;
  }

  .about-lead {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .about-tags {
    gap: 8px;
  }

  .about-tag {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  /* SERVICES */
  .services-header {
    gap: 22px;
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    padding: 28px 22px;
  }

  /* STATS */
  .stats-section {
    padding: 56px 18px !important;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }

  .stat-number {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* DOMAINS */
  .domains-big {
    grid-template-columns: 1fr !important;
  }

  .domain-big-item {
    padding: 26px 20px;
    gap: 16px;
  }

  .domain-big-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    border-radius: 14px;
  }

  .domain-big-name {
    font-size: 1rem;
    line-height: 1.2;
  }

  .domain-big-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* CONTACT */
  .contact-inner {
    gap: 28px !important;
  }

  .contact-form-wrap {
    padding: 24px 18px !important;
    border-radius: 22px;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }

  /* FOOTER */
  footer {
    padding: 44px 18px 26px !important;
  }

  .footer-top {
    gap: 28px;
  }
}

/* 6) Très petits écrans */
@media (max-width: 420px) {
  .stats-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-title {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .nav-logo {
    font-size: 1.05rem;
  }
}



/* ===== ICONES PROPRES — VERSION STABLE ===== */

.material-symbols-outlined{
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* BADGE + TAGS */
.about-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  white-space: nowrap;
}

.about-card-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: max-content;
  white-space: nowrap;
}

/* ZONES ICONES SEULES */
.service-icon,
.domain-big-icon,
.value-icon-wrap,
.contact-detail-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0; /* cache l'ancien emoji si oublié */
}

.service-icon .material-symbols-outlined,
.domain-big-icon .material-symbols-outlined,
.value-icon-wrap .material-symbols-outlined,
.contact-detail-icon .material-symbols-outlined{
  font-size: 24px;
}

.about-tag .material-symbols-outlined,
.about-card-badge .material-symbols-outlined{
  font-size: 16px;
}




.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg{
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 768px){
  .whatsapp-float{
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float svg{
    width: 27px;
    height: 27px;
  }
}




/* travaux realise */
.works-grid{
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card{
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.work-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}

.work-media{
  position: relative;
  height: 260px;
  overflow: hidden;
}

.work-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-chip{
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17,17,17,0.58);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
}

.work-body{
  padding: 24px;
}

.work-title{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.work-desc{
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.works-action{
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px){
  .works-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .works-grid{
    grid-template-columns: 1fr;
  }

  .work-media{
    height: 220px;
  }
}


/* equipe */
.team-grid{
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card{
  background: var(--off-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.team-photo{
  height: 300px;
  overflow: hidden;
}

.team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-body{
  padding: 22px;
}

.team-name{
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-position{
  font-size: 0.92rem;
  color: var(--orange);
  font-weight: 600;
}

@media (max-width: 1024px){
  .team-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .team-grid{
    grid-template-columns: 1fr;
  }

  .team-photo{
    height: 240px;
  }
}

/* partenaires css */
.partners-grid{
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-card{
  min-height: 130px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.partner-card img{
  width: 100%;
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px){
  .partners-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .partners-grid{
    grid-template-columns: 1fr;
  }
}

/* history */
/* ===== HISTORIQUE ===== */

.history{
  padding: 90px 60px;
  background: var(--off-white);
}

.history-wrap{
  margin-top: 34px;
  max-width: 980px;
}

.history-preview{
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.history-preview p{
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin: 0;
}

.history-details{
  margin-top: 18px;
}

.history-toggle{
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 12px 30px rgba(244,124,43,0.22);
}

.history-toggle::-webkit-details-marker{
  display: none;
}

.history-toggle:hover{
  transform: translateY(-2px);
}

.history-details[open] .history-toggle{
  margin-bottom: 18px;
}

.history-details[open] .history-toggle::after{
  content: "Réduire";
  margin-left: 10px;
  font-weight: 500;
  opacity: 0.92;
}

.history-details:not([open]) .history-toggle::after{
  content: "";
}

.history-content{
  animation: fadeHistory 0.35s ease;
}

.history-card{
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}

.history-card h3{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.history-card h3:not(:first-child){
  margin-top: 26px;
}

.history-card p{
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin: 0 0 16px;
}

@keyframes fadeHistory{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px){
  .history{
    padding: 80px 32px;
  }
}

@media (max-width: 768px){
  .history{
    padding: 70px 24px;
  }

  .history-preview,
  .history-card{
    padding: 24px 20px;
    border-radius: 20px;
  }

  .history-card p,
  .history-preview p{
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

/* location */
.map-section{
  padding: 90px 60px;
  background: var(--white);
}

.map-card{
  margin-top: 34px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  height: 460px;
  background: #f5f5f5;
}

.map-card iframe{
  display: block;
  width: 100%;
  height: 100%;
}

.map-action{
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px){
  .map-section{
    padding: 80px 32px;
  }

  .map-card{
    height: 400px;
  }
}

@media (max-width: 768px){
  .map-section{
    padding: 70px 24px;
  }

  .map-card{
    height: 320px;
    border-radius: 20px;
  }
}

/* allocution */
/* ===== ALLOCUTION ===== */

.allocution{
  padding: 90px 60px;
  background: var(--white);
}

.allocution-wrap{
  margin-top: 34px;
  max-width: 980px;
}

.allocution-preview{
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.allocution-head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.allocution-avatar{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.allocution-name{
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.allocution-role{
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.allocution-preview p{
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin: 0;
}

.allocution-details{
  margin-top: 18px;
}

.allocution-toggle{
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 12px 30px rgba(244,124,43,0.22);
}

.allocution-toggle::-webkit-details-marker{
  display: none;
}

.allocution-toggle:hover{
  transform: translateY(-2px);
}

.allocution-details[open] .allocution-toggle{
  margin-bottom: 18px;
}

.allocution-details[open] .allocution-toggle::after{
  content: "Réduire";
  margin-left: 10px;
  font-weight: 500;
  opacity: 0.92;
}

.allocution-details:not([open]) .allocution-toggle::after{
  content: "";
}

.allocution-content{
  animation: fadeAllocution 0.35s ease;
}

.allocution-card{
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}

.allocution-head-full{
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.allocution-card h3{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.allocution-card p{
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin: 0 0 16px;
}

.allocution-signature{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.allocution-sign-name{
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--dark);
}

.allocution-sign-role,
.allocution-sign-company{
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--gray-600);
}

@keyframes fadeAllocution{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px){
  .allocution{
    padding: 80px 32px;
  }
}

@media (max-width: 768px){
  .allocution{
    padding: 70px 24px;
  }

  .allocution-preview,
  .allocution-card{
    padding: 24px 20px;
    border-radius: 20px;
  }

  .allocution-head{
    align-items: flex-start;
  }

  .allocution-avatar{
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .allocution-preview p,
  .allocution-card p{
    font-size: 0.95rem;
    line-height: 1.8;
  }
}