* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --navy: #1a2840;
  --navy-light: #243552;
  --navy-dark: #0f1a2e;
  --gold: #aa915f;
  --gold-light: #c4a876;
  --white: #ffffff;
  --cream: #f8f6f1;
  --text-muted: #8a8a8a;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Loader Screen */
.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeOutLoader 0.8s ease 2.5s forwards;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  height: clamp(80px, 15vw, 120px);
  object-fit: contain;
  opacity: 0;
  animation: fadeInOut 2.5s ease forwards;
}

.loader-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(12px, 5vw, 56px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInOut 2.5s ease forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeOutLoader {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.page-content {
  opacity: 0;
  animation: fadeInPage 1s ease 3s forwards;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}

/* Custom Cursor */
body {
  cursor: none;
}

.custom-cursor {
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.5;
}

a,
button {
  cursor: none;
}

/* Navigation LatÃ©rale */
.side-nav {
  position: fixed;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.side-nav-dot {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
}

.side-nav-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.5);
}

.side-nav-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease, color 0.4s ease;
  white-space: nowrap;
}

/* AprÃ¨s le scroll, les dots deviennent noirs */
body.scrolled .side-nav-dot {
  border-color: var(--navy);
}

body.scrolled .side-nav-dot::after {
  color: var(--navy);
}

.side-nav-dot:hover::after {
  opacity: 1;
}

/* Header Horizontal */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: clamp(25px, 4vw, 40px) clamp(30px, 8vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
  transition: all 0.5s ease;
  width: 100%;
  max-width: 100vw;
}

.header.scrolled {
  background: var(--navy);
  backdrop-filter: blur(10px);
  padding: clamp(20px, 3vw, 25px) clamp(30px, 8vw, 80px);
  box-shadow: 0 1px 0 rgba(155, 132, 86, 0.1);
}

.header.scrolled .nav-horizontal a {
  color: var(--white);
}

.header.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--white) !important;
}

.header.scrolled .nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.header.scrolled .burger span {
  background: var(--white);
}

.logo-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-brand-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 1px;
}

.header.scrolled .header-brand-text {
  color: var(--white);
}

.logo-main {
  display: none;
}

.nav-horizontal {
  display: flex;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
}

.nav-horizontal a {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-horizontal a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-horizontal a:hover {
  color: var(--gold);
}

.nav-horizontal a:hover::before {
  width: 100%;
}

.nav-cta {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 28px);
  border: 1px solid var(--gold);
  color: var(--white) !important;
  background: transparent;
  transition: all 0.4s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}

