/* ===================================================
   ÉLECTRIP TRANSPORTS — STYLESHEET
   =================================================== */

:root {
  --dark: #143b47;
  --dark-2: #102e38;
  --orange: #f7941d;
  --orange-dark: #e07e0a;
  --orange-light: #fef1e0;
  --text-muted: #56686f;
  --text-light: #9fb0b5;
  --border: #e9eeef;
  --bg-alt: #f6f9f9;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--orange);
  color: #fff;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* ===== Reveal animation ===== */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
}
.reveal.in-view {
  animation: reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes speed {
  0% {
    transform: translateX(-40%) skewX(-12deg);
  }
  100% {
    transform: translateX(160%) skewX(-12deg);
  }
}

/* ===== Eyebrow / section head ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-light {
  color: var(--orange);
}
.eyebrow-bar {
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-head h2,
.pourquoi-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
  color: var(--dark);
}
.section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(16, 46, 56, 0.1);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 13px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 11px;
  background: var(--bg-alt);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.logo-sub {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: #8a979c;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-desktop a {
  font-weight: 600;
  font-size: 15px;
  color: #2c3f46;
  transition: color 0.2s;
}
.nav-desktop a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}
.header-phone-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 17px;
}
.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header-phone-label {
  font-size: 11px;
  color: #8a979c;
  font-weight: 600;
}
.header-phone-number {
  font-size: 14px;
  font-weight: 700;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(247, 148, 29, 0.34);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 148, 29, 0.42);
  background: var(--orange-dark);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e3e9ea;
  background: #fff;
  border-radius: 12px;
  color: var(--dark);
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 12px 24px 22px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 13px 6px;
  font-weight: 600;
  font-size: 16px;
  color: #2c3f46;
  border-bottom: 1px solid #f1f4f5;
}
.mobile-menu-call {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark);
  color: #fff !important;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  border-bottom: none !important;
  margin-top: 8px;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 90% at 78% 8%,
      rgba(247, 148, 29, 0.16),
      transparent 55%
    ),
    radial-gradient(80% 70% at 0% 100%, rgba(27, 75, 90, 0.55), transparent 60%);
}
.speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.speed-line {
  position: absolute;
  left: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--orange));
  animation: speed linear infinite;
}
.sl-1 {
  top: 18%;
  width: 38%;
  height: 3px;
  opacity: 0.5;
  animation-duration: 6.5s;
}
.sl-2 {
  top: 31%;
  width: 26%;
  height: 2px;
  opacity: 0.32;
  animation-duration: 8s;
  animation-delay: 1.2s;
}
.sl-3 {
  top: 62%;
  width: 44%;
  height: 3px;
  opacity: 0.4;
  animation-duration: 7.2s;
  animation-delay: 0.6s;
}
.sl-4 {
  top: 78%;
  width: 30%;
  height: 2px;
  opacity: 0.14;
  background: linear-gradient(90deg, transparent, #fff);
  animation-duration: 9s;
  animation-delay: 2s;
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 116px) 32px clamp(56px, 6vw, 84px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 26px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #d6e0e3;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.04;
  letter-spacing: -1px;
  margin: 0 0 22px;
}
.hero h1 .accent {
  color: var(--orange);
}

.hero-lead {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: #c6d2d6;
  max-width: 520px;
  margin: 0 0 16px;
}
.hero-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  color: #fff;
  margin: 0 0 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-cta-lg {
  font-size: 16px;
  padding: 16px 28px;
  box-shadow: 0 12px 30px rgba(247, 148, 29, 0.4);
}
.btn-cta-lg:hover {
  box-shadow: 0 16px 38px rgba(247, 148, 29, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-visual {
  position: relative;
}
.hero-visual-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.hero-visual-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.visual-label {
  margin-top: 14px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.floating-card {
  position: absolute;
  background: #fff;
  color: var(--dark);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}
.floating-card-1 {
  left: -18px;
  bottom: 34px;
}
.floating-card-2 {
  right: -14px;
  top: 26px;
  background: var(--dark);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  animation-duration: 5.6s;
  animation-delay: 1s;
  font-size: 13px;
  font-weight: 600;
}
.floating-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 22px;
}
.floating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.floating-text strong {
  font-family: var(--font-heading);
  font-size: 17px;
}
.floating-text span {
  font-size: 12.5px;
  color: #7c8b91;
  font-weight: 600;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.25);
}

.hero-stats {
  margin-top: clamp(44px, 5vw, 72px);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
}
.stat-label {
  font-size: 13.5px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}

/* ===================================================
   SERVICES
   =================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 59, 71, 0.1);
  border-color: #fff;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 27px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
}

.service-card-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.service-card-dark:hover {
  box-shadow: 0 22px 48px rgba(20, 59, 71, 0.32);
}
.service-card-dark h3 {
  color: #fff;
}
.service-card-dark p {
  color: #bbccd0;
}
.card-icon-orange {
  background: var(--orange);
  color: #fff;
}
.card-link-orange {
  color: var(--orange);
}

/* ===================================================
   SECTEURS
   =================================================== */
.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.secteur-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.secteur-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(20, 59, 71, 0.12);
}
.secteur-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.secteur-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visual-label-light {
  position: absolute;
  bottom: 10px;
  font-family: ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: #9aaab0;
}
.secteur-body {
  padding: 24px 24px 26px;
}
.secteur-body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 9px;
  color: var(--dark);
}
.secteur-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ===================================================
   POURQUOI NOUS
   =================================================== */
