/* ═══════════════════════════════════════════
   3S MOROCCO — STYLESHEET
   ═══════════════════════════════════════════ */

:root {
  --c-bg: #0e0e0e;
  --c-bg2: #141414;
  --c-bg3: #1a1a1a;
  --c-surface: #1e1e1e;
  --c-border: rgba(255, 255, 255, 0.07);
  --c-orange: #f47c2a;
  --c-orange-dim: #c96318;
  --c-orange-glow: rgba(244, 124, 42, 0.18);
  --c-red: #d1171a;
  --c-navy: #162237;
  --c-text: #f0ede8;
  --c-text-muted: #888;
  --c-text-dim: #555;
  --c-white: #ffffff;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Bebas Neue", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-h: 96px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--c-orange);
  border-radius: 2px;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--c-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s;
}
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(244, 124, 42, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--c-orange);
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 1000;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--c-border);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-img {
  width: auto;
  height: 74px;
  max-width: 220px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 14px;
  line-height: 1.4;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--c-orange);
  letter-spacing: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.lang-switcher a {
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.lang-switcher a:hover {
  color: var(--c-white);
}
.lang-switcher a.active {
  color: var(--c-orange);
}
.lang-switcher span {
  color: rgba(255, 255, 255, 0.34);
}

/* Links */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-orange);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--c-white);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--c-orange);
}
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-bg) !important;
  background: var(--c-orange);
  padding: 10px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition);
}
.nav-cta:hover {
  background: var(--c-orange-dim);
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--c-text);
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 5vw 36px;
  z-index: 999;
  border-top: 1px solid var(--c-border);
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  transition:
    color var(--transition),
    padding-left var(--transition);
}
.mobile-menu a:hover {
  color: var(--c-orange);
  padding-left: 12px;
}

.mobile-lang-switcher {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.mobile-lang-switcher a {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.86rem;
  letter-spacing: 1.4px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-lang-switcher a:hover {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.24);
  padding-left: 14px;
}
.mobile-lang-switcher a.active {
  color: var(--c-orange);
  border-color: rgba(244, 124, 42, 0.45);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#accueil {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.94) 0%,
    rgba(10, 10, 10, 0.72) 55%,
    rgba(10, 10, 10, 0.3) 100%
  );
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.07) 2px,
    rgba(0, 0, 0, 0.07) 4px
  );
}

/* Red accent line at bottom of hero */
.hero-red-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 920px;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--c-orange);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.06;
  color: var(--c-white);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title span {
  color: var(--c-orange);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: rgba(240, 237, 232, 0.78);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 46px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* Buttons */
.btn-primary {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--c-orange);
  color: var(--c-bg);
  padding: 16px 38px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--c-orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244, 124, 42, 0.38);
}
.btn-outline {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--c-white);
  padding: 14px 38px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  position: absolute;
  bottom: 52px;
  left: 5vw;
  right: 5vw;
  display: flex;
  gap: 52px;
  z-index: 2;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--c-orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 5vw;
  bottom: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text-dim);
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-orange), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.5);
  }
}

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker-wrap {
  background: var(--c-red);
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: ticker 24s linear infinite;
}
.ticker-item {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 38px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ticker-item::after {
  content: "◆";
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.4);
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════
   SECTION BASE
══════════════════════════════════ */
section {
  padding: 120px 5vw;
}

.section-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-orange);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--c-orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 22px;
}
.section-title span {
  color: var(--c-orange);
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-text-muted);
  max-width: 540px;
  line-height: 1.85;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services {
  background: var(--c-bg2);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.services-intro-text {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--c-surface);
  padding: 44px 36px;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition:
    background var(--transition),
    transform var(--transition);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--c-orange);
  transition: height 0.4s ease;
}
.service-card:hover {
  background: #222;
  transform: translateY(-4px);
}
.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--c-orange);
}
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.service-num {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
}

/* ══════════════════════════════════
   SECTEURS
══════════════════════════════════ */
#secteurs {
  background: var(--c-bg);
  padding: 0;
}