/* Hero Split Screen */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.fleur-de-lys-container {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fleur-de-lys {
  font-size: 28px;
  color: var(--gold-light);
  position: relative;
  z-index: 2;
  animation: pulse-lys 3s ease-in-out infinite;
}

.header.scrolled .fleur-de-lys {
  color: var(--gold-light);
}

.wave-ring {
  position: absolute;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  animation: wave-expand 3s ease-out infinite;
}

.wave-ring:nth-child(2) {
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.wave-ring:nth-child(3) {
  width: 45px;
  height: 45px;
  animation-delay: 1s;
}

.wave-ring:nth-child(4) {
  width: 50px;
  height: 50px;
  animation-delay: 2s;
}

@keyframes pulse-lys {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes wave-expand {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hero-left {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(180px, 20vw, 180px) clamp(30px, 8vw, 80px)
    clamp(100px, 15vw, 180px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(155,132,86,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.hero-content-left {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-badge {
  display: inline-block;
  padding: clamp(6px, 1vw, 8px) clamp(15px, 2vw, 20px);
  border: 1px solid var(--gold);
  font-size: clamp(8px, 1.2vw, 10px);
  letter-spacing: clamp(2px, 0.3vw, 3px);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(30px, 4vw, 50px);
  animation: fadeIn 1s ease 0.3s both;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 30px;
  animation: slideUp 1s ease 0.5s both;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-title strong {
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.hero-description {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(30px, 4vw, 50px);
  max-width: clamp(300px, 40vw, 500px);
  animation: slideUp 1s ease 0.7s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 15px);
  padding: clamp(14px, 2vw, 18px) clamp(30px, 4vw, 40px);
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  transition: all 0.4s ease;
  animation: fadeIn 1s ease 0.9s both;
}

.hero-cta:hover {
  background: var(--gold-light);
  gap: 20px;
}

.hero-cta::after {
  font-size: clamp(14px, 1.8vw, 16px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 15px);
  padding: clamp(14px, 2vw, 18px) clamp(30px, 4vw, 40px);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  transition: all 0.4s ease;
  animation: fadeIn 1s ease 1s both;
  margin-top: clamp(10px, 1.5vw, 15px);
}
.hero-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  gap: 20px;
}

.hero-cta-secondary::after {
  font-size: clamp(14px, 1.8vw, 16px);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: nowrap;
}

.hero-right {
  background: rgb(54, 54, 54);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px;
  position: relative;
}

.hero-right::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.hero-visual {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  transform: translateY(-140px);
}

.hero-feature {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.hero-feature-title {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: clamp(0.8px, 0.1vw, 1px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: clamp(6px, 0.8vw, 8px);
}

.hero-feature-desc {
  font-size: clamp(11px, 1.5vw, 13px);
  color: grey;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Approach Section - Diagonal Split */
.approach-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
  padding: clamp(80px, 12vw, 140px) clamp(30px, 8vw, 80px);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.12;
  z-index: 0;
}

.approach-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.approach-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: clamp(30px, 4vw, 40px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.approach-text {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: clamp(20px, 2.5vw, 25px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-top: clamp(40px, 6vw, 60px);
}

.approach-value {
  position: relative;
  padding-left: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-value:hover {
  transform: translateX(10px);
}

.approach-value::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s ease;
}

.approach-value:hover::before {
  width: 25px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.approach-value-title {
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 600;
  letter-spacing: clamp(0.8px, 0.1vw, 1px);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: clamp(8px, 1vw, 10px);
  transition: color 0.3s ease;
}

.approach-value:hover .approach-value-title {
  color: var(--gold);
}

.approach-value-desc {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--text-muted);
  line-height: 1.7;
}

.approach-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.approach-image-block {
  aspect-ratio: 1;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-image-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(155, 132, 86, 0.3);
}

.approach-image-block:nth-child(2) {
  margin-top: 40px;
}

.approach-image-block:nth-child(3) {
  margin-top: -40px;
}

.approach-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--navy) 0%,
    rgba(155, 132, 86, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-image-block:hover .approach-image-overlay {
  opacity: 1;
  font-size: 70px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  transform: scale(1.1);
}

/* Services Carousel */
.services-section {
  background: var(--navy);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.services-header {
  text-align: center;
  margin-bottom: clamp(60px, 10vw, 100px);
  padding: 0 clamp(30px, 8vw, 80px);
}

.services-label {
  font-size: clamp(8px, 1.2vw, 12px);
  letter-spacing: clamp(2px, 0.3vw, 4px);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(20px, 3vw, 30px);
}
.services-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  text-align: center;
}

.services-carousel {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  padding: 0 clamp(30px, 8vw, 80px);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 1 clamp(280px, 35vw, 400px);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: clamp(40px, 6vw, 60px) clamp(30px, 4vw, 40px);
  border: 1px solid rgba(155, 132, 86, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(155, 132, 86, 0.3);
}

.service-icon {
  width: clamp(50px, 6vw, 60px);
  height: clamp(50px, 6vw, 60px);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: clamp(20px, 3vw, 30px);
  color: var(--navy);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.8vw, 24px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: clamp(15px, 2vw, 20px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-description {
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: clamp(20px, 3vw, 30px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 10px);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 15px;
}

/* Solutions Masonry */
.solutions-section {
  background: var(--cream);
  padding: clamp(80px, 12vw, 100px) clamp(30px, 8vw, 80px);
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/paris.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  transform: scaleX(-1);
  z-index: 0;
}

.solutions-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(248, 246, 241, 1) 0%,
    rgba(248, 246, 241, 0.95) 15%,
    rgba(248, 246, 241, 0.85) 30%,
    rgba(248, 246, 241, 0.65) 50%,
    rgba(248, 246, 241, 0.4) 65%,
    rgba(248, 246, 241, 0.2) 75%,
    rgba(248, 246, 241, 0) 80%,
    rgba(248, 246, 241, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.solutions-header {
  max-width: clamp(300px, 50vw, 800px);
  margin: 0 auto clamp(60px, 10vw, 100px);
  position: relative;
  z-index: 2;
  text-align: center;
}

.solutions-label {
  font-size: clamp(8px, 1.2vw, 12px);
  letter-spacing: clamp(2px, 0.3vw, 4px);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.solutions-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

.solutions-description {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.9;
  color: var(--text-muted);
}

.solutions-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 60px);
  max-width: clamp(300px, 90vw, 1000px);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}

.solution-card {
  background: var(--white);
  padding: clamp(40px, 5vw, 50px) clamp(30px, 4vw, 40px);
  border: 1px solid rgba(155, 132, 86, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  max-width: clamp(280px, 35vw, 350px);
  height: 100%;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
  transform: translateX(10px);
  box-shadow: -10px 10px 40px rgba(26, 40, 64, 0.15);
  border-color: rgba(155, 132, 86, 0.3);
}

.solution-card:hover::before {
  height: 100%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.solution-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(12px, 1.6vw, 14px);
  color: var(--gold);
  margin-bottom: clamp(20px, 2.5vw, 25px);
  font-weight: 600;
  transition: all 0.4s ease;
}

.solution-card:hover .solution-number {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.solution-title {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: clamp(15px, 2vw, 20px);
  letter-spacing: clamp(0.4px, 0.05vw, 0.5px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.solution-description {
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: clamp(20px, 3vw, 30px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.solution-features {
  list-style: none;
  margin-bottom: 30px;
}

.solution-features li {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--text-muted);
  padding: clamp(6px, 0.8vw, 8px) 0;
  padding-left: clamp(20px, 2.5vw, 25px);
  position: relative;
}

.solution-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.solution-cta {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 10px);
  transition: all 0.3s ease;
  margin-top: auto;
}

.solution-cta:hover {
  color: var(--gold);
  gap: 15px;
}

/* Nous Rejoindre Section */
.join-section {
  min-height: 60vh;
  background: var(--navy);
  padding: clamp(40px, 6vw, 60px) clamp(30px, 8vw, 80px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/desk.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.4;
  z-index: 0;
}

.join-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 40, 64, 0.6) 0%,
    rgba(26, 40, 64, 0.5) 50%,
    rgba(26, 40, 64, 0.65) 100%
  );
  z-index: 1;
}

.join-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.join-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}

.join-label {
  font-size: clamp(8px, 1.2vw, 12px);
  letter-spacing: clamp(2px, 0.3vw, 4px);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(10px, 1.5vw, 15px);
}

.join-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: clamp(20px, 3vw, 30px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.join-title em {
  color: var(--gold);
  font-style: italic;
}

.join-description {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(30px, 4vw, 50px);
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.join-cta-wrapper {
  margin-top: clamp(20px, 3vw, 30px);
}

/* Contact Immersive */
.contact-section {
  min-height: 100vh;
  background: var(--navy);
  padding: clamp(80px, 12vw, 140px) clamp(30px, 8vw, 80px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/Boeing.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.18;
  z-index: 0;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(155, 132, 86, 0.05) 100%
  );
  z-index: 1;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  margin-bottom: 80px;
}

.contact-label {
  font-size: clamp(8px, 1.2vw, 12px);
  letter-spacing: clamp(2px, 0.3vw, 4px);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  max-width: clamp(300px, 50vw, 700px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 8vw, 100px);
}

.contact-info h3 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: clamp(0.8px, 0.1vw, 1px);
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.contact-info p {
  font-size: clamp(13px, 1.7vw, 15px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(30px, 4vw, 50px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
}

.contact-detail {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.contact-detail-label {
  font-size: clamp(8px, 1.2vw, 10px);
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: clamp(6px, 0.8vw, 8px);
}

.contact-detail-value {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 30px);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(155, 132, 86, 0.2);
  padding: clamp(14px, 2vw, 18px) clamp(15px, 2vw, 20px);
  color: var(--white);
  font-size: clamp(13px, 1.7vw, 15px);
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: clamp(120px, 15vw, 150px);
}

.form-submit {
  padding: clamp(14px, 2vw, 18px) clamp(30px, 4vw, 40px);
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  justify-self: start;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Footer Minimal */
.footer {
  position: relative;
  z-index: 2;
  background: var(--navy-dark);
  padding: clamp(60px, 10vw, 80px) clamp(30px, 8vw, 80px) clamp(30px, 4vw, 40px);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.footer-grid {
  max-width: clamp(300px, 90vw, 1400px);
  margin: 0 auto clamp(40px, 6vw, 60px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 6vw, 60px);
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.2vw, 20px);
  color: var(--gold);
  margin-bottom: clamp(15px, 2vw, 20px);
  font-weight: 600;
}

.footer-description {
  font-size: clamp(11px, 1.5vw, 13px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.footer-title {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: clamp(1.5px, 0.2vw, 2px);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(20px, 2.5vw, 25px);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 12px);
}

.footer-links a {
  font-size: clamp(11px, 1.5vw, 13px);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: clamp(300px, 90vw, 1400px);
  margin: 0 auto;
  padding-top: clamp(30px, 4vw, 40px);
  border-top: 1px solid rgba(155, 132, 86, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(9px, 1.2vw, 11px);
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: clamp(20px, 3vw, 30px);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu */
.burger {
  margin-top: 16px;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