.pourquoi {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: clamp(72px, 8vw, 112px) 0;
}
.pourquoi-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 70% at 100% 0%,
    rgba(247, 148, 29, 0.14),
    transparent 50%
  );
}
.pourquoi-inner {
  position: relative;
}
.pourquoi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.pourquoi-title {
  color: #fff;
  margin: 0 0 18px;
}
.pourquoi-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #c2d0d4;
  margin: 0 0 34px;
  max-width: 480px;
}

.pourquoi-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(247, 148, 29, 0.16);
  color: var(--orange);
  font-size: 22px;
}
.feature-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16.5px;
  color: #fff;
}
.feature-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-light);
  margin-top: 3px;
}

.coverage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 38px);
}
.coverage-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.coverage-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 23px;
}
.coverage-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
}
.coverage-sub {
  font-size: 13.5px;
  color: var(--text-light);
}
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}
.tag {
  font-size: 13.5px;
  font-weight: 600;
  color: #d6e0e3;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 999px;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.counter {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--orange);
  line-height: 1;
}
.counter-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 6px;
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: clamp(30px, 3vw, 40px);
  text-align: center;
}
.founder-photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(247, 148, 29, 0.4);
}
.founder-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.founder-title {
  font-size: 13.5px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 14.5px;
  line-height: 1.65;
  color: #c2d0d4;
  text-align: left;
  margin: 0 0 26px;
}
.founder-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  justify-content: center;
}
.founder-stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--orange);
}
.founder-stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

/* ===================================================
   CLIENTS
   =================================================== */
.clients {
  padding: clamp(60px, 6vw, 84px) 0;
}
.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8a979c;
  margin: 0 0 34px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.client-logo {
  display: grid;
  place-items: center;
  height: 96px;
  border: 1px solid #ecf1f2;
  border-radius: 16px;
  background: #fafcfc;
}
.client-logo-img {
  max-width: 70%;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.25s;
}
.client-logo:hover .client-logo-img {
  filter: grayscale(0) opacity(1);
}
.client-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
  color: #9aa7ac;
}
.client-logo-dashed {
  border: 1px dashed #dde5e6;
}
.client-logo-dashed span {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #aeb9bd;
}
.clients-note {
  text-align: center;
  font-size: 13px;
  color: #aeb9bd;
  margin: 22px 0 0;
  font-family: ui-monospace, monospace;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 59, 71, 0.12);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: clamp(32px, 4vw, 48px);
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 0% 100%,
    rgba(247, 148, 29, 0.16),
    transparent 55%
  );
}
.contact-panel > * {
  position: relative;
}
.contact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.contact-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: #c2d0d4;
  margin: 0 0 32px;
}

.contact-phone-box {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: rgba(247, 148, 29, 0.14);
  border: 1px solid rgba(247, 148, 29, 0.35);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
  transition: background 0.2s;
  position: relative;
}
.contact-phone-box:hover {
  background: rgba(247, 148, 29, 0.22);
}
.contact-phone-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 24px;
}
.contact-phone-label {
  display: block;
  font-size: 12.5px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contact-phone-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.contact-info {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.contact-info-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
  font-size: 20px;
}
.contact-info-title {
  font-weight: 700;
  font-size: 15px;
}
.contact-info-sub {
  font-size: 13.5px;
  color: var(--text-light);
  margin-top: 2px;
}

.contact-form-wrap {
  background: #fff;
  padding: clamp(32px, 4vw, 48px);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid #dde5e6;
  border-radius: 11px;
  outline: none;
  color: var(--dark);
  background: #fbfdfd;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-field select {
  cursor: pointer;
}
.form-field textarea {
  resize: vertical;
  min-height: 108px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.16);
}
.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #d9480f;
}
.form-error {
  font-size: 12.5px;
  color: #d9480f;
  font-weight: 600;
  min-height: 15px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(247, 148, 29, 0.34);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(247, 148, 29, 0.44);
  background: var(--orange-dark);
}
.form-disclaimer {
  font-size: 12.5px;
  color: #8a979c;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.form-success {
  height: 100%;
  min-height: 380px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 10px;
}
.form-success:not([hidden]) {
  display: flex;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #e7f7ef;
  color: #13a05a;
  font-size: 42px;
  margin-bottom: 24px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--dark);
}
.form-success p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0 0 28px;
}
.form-success p strong {
  color: var(--dark);
}
.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border: 1px solid #dde5e6;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-reset:hover {
  border-color: var(--orange);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--dark-2);
  color: #fff;
  padding: clamp(56px, 6vw, 76px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.footer-logo .logo-main {
  color: #fff;
}
.footer-logo .logo-sub {
  color: #7e9097;
}
.footer-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 300px;
  margin: 0 0 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: #c2d0d4;
  font-size: 19px;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a,
.footer-links span {
  font-size: 14.5px;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-cta {
  color: var(--orange) !important;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 13px;
  color: #7e9097;
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  font-size: 13px;
  color: #7e9097;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
}

/* ===================================================
   STICKY CTA
   =================================================== */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(247, 148, 29, 0.5);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.2s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sticky-cta:hover {
  background: var(--orange-dark);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 880px) {
  .nav-desktop,
  .header-phone {
    display: none !important;
  }
  .menu-btn {
    display: inline-flex !important;
  }
  .hero-grid,
  .pourquoi-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 13px 20px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    gap: 6px;
  }
  .header-actions {
    gap: 4px;
  }
  .logo {
    gap: 6px;
  }
  .logo-img {
    width: 38px;
    height: 38px;
  }
  .logo-main {
    font-size: 15px;
  }
  .logo-sub {
    display: none;
  }
  .btn-cta i {
    display: none;
  }
  .btn-cta span,
  .btn-cta {
    font-size: 12px;
    padding: 9px 12px;
  }
}