.secteurs-showcase {
  display: flex;
  height: 760px;
  min-height: 760px;
  width: 100%;
}

.secteur-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-width: 0;
  flex: 1 1 0;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.secteurs-showcase:hover .secteur-panel {
  flex: 0.88 1 0;
}

.secteurs-showcase .secteur-panel:hover {
  flex: 1.24 1 0;
}

.secteur-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(1.04);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.secteur-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.5) 58%,
    rgba(8, 8, 8, 0.82) 100%
  );
  transition: opacity 0.45s ease;
}

.secteurs-showcase .secteur-panel:hover img {
  transform: scaleX(1.12);
}

.secteurs-showcase:hover .secteur-panel:not(:hover)::after {
  opacity: 0.92;
}

.secteur-panel h3 {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 2.6vw, 3.05rem);
  color: var(--c-white);
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

/* ══════════════════════════════════
   VIDEO SECTION
══════════════════════════════════ */
#video-section {
  background: var(--c-bg3);
  padding: 100px 5vw;
}

.video-wrap {
  margin-top: 64px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--c-border);
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.video-overlay-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background var(--transition);
}
.video-overlay-play:hover {
  background: rgba(0, 0, 0, 0.2);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: pulse 2s infinite;
}
.play-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--c-bg);
  margin-left: 4px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 124, 42, 0.5);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(244, 124, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 124, 42, 0);
  }
}

/* ══════════════════════════════════
   À PROPOS
══════════════════════════════════ */
#apropos {
  background: var(--c-bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 72px;
}
.about-visual {
  position: relative;
}

.about-big-year {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 124, 42, 0.2);
  line-height: 1;
  user-select: none;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg2);
  animation: rotateBadge 20s linear infinite;
}
.about-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rotateBadge 20s linear infinite reverse;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--c-white);
  line-height: 1;
}
.about-badge-text {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-orange);
  text-align: center;
  line-height: 1.4;
}
@keyframes rotateBadge {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-text {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.value-item {
  padding: 20px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.value-item:hover {
  border-color: var(--c-orange);
}
.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  margin-top: 5px;
  flex-shrink: 0;
}
.value-item h4 {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 4px;
}
.value-item p {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════
   BRANDS STRIP
══════════════════════════════════ */
.brands-strip {
  background: var(--c-bg);
  padding: 60px 5vw;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.brands-label {
  text-align: center;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 36px;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 56px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
  cursor: default;
}
.brand-name:hover {
  color: var(--c-orange);
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact {
  background: var(--c-bg3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 72px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-white);
  margin-bottom: 34px;
  letter-spacing: 1px;
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-orange);
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
}
.contact-item-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 0.93rem;
  color: var(--c-text-muted);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  resize: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px var(--c-orange-glow);
}
.form-group textarea {
  min-height: 140px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-group select option {
  background: #1e1e1e;
}

.form-submit {
  margin-top: 8px;
  align-self: flex-start;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--c-orange);
  color: var(--c-bg);
  padding: 16px 46px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.form-submit:hover {
  background: var(--c-orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 124, 42, 0.4);
}
.form-submit:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-msg {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: none;
}
.form-msg.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  display: block;
}
.form-msg.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  display: block;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #080808;
  padding: 64px 5vw 28px;
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  line-height: 1.85;
  margin-top: 22px;
  max-width: 300px;
}
.footer-logo-link {
  text-decoration: none;
  display: inline-block;
}
.footer-logo-img {
  width: auto;
  height: 76px;
  max-width: 282px;
  object-fit: contain;
  display: block;
  transition: filter var(--transition);
}
.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 0 12px rgba(244, 124, 42, 0.35));
}

.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--c-orange);
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--c-text-dim);
}
.footer-copy span {
  color: var(--c-orange);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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: 1200px) {
  .nav-logo-text {
    display: none;
  }
  .nav-right {
    gap: 16px;
  }
  .nav-links {
    gap: 24px;
  }
  .nav-links a {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
  }
  .nav-cta {
    padding: 9px 18px;
  }
  .lang-switcher {
    font-size: 0.74rem;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 1320px), (max-height: 980px) {
  #accueil {
    display: block;
    height: auto;
    min-height: 0;
    padding-top: calc(var(--nav-h) + 30px);
    padding-bottom: 34px;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 5vw;
  }
  .hero-eyebrow,
  .hero-scroll {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.02;
    max-width: 12ch;
    margin-bottom: 22px;
  }
  .hero-desc {
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.65;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 30px 5vw 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
  .stat-num {
    font-size: 2.05rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 88px;
  }
  nav {
    padding: 0 4vw;
  }
  .nav-right {
    gap: 14px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-logo-img {
    height: 60px;
    max-width: 182px;
  }

  #accueil {
    display: block;
    height: auto;
    min-height: 0;
    padding-top: calc(var(--nav-h) + 26px);
    padding-bottom: 36px;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 5vw;
  }
  .hero-eyebrow,
  .hero-scroll {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.8rem, 9vw, 5.2rem);
    line-height: 1.02;
    max-width: 12ch;
  }
  .hero-desc {
    max-width: 100%;
    margin-bottom: 32px;
  }
  .hero-actions {
    width: 100%;
    max-width: 620px;
    gap: 12px;
  }
  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 30px 5vw 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .stat-num {
    font-size: 2.2rem;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .secteurs-showcase {
    height: 560px;
    min-height: 560px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: flex;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 84px;
  }
  body {
    cursor: auto;
  }
  #cursor,
  #cursor-ring {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
    max-width: 100%;
  }
  .hero-stats {
    margin: 24px 5vw 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .stat-num {
    font-size: 1.95rem;
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 1.4px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    letter-spacing: 2px;
    font-size: 0.9rem;
  }

  .secteurs-showcase {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }
  .secteur-panel,
  .secteurs-showcase:hover .secteur-panel,
  .secteurs-showcase .secteur-panel:hover {
    flex: 1 1 auto;
  }
  .secteur-panel {
    min-height: 240px;
  }
  .secteur-panel h3 {
    bottom: 28px;
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
  .about-grid {
    gap: 42px;
    margin-top: 44px;
  }
  .about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6px;
  }
  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -8px;
    width: 118px;
    height: 118px;
  }

  .nav-logo-img {
    height: 90px;
    max-width: 212px;
  }
  .lang-switcher {
    font-size: 0.72rem;
    letter-spacing: 1px;
    gap: 6px;
  }
  .footer-logo-img {
    height: 82px;
    max-width: 204px;
  }
  section {
    padding: 72px 5vw;
  }
  .about-big-year {
    font-size: clamp(4.5rem, 22vw, 6rem);
  }
}

@media (max-width: 520px) {
  html {
    font-size: 15px;
  }
  :root {
    --nav-h: 78px;
  }
  nav {
    padding: 0 4vw;
  }
  .nav-right {
    gap: 10px;
  }
  .lang-switcher {
    font-size: 0.66rem;
    letter-spacing: 0.8px;
  }
  .mobile-menu a {
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .hero-content {
    padding: 0 6vw;
  }
  .hero-title {
    font-size: clamp(1.9rem, 12vw, 2.7rem);
  }
  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stat-num {
    font-size: 1.8rem;
  }

  .ticker-item {
    padding: 0 22px;
    letter-spacing: 2px;
  }
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
  .section-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .service-card {
    padding: 34px 24px;
  }
  .secteur-panel {
    min-height: 210px;
  }
  .secteur-panel h3 {
    bottom: 24px;
    font-size: clamp(1.4rem, 9vw, 2rem);
  }

  .nav-logo-img {
    height: 88px;
    max-width: 210px;
  }
  .footer-logo-img {
    height: 52px;
    max-width: 190px;
  }

  .about-badge {
    width: 100px;
    height: 100px;
  }
  .about-badge-num {
    font-size: 1.8rem;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 20px;
  }
  .form-submit {
    width: 100%;
    align-self: stretch;
    text-align: center;
    padding: 13px 14px;
  }

  section {
    padding: 64px 6vw;
  }
}
