/* ===== CSS VARIABLES - MyWebsite Theme ===== */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #0a0a0a;
  --bg-card: #151515;
  --bg-card-hover: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #555555;
  --accent-primary: #c8ff00;
  --accent-secondary: #b8e600;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --font-primary: 'Syne', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a,
button,
input,
textarea {
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(200, 255, 0, 0.2);
  mix-blend-mode: normal;
}

.cursor-follower.hover {
  width: 80px;
  height: 80px;
  border-color: var(--accent-primary);
  background-color: rgba(200, 255, 0, 0.05);
}

.cursor.clicking {
  transform: translate(-50%, -50%) scale(0.8);
}

/* ===== SCROLLING BANNER ===== */
.scrolling-banner {
  background: var(--accent-primary);
  padding: 12px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  right: 0;
  z-index: 4000;
}

.banner-track {
  display: flex;
  width: max-content;
}

.banner-content {
  display: flex;
  animation: scrollBanner 30s linear infinite;
  white-space: nowrap;
}

.banner-content span {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 30px;
}

.time-badge {
  background: var(--bg-primary);
  color: var(--accent-primary) !important;
  padding: 4px 12px !important;
  border-radius: 20px;
  font-size: 11px !important;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3000;
  padding: 6px 10px;
  background: transparent;
  transition: transform .45s ease, filter .35s ease;
}

.nav-container {
  width: calc(100% - 80px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;

  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 255, 0, .25);

  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
  position: relative;
  overflow: hidden;
}

.nav-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(800px 200px at 20% 0%, rgba(255, 255, 255, .15), transparent 60%),
    radial-gradient(600px 180px at 80% 30%, rgba(200, 255, 0, .12), transparent 60%);
  pointer-events: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 7px 16px;
  border-radius: 999px;

  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(200, 255, 0, .45);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .12);

  cursor: pointer;
  transition: all .30s ease;
  position: relative;
}

.nav-toggle:hover {
  border-color: rgba(200, 255, 0, .9);
  box-shadow:
    0 15px 45px rgba(0, 0, 0, .65),
    0 0 30px rgba(200, 255, 0, .25);
}

.hamburger {
  width: 18px;
  height: 10px;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: all .30s ease;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:last-child {
  bottom: 0;
}

.nav-toggle.active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 4px;
}

.nav-toggle.active .hamburger span:last-child {
  transform: rotate(-45deg);
  bottom: 4px;
}

.navbar.scrolled .nav-container {
  background: rgba(0, 0, 0, .65);
  border-color: rgba(200, 255, 0, .45);
}

.navbar.hide {
  transform: translateY(-120%);
}



/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  inset: 0;
  background: #000;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-content {
  text-align: center;
}

.menu-links {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.menu-links li {
  margin-bottom: 20px;
  overflow: hidden;
}

.menu-links a {
  font-family: var(--font-primary);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  white-space: normal;
  word-break: keep-all;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  display: inline-block;
  transition: var(--transition-normal);
  position: relative;
}

.menu-links a:hover {
  color: var(--accent-primary);
  transform: translateX(20px);
}

.menu-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-social a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}

.hero-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

.hero-center {
  text-align: center;
  flex: 1;
  padding: 0 100px;
}

.hero-title {
  font-family: var(--font-primary);
  line-height: 0.9;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.title-line.filled {
  color: var(--text-primary);
}

.title-line.outline {
  -webkit-text-stroke: 2px var(--text-primary);
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.experience-badge {
  position: fixed;
  /* au lieu de absolute */
  bottom: 30px;
  /* distance du bas */
  right: 30px;
  /* distance du côté droit */
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  /* pour rester au-dessus */
}


.badge-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-svg {
  width: 100%;
  height: 100%;
  max-width: 140px;
  max-height: 140px;
  display: block;
  animation: rotateBadge 15s linear infinite;
}

.badge-text {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 600;
  fill: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.arrow-down-container {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
  flex-shrink: 0;
}

.arrow-down-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
  opacity: 0;
}

.arrow-down-container i {
  font-size: 32px;
  color: var(--accent-primary);
  animation: bounceArrow 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
  margin: 80px auto 0;
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.info-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.info-location {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.hero-description {
  max-width: 500px;
}

.hero-description p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 1;
    height: 60px;
  }

  50% {
    opacity: 0.3;
    height: 30px;
  }
}

/* ===== SECTION STYLES ===== */
section {
  padding: 120px 0;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 90px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(200, 255, 0, 0.08);
  color: #c8ff00;
  border: 1px solid rgba(200, 255, 0, 0.25);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin: 22px 0 18px;
  letter-spacing: 1px;
}

.section-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services {
  position: relative;
  padding: 140px 0;
  background: radial-gradient(circle at 20% 10%, rgba(200, 255, 0, 0.04), transparent 40%), #050505;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, border 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(200, 255, 0, 0.12), transparent 35%);
  opacity: .0;
  transition: opacity .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(200, 255, 0, 0.35);
  background: rgba(200, 255, 0, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  font-size: 60px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 20px;
  right: 20px;
  width: 90px;
  text-align: right;
  opacity: 0.1;
  pointer-events: none;
  transition: color .35s ease, transform .35s ease;
}

.service-card:hover .service-number {
  color: rgba(200, 255, 0, 0.35);
  transform: scale(1.05);
}

.service-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-content h3,
.service-content p {
  padding-right: 60px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card:hover .service-content h3 {
  color: var(--accent-primary);
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}


.service-features {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #d7d7d7;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all .3s ease;
}

.service-features li:hover {
  background: rgba(200, 255, 0, 0.08);
  transform: translateX(6px);
}

.service-features .icon {
  color: #c8ff00;
  font-weight: bold;
  font-size: 14px;
}

.service-bonus {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(200, 255, 0, .06);
  border: 1px solid rgba(200, 255, 0, .20);
  display: flex;
  gap: 10px;
  align-items: center;
}

.bonus-tag {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #0b0b0b;
  background: #c8ff00;
  padding: 6px 10px;
  border-radius: 999px;
}

.bonus-text {
  color: #dcdcdc;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 90px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 26px;
  }

  .service-number {
    font-size: 46px;
  }
}

/* ===== PORTFOLIO / RÉALISATIONS SECTION ===== */
.realisations {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.realisations::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: #000;
  filter: blur(30px);
  pointer-events: none;
}

.portfolio-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.portfolio-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 240px;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
  transform: translateZ(0);
  will-change: transform;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, box-shadow .35s ease;
}

/* variations de taille */
.portfolio-item:nth-child(1),
.portfolio-item:nth-child(6),
.portfolio-item:nth-child(9) {
  grid-column: span 7;
  min-height: 320px;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(7),
.portfolio-item:nth-child(8) {
  grid-column: span 5;
}

.portfolio-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* option: petit décalage léger mais rapide */
.portfolio-item {
  transition-delay: var(--d, 0ms);
}

.portfolio-item:hover {
  transform: translateY(-6px) perspective(900px) rotateX(3deg);
  border-color: rgba(200, 255, 0, .35);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .65);
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.06);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), filter .6s ease;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .85) 70%), radial-gradient(circle at 30% 20%, rgba(200, 255, 0, .10), transparent 35%);
  opacity: .95;
  transition: opacity .45s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .12) 50%, transparent 65%);
  transform: translateX(-30%) rotate(8deg);
  opacity: 0;
  transition: opacity .35s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.portfolio-item:hover .portfolio-bg {
  transform: scale(1.15);
  filter: saturate(1.15) contrast(1.1);
}

.portfolio-item:hover::before {
  opacity: .78;
}

.portfolio-item:hover::after {
  opacity: 1;
  transform: translateX(35%) rotate(8deg);
}

.portfolio-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  opacity: 0.92;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, opacity .35s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
  background: rgba(0, 0, 0, .28);
  border-color: rgba(200, 255, 0, .18);
  opacity: 1;
}

.portfolio-item:hover .portfolio-content::after {
  transform: scale(1);
  box-shadow: 0 22px 65px rgba(200, 255, 0, .32);
}

.portfolio-item {
  opacity: 0;
  transform: translateY(18px);
}

.portfolio-item.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.portfolio-name {
  font-family: var(--font-primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
}

.portfolio-content::after {
  content: "↗";
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0a0a0a;
  background: #c8ff00;
  box-shadow: 0 18px 50px rgba(200, 255, 0, .25);
  transform: scale(.92);
  transition: transform .35s ease, box-shadow .35s ease;
}

.portfolio-item:hover .portfolio-name {
  color: var(--accent-primary);
}

@media (max-width: 900px) {
  .realisations {
    padding: 80px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-item {
    min-height: 220px;
    grid-column: auto !important;
  }

  .portfolio-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TECHNOLOGY SECTION ===== */
.technology {
  position: relative;
  padding: 90px 0;
  background: #000;
  /* comme tu veux black */
  overflow: hidden;
}

.technology::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: black;
  filter: blur(30px);
  pointer-events: none;
  opacity: .9;
}

.tech-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(26px, 4vw, 56px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tech-marquee {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 18px 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
  overflow: hidden;
}

.tech-marquee::before,
.tech-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.tech-marquee::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.tech-marquee::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.tech-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: techMarquee var(--tech-speed, 14s) linear infinite;
}

.tech-marquee:hover .tech-track {
  animation-play-state: paused;
}

.tech-item {
  width: 74px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 18px 40px rgba(0, 0, 0, .55);
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.tech-item i {
  font-size: 28px;
  color: rgba(255, 255, 255, .88);
  filter: drop-shadow(0 0 10px rgba(200, 255, 0, .12));
  transition: color .25s ease, transform .25s ease, filter .25s ease;
}

.tech-item:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(200, 255, 0, .35);
  background: rgba(200, 255, 0, .06);
}

.tech-item:hover i {
  color: #c8ff00;
  transform: scale(1.06);
  filter: drop-shadow(0 0 18px rgba(200, 255, 0, .35));
}

/* animation marquee */
@keyframes techMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* car tu as déjà dupliqué la liste */
}

/* ✅ Mobile: plus compact + vitesse encore plus rapide */
@media (max-width: 768px) {
  .technology {
    padding: 70px 0;
  }

  .tech-marquee {
    width: 94vw;
    border-radius: 18px;
  }

  .tech-item {
    width: 62px;
    height: 54px;
    border-radius: 16px;
  }

  .tech-item i {
    font-size: 24px;
  }

  .tech-track {
    gap: 10px;
  }

  .tech-track {
    animation-duration: var(--tech-speed-mobile, 10s);
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .tech-track {
    animation: none !important;
  }
}


/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 255, 0, 0.06), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(200, 255, 0, 0.04), transparent 28%),
    linear-gradient(180deg, #040404 0%, #000 100%);
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.03), transparent);
  opacity: .8;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.9), transparent);
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.35);
}

.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1200px;
}

.feature-card {
  position: relative;
  border-radius: 28px;
  padding: 30px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s ease, border .35s ease, box-shadow .35s ease, background .35s ease;
  will-change: transform;
  min-height: 265px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(200, 255, 0, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(200, 255, 0, 0.32);
  background:
    linear-gradient(180deg, rgba(200, 255, 0, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(200, 255, 0, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 255, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(200, 255, 0, 0.10), rgba(200, 255, 0, 0.04));
  box-shadow:
    0 0 0 6px rgba(200, 255, 0, 0.025),
    inset 0 0 14px rgba(200, 255, 0, 0.05);
  transition: transform .35s ease, border .35s ease, box-shadow .35s ease, background .35s ease;
  transform: translateZ(24px);
}

.feature-icon i {
  font-size: 22px;
  color: #c8ff00;
  transition: transform .35s ease, color .35s ease;
}

.feature-card:hover .feature-icon {
  transform: translateZ(24px) translateY(-4px) rotate(-2deg) scale(1.05);
  border-color: rgba(200, 255, 0, 0.85);
  box-shadow:
    0 14px 28px rgba(200, 255, 0, 0.10),
    inset 0 0 18px rgba(200, 255, 0, 0.08);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.12);
  color: #e3ff75;
}

.feature-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: #fff;
  transform: translateZ(18px);
}

.feature-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c8ff00, transparent);
  opacity: .9;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.64);
  transform: translateZ(12px);
  max-width: 95%;
}

.feature-card:hover h3 {
  color: #c8ff00;
}

.feature-card.is-hidden {
  opacity: 0;
  transform: translateY(18px) scale(.98);
}

.feature-card.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .6s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

/* Tablet */
@media (max-width: 991px) {
  .why-choose-us {
    padding: 110px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    min-height: 240px;
    padding: 28px 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 90px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 16px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 13.5px;
    line-height: 1.75;
    max-width: 100%;
  }
}

/* ===== Reveal animation (JS adds classes) ===== */
.feature-card.is-hidden {
  opacity: 0;
  transform: translateY(18px) scale(.98);
}

.feature-card.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .6s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

/* responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-us {
    padding: 90px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px 22px;
  }
}

/* ===== PROCESS SECTION ===== */
.process {
  background: var(--bg-secondary);
  min-height: 100vh;
  /* section plein écran */
  display: flex;
  align-items: center;
  /* CENTRAGE VERTICAL */
}


.step-number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 80px;
    /* ajuste selon ton rendu */
  }

  .menu-links a {
    font-size: 30px;
    letter-spacing: 0;
  }

  .menu-links li {
    margin-bottom: 30px;
  }

  .theatre-logo {
    width: 110px;
    height: 110px;
  }

  .nav-logo-img {
    height: 24px;
  }

  .footer-logo-img {
    height: 28px;
  }
}

/* ===== RESULTS SECTION ===== */
/* ===== RESULTS SECTION ===== */
.results {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 255, 0, 0.05), transparent 28%),
    radial-gradient(circle at 80% 75%, rgba(200, 255, 0, 0.04), transparent 26%),
    linear-gradient(180deg, #030303 0%, #000 100%);
  overflow: hidden;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.03), transparent),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.03), transparent 35%);
}

.results::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.95), transparent);
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.35);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  min-height: 240px;
  transition: transform .35s ease, border .35s ease, box-shadow .35s ease, background .35s ease;
  isolation: isolate;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 255, 0, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(200, 255, 0, 0.3);
  background:
    linear-gradient(180deg, rgba(200, 255, 0, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(200, 255, 0, 0.08);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #dfff6a;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.18);
  box-shadow: inset 0 0 12px rgba(200, 255, 0, 0.04);
}

.stat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c8ff00;
  box-shadow:
    0 0 0 6px rgba(200, 255, 0, 0.08),
    0 0 18px rgba(200, 255, 0, 0.45);
  animation: statPulse 2.2s infinite ease-in-out;
}

@keyframes statPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: .75;
  }
}

.stat-number {
  position: relative;
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 24px rgba(200, 255, 0, 0.08);
}

.stat-number::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c8ff00, transparent);
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.66);
  max-width: 90%;
}

.stat-glow {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.18), transparent 70%);
  filter: blur(18px);
  opacity: .55;
  z-index: -1;
  transition: transform .35s ease, opacity .35s ease;
}

.stat-card:hover .stat-glow {
  transform: scale(1.15);
  opacity: .8;
}

.stat-card:hover .stat-number {
  color: #dfff6a;
}

/* Tablet */
@media (max-width: 991px) {
  .results {
    padding: 110px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    min-height: 220px;
  }

  .stat-number {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .results {
    padding: 90px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .stat-top {
    margin-bottom: 22px;
  }

  .stat-chip {
    font-size: 11px;
    padding: 8px 12px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-card p {
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 100%;
  }
}

/* ===== WEBSITE FEATURES SECTION ===== */

.website-features{
    position: relative;
    padding: 140px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(200,255,0,0.07), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(200,255,0,0.05), transparent 30%),
        linear-gradient(180deg, #050505 0%, #000 100%);
    overflow: hidden;
}

.website-features::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(200,255,0,0.03), transparent),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.04), transparent 35%);
}

.website-features::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8ff00, transparent);
    box-shadow: 0 0 18px rgba(200,255,0,0.35);
}

.features-checklist{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.features-column{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        border-color .35s ease,
        box-shadow .45s ease,
        background .35s ease;
}

.feature-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(200,255,0,0.08), transparent 80%);
    transform: translateX(-120%);
    transition: transform .8s ease;
    pointer-events: none;
}

.feature-item::after{
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.03);
    pointer-events: none;
}

.feature-item i{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #c8ff00;
    background: linear-gradient(180deg, rgba(200,255,0,0.14), rgba(200,255,0,0.06));
    border: 1px solid rgba(200,255,0,0.30);
    box-shadow:
        0 0 0 6px rgba(200,255,0,0.025),
        0 0 18px rgba(200,255,0,0.08);
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.feature-item span{
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    transition: color .35s ease, transform .45s cubic-bezier(.22,1,.36,1);
}

/* Hover smooth */
.feature-item:hover{
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(200,255,0,0.32);
    background: linear-gradient(180deg, rgba(200,255,0,0.07), rgba(255,255,255,0.03));
    box-shadow:
        0 16px 35px rgba(0,0,0,.45),
        0 0 0 1px rgba(200,255,0,0.06);
}

.feature-item:hover::before{
    transform: translateX(120%);
}

.feature-item:hover i{
    transform: scale(1.08) rotate(-4deg);
    border-color: rgba(200,255,0,0.75);
    background: linear-gradient(180deg, rgba(200,255,0,0.22), rgba(200,255,0,0.08));
    box-shadow:
        0 0 0 8px rgba(200,255,0,0.03),
        0 0 24px rgba(200,255,0,0.14);
}

.feature-item:hover span{
    color: #fff;
    transform: translateX(2px);
}

/* animation d'entrée douce */
.feature-item{
    opacity: 0;
    transform: translateY(24px);
    animation: featureFadeUp .8s cubic-bezier(.22,1,.36,1) forwards;
}

.features-column .feature-item:nth-child(1){ animation-delay: .08s; }
.features-column .feature-item:nth-child(2){ animation-delay: .16s; }
.features-column .feature-item:nth-child(3){ animation-delay: .24s; }
.features-column .feature-item:nth-child(4){ animation-delay: .32s; }
.features-column .feature-item:nth-child(5){ animation-delay: .40s; }

@keyframes featureFadeUp{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px){
    .features-checklist{
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 768px){
    .website-features{
        padding: 95px 0;
    }

    .feature-item{
        padding: 17px 16px;
        border-radius: 18px;
    }

    .feature-item i{
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .feature-item span{
        font-size: 14px;
        line-height: 1.55;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: clamp(80px, 8vw, 140px) 0;
  background:
    radial-gradient(900px 420px at 20% 30%, rgba(200, 255, 0, 0.10), transparent 60%),
    radial-gradient(800px 520px at 80% 70%, rgba(200, 255, 0, 0.07), transparent 65%),
    #000;
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 46px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .6s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.cta-section .container.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cta-section .container::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(600px 260px at 50% 0%, rgba(200, 255, 0, 0.22), transparent 65%);
  opacity: .0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.cta-section .container:hover::before {
  opacity: 1;
}

.cta-title {
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: .02em;
}

.cta-subtitle {
  max-width: 70ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.7;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  background: rgba(200, 255, 0, 0.10);
  border: 1px solid rgba(200, 255, 0, 0.32);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(200, 255, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  opacity: 0;
  transition: opacity .25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 255, 0, 0.7);
  box-shadow:
    0 22px 70px rgba(200, 255, 0, 0.18),
    0 0 0 1px rgba(200, 255, 0, 0.10);
}

.cta-btn:hover::before {
  opacity: 1;
  animation: ctaShimmer 900ms ease;
}

@keyframes ctaShimmer {
  from {
    left: -60%;
  }

  to {
    left: 120%;
  }
}

.cta-btn span {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}

.cta-btn i {
  color: #c8ff00;
  transition: transform .28s ease;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

/* responsive */
@media (max-width: 650px) {
  .cta-section .container {
    padding: 40px 18px;
    border-radius: 24px;
    
  }

  .cta-btn {
    width: 100%;
    padding: 16px 18px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  position: relative;
  padding: 110px 0;
  background: #000;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: black;
  filter: blur(32px);
  opacity: .95;
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  align-items: stretch;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
  overflow: hidden;
}

.contact-left {
  position: relative;
  padding: 44px 34px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 255, 0, .08), transparent 60%),
    rgba(255, 255, 255, .02);
}

.contact-left::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.contact-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 0, .25);
  background: rgba(200, 255, 0, .06);
  color: rgba(255, 255, 255, .88);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-title {
  margin: 18px 0 0;
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(36px, 4.6vw, 70px);
}

.contact-title span {
  display: block;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.contact-title .filled {
  display: block;
  color: #fff;
  text-shadow: 0 18px 70px rgba(0, 0, 0, .8);
}

.contact-title .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .55);
  text-shadow: 0 0 26px rgba(200, 255, 0, .08);
}

.contact-right {
  padding: 44px 34px;
  background: rgba(0, 0, 0, .2);
}

.contact-form {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 28px 80px rgba(0, 0, 0, .65);
  padding: 26px;
  transform-style: preserve-3d;
  will-change: transform;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(200, 255, 0, .10), transparent 45%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.contact-form.is-tilting::before {
  opacity: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin: 0 0 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .35);
  color: rgba(255, 255, 255, .92);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 255, 0, .40);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, .12);
}

/* bouton */
.submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(200, 255, 0, .35);
  background: linear-gradient(180deg, rgba(200, 255, 0, .16), rgba(200, 255, 0, .06));
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .6);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.submit-btn i {
  color: #c8ff00;
  transform: translateX(0);
  transition: transform .25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 255, 0, .55);
}

.submit-btn:hover i {
  transform: translateX(4px);
}

/* apparition douce (scroll) */
.contact-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.contact-wrapper.is-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-wrapper.contact-stack {
  display: block !important;
  /* force layout vertical */
}

.contact-wrapper.contact-stack .contact-left {
  border-right: none;
  /* enlève la séparation verticale */
  padding-bottom: 34px;
}

.contact-wrapper.contact-stack .contact-form {
  margin-top: 28px;
  max-width: 760px;
}

/* si ton HTML contient encore .contact-right, on le cache */
.contact-wrapper.contact-stack .contact-right {
  display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-wrapper.contact-stack .contact-form {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .contact-wrapper,
  .contact-form,
  .submit-btn {
    transition: none !important;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
}

.footer-rights {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--accent-primary);
}

.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--accent-primary);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  border: none;
  border-radius: 50%;
  color: var(--bg-primary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition-normal);
  z-index: 999;
  box-shadow: 0 10px 40px rgba(200, 255, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--accent-secondary);
  transform: translateY(-5px) scale(1);
  box-shadow: 0 15px 50px rgba(200, 255, 0, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

/* ===== RESPONSIVE ===== */

/* Extra Large Screens (1400px+) */
@media (max-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) {
  .container {
    max-width: 1200px;
  }

  .hero-center {
    padding: 0 60px;
  }

  .experience-badge {
    width: 140px;
    height: 140px;
    right: 60px;
  }

  section {
    padding: 100px 0;
  }

  .services-grid {
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Large (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }

  .hero-center {
    padding: 0 40px;
  }

  .experience-badge {
    width: 125px;
    height: 125px;
    right: 40px;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .title-line {
    font-size: clamp(48px, 8vw, 120px);
  }

  .section-title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .contact-title span {
    font-size: clamp(40px, 7vw, 80px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium (768px - 991px) */
@media (max-width: 991px) {
  .container {
    padding: 0 30px;
  }

  section {
    padding: 80px 0;
  }

  .navbar {
    top: 40px;
  }

  .scrolling-banner {
    padding: 10px 0;
  }

  .hero {
    padding: 90px 30px 60px;
    min-height: 80vh;
  }

  .hero-container {
    flex-direction: column;
    justify-content: center;
  }

  .hero-social {
    display: none;
  }

  .hero-center {
    padding: 0 20px;
    text-align: center;
  }

  .experience-badge {
    width: 110px;
    height: 110px;
    bottom: 30px;
    right: 30px;
  }

  .badge-svg {
    max-width: 110px;
    max-height: 110px;
  }

  .badge-text {
    font-size: 8px;
  }

  .arrow-down-container {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }

  .arrow-down-container i {
    font-size: 28px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    text-align: center;
  }

  .hero-info {
    justify-content: center;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    font-size: 20px;
  }

  .hero-description {
    max-width: 100%;
    margin: 0 auto;
  }

  .title-line {
    font-size: clamp(42px, 6vw, 100px);
  }

  .section-title {
    font-size: clamp(28px, 4vw, 44px);
  }

  .section-header {
    margin-bottom: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 30px;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .step-number {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .portfolio-item {
    height: 240px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-title span {
    font-size: clamp(36px, 6vw, 70px);
  }

  .contact-form {
    padding: 40px;
  }

  .features-checklist {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-title {
    font-size: clamp(28px, 4vw, 44px);
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .tech-title {
    font-size: clamp(20px, 3vw, 32px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 40px;
  }

  /* Hide custom cursor */
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* Small Tablets (600px - 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 25px;
    width: 100%;
  }

  section {
    padding: 70px 0;
  }

  .scrolling-banner {
    padding: 8px 0;
  }

  .banner-content span {
    padding: 0 20px;
    font-size: 11px;
  }

  .nav-container {
    padding: 0 16px;
    width: calc(100% - 24px);
  }

  .logo-text {
    font-size: 13px;
  }

  .nav-toggle {
    padding: 10px 15px;
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .menu-text {
    font-size: 11px;
  }

  .hero {
    padding: 80px 25px 50px;
    min-height: 70vh;
  }

  .hero-title {
    margin-bottom: 15px;
  }

  .title-line {
    font-size: clamp(36px, 5vw, 80px);
    letter-spacing: -2px;
  }

  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-bottom {
    margin-top: 50px;
    gap: 25px;
  }

  .info-tag {
    font-size: 11px;
  }

  .hero-description p {
    font-size: 13px;
  }

  .section-title {
    font-size: clamp(24px, 3vw, 36px);
  }

  .section-tag {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .section-desc {
    font-size: 13px;
    max-width: 90%;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .service-card {
    padding: 25px;
    gap: 15px;
  }

  .service-number {
    font-size: 36px;
    opacity: 0.25;
  }

  .service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-content p {
    font-size: 13px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin: 0 auto 15px;
  }

  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .stat-card p {
    font-size: 12px;
  }

  .portfolio-item {
    height: 200px;
  }

  .portfolio-name {
    font-size: 14px;
  }

  .contact-form {
    padding: 30px;
  }

  .realisations .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .realisations .portfolio-item {
    grid-column: 1 / -1 !important;

  }

  .form-group input,
  .form-group textarea {
    padding: 15px 20px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 18px 30px;
    font-size: 12px;
  }

  .feature-item {
    gap: 12px;
    padding: 12px 0;
    font-size: 13px;
  }

  .feature-item i {
    font-size: 18px;
  }

  .cta-title {
    font-size: clamp(22px, 3vw, 32px);
  }

  .cta-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .cta-btn {
    padding: 16px 35px;
    font-size: 12px;
    gap: 10px;
  }

  .footer-nav h4,
  .footer-contact h4 {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .footer-nav a,
  .footer-contact a {
    font-size: 13px;
  }

  .tech-item {
    padding: 20px 30px;
    margin: 0 10px;
  }

  .tech-item i {
    font-size: 32px;
  }
}

/* Mobile (480px - 599px) */
@media (max-width: 599px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  .scrolling-banner {
    padding: 6px 0;
  }

  .banner-content span {
    padding: 0 15px;
    font-size: 10px;
  }

  .time-badge {
    padding: 3px 8px !important;
    font-size: 9px !important;
  }

  .navbar {
    top: 38px;
    padding: 15px 0;
  }

  .nav-container {
    padding: 0 16px;
    width: calc(100% - 24px);
  }

  .logo-text {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .nav-toggle {
    padding: 8px 12px;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .menu-text {
    font-size: 10px;
  }

  .hamburger {
    width: 18px;
    gap: 4px;
  }

  .hamburger span {
    height: 1.5px;
  }

  .hero {
    padding: 70px 20px 40px;
    min-height: 60vh;
  }

  .hero-title {
    margin-bottom: 12px;
  }

  .title-line {
    font-size: clamp(28px, 4vw, 60px);
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.6;
  }

  .hero-bottom {
    margin-top: 40px;
    gap: 20px;
    padding-top: 30px;
  }

  .info-tag {
    font-size: 10px;
    gap: 8px;
  }

  .info-location {
    font-size: 11px;
  }

  .hero-description p {
    font-size: 12px;
    line-height: 1.5;
  }

  .scroll-line {
    height: 40px;
  }

  .experience-badge {
    width: 95px;
    height: 95px;
    bottom: 25px;
    right: 25px;
  }

  .badge-svg {
    max-width: 95px;
    max-height: 95px;
  }

  .badge-text {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .arrow-down-container {
    width: 60px;
    height: 60px;
    border-width: 1.5px;
  }

  .arrow-down-container i {
    font-size: 24px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    font-size: 20px;
  }

  .section-title {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 15px;
  }

  .section-tag {
    font-size: 9px;
    margin-bottom: 12px;
    padding: 6px 15px;
  }

  .section-desc {
    font-size: 12px;
    max-width: 100%;
    line-height: 1.5;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    gap: 12px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }

  .service-number {
    font-size: 32px;
  }

  .service-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .service-content p {
    font-size: 12px;
    line-height: 1.4;
  }


  .features-grid {
    gap: 15px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin: 0 auto 12px;
  }

  .feature-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 12px;
    line-height: 1.4;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .stat-card p {
    font-size: 11px;
    line-height: 1.3;
  }

  .portfolio-grid {
    gap: 12px;
  }

  .portfolio-item {
    height: 180px;
  }

  .portfolio-name {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .tech-title {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 40px;
  }

  .tech-item {
    padding: 15px 20px;
    margin: 0 8px;
  }

  .tech-item i {
    font-size: 28px;
  }

  .contact-title span {
    font-size: clamp(28px, 5vw, 48px);
    letter-spacing: -2px;
  }

  .contact-form {
    padding: 25px;
    border-radius: 20px;
  }

  .form-row {
    gap: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 12px;
    border-radius: 10px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .submit-btn {
    padding: 15px 25px;
    font-size: 11px;
    letter-spacing: 1px;
    gap: 10px;
  }

  .features-checklist {
    gap: 20px;
  }

  .feature-item {
    gap: 10px;
    padding: 10px 0;
    font-size: 12px;
  }

  .feature-item i {
    font-size: 16px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 15px;
  }

  .cta-subtitle {
    font-size: 12px;
    margin-bottom: 25px;
  }

  .cta-btn {
    padding: 14px 30px;
    font-size: 11px;
    gap: 8px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-rights {
    font-size: 12px;
  }

  .footer-nav h4,
  .footer-contact h4 {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .footer-nav a,
  .footer-contact a {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .experience-badge {
    width: 85px;
    height: 85px;
    bottom: 20px;
    right: 20px;
  }

  .badge-svg {
    max-width: 85px;
    max-height: 85px;
  }

  .badge-text {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .arrow-down-container {
    width: 50px;
    height: 50px;
    border-width: 1.5px;
  }

  .arrow-down-container i {
    font-size: 20px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

/* Extra Small (< 480px) */
@media (max-width: 479px) {
  .container {
    padding: 0 16px;
  }

  .experience-badge {
    width: 75px;
    height: 75px;
    bottom: 15px;
    right: 15px;
  }

  .badge-svg {
    max-width: 75px;
    max-height: 75px;
  }

  .badge-text {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .arrow-down-container {
    width: 45px;
    height: 45px;
    border-width: 1px;
  }

  .arrow-down-container i {
    font-size: 18px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 16px;
  }

  section {
    padding: 50px 0;
  }

  .hero {
    padding: 60px 16px 35px;
    min-height: 55vh;
  }

  .title-line {
    font-size: clamp(24px, 3.5vw, 50px);
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: clamp(20px, 2.5vw, 28px);
  }

  .service-card {
    padding: 16px;
  }

  .feature-card {
    padding: 16px 12px;
  }

  .stat-card {
    padding: 16px 10px;
  }

  .contact-form {
    padding: 20px;
  }

}

/* Hide navbar when scrolling down */
.navbar.hide {
  transform: translateY(-100%);
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* ===== PROCESS STYLE (compact + overlap + expand on hover) ===== */
.process-rail {
  display: flex;
  align-items: stretch;
  width: min(1100px, 92vw);
  /* plus petit */
  margin: 0 auto;
  justify-content: center;
  padding: 10px 0;
  overflow: visible;
}

/* Carte fermée */
.p-card {
  position: relative;
  height: 380px;
  /* plus petit */
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: #0b0b0b;
  padding: 42px 34px;
  overflow: hidden;
  width: 190px;
  /* fermé: assez large pour titre horizontal */
  flex: 0 0 auto;
  margin-left: -46px;
  /* overlap plus doux */
  transition: width .32s ease, background .32s ease, color .32s ease, box-shadow .32s ease, transform .32s ease;
  z-index: 1;
}

.p-card:first-child {
  margin-left: 0;
}

/* Numéro */
.p-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 38px;
  opacity: 0.35;
  letter-spacing: 2px;
  /* réduit */
  color: rgba(255, 255, 255, .18);
  font-weight: 600;
}

/* TITRE : horizontal + clamp */
.p-title {
  font-family: var(--font-primary);
  font-size: 34px;
  /* réduit */
  line-height: 1.02;
  margin: 0 0 14px;
  text-transform: uppercase;

  /* IMPORTANT: empêcher le titre de casser lettre par lettre */
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* En mode fermé: on limite l’affichage du titre à 3 lignes max */
.p-card:not(:hover):not(.is-active) .p-title {
  display: -webkit-box;
  line-clamp: 3;
  /* standard moderne */
  -webkit-line-clamp: 3;
  /* Safari / Chrome */
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
}

/* description + btn cachés par défaut */
.p-desc,
.p-btn {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

/* ACTIVE (hover / active class) */
.p-card:hover,
.p-card.is-active {
  width: 420px;
  /* ouvert: plus petit qu’avant */
  background: var(--accent-primary);
  /* vert */
  color: #111;
  z-index: 20;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
  transform: translateY(-2px);
}

.p-card:hover .p-num,
.p-card.is-active .p-num {
  color: rgba(0, 0, 0, .22);
}

/* afficher contenu seulement quand active */
.p-card:hover .p-desc,
.p-card.is-active .p-desc,
.p-card:hover .p-btn,
.p-card.is-active .p-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Texte description */
.p-desc {
  margin: 0 0 26px;
  font-size: 15px;
  /* réduit */
  line-height: 1.6;
  max-width: 50ch;
  color: rgba(0, 0, 0, .70);
}

/* Bouton */
.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  /* réduit */
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, .8);
  color: #111;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 11px;
}

/* Option: cartes fermées un peu "cachées" */
.process-rail:hover .p-card {
  opacity: .92;
}

.process-rail:hover .p-card:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .process-rail {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 16px 20px;
    gap: 14px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }

  .p-card {
    margin-left: 0 !important;
    /* stop overlap */
    width: 84vw !important;
    /* carte large mais pas 100% */
    height: 360px !important;
    flex: 0 0 auto;

    scroll-snap-align: center;
  }

  .p-card:hover,
  .p-card.is-active {
    width: 84vw !important;
    transform: none;
  }

  .p-title {
    font-size: 30px;
    /* au lieu de très grand */
    line-height: 1.05;
  }

  .p-num {
    font-size: 38px;
  }
}

/* Centrage vertical du process */
.process .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== THEATRE INTRO (CENTER OPEN) ===== */
.theatre-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  /* ← clé du centrage */
  align-items: center;
  /* centre verticalement */
  justify-content: center;
}

.theatre-logo {
  position: relative;
  width: 140px;
  height: 140px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* overlay noir qui va "s’ouvrir" depuis le centre */
.theatre-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  /* fermé au début (tout noir) */
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 950ms cubic-bezier(.77, 0, .18, 1);
}

/* logo */
.theatre-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  /* IMPORTANT */
  background: transparent;
  opacity: 0;
  transform: scale(.92);
  transition: opacity 450ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.theatre-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* logo visible */
.theatre-intro.is-on .theatre-logo {
  opacity: 1;
  transform: scale(1);
}

/* OUVERTURE : le noir se rétrécit au centre => révèle le site */
.theatre-intro.is-open::before {
  clip-path: circle(0% at 50% 50%);
}

/* fin */
.theatre-intro.is-done {
  opacity: 0;
  transition: opacity 250ms ease;
}

.no-scroll {
  overflow: hidden !important;
}

/* ===== LOGO NAVBAR ===== */
.logo {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.nav-logo-img {
  height: 28px;
  /* ajuste */
  width: auto;
  display: block;
}

/* ===== LOGO FOOTER ===== */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  /* évite le débordement sur mobile */
}

.footer-logo-img {
  height: 34px;
  /* ajuste */
  width: auto;
  display: block;
}

/* ===== SERVICES REVEAL (JS) ===== */
.service-card {
  will-change: transform, opacity;
}

.service-card.is-hidden {
  opacity: 0;
  transform: translateY(18px) scale(.98);
}

.service-card.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .55s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.page-leave {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: all 0.35s ease;
}

.arrow-down-container {
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.arrow-down-container:hover {
  transform: translateY(3px);
  opacity: 0.7;
}

h1,
h2,
h3,
.section-title,
.cta-title {
  font-family: var(--font-primary);
  /* ou le nom exact de ton font */
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ===== FIX RESPONSIVE / OVERFLOW (mobile) ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Empêche des éléments décoratifs de pousser la largeur */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* IMPORTANT : annule l'overlap des process cards sur mobile */
@media (max-width: 900px) {
  .process-rail {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .p-card {
    margin-left: 0 !important;
    /* <-- le fix clé */
    transform: none !important;
  }
}

.top-banner {
  width: 100%;
  left: 0;
  right: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 360px;
  background: radial-gradient(circle, rgba(200, 255, 0, .16), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.reviews-header {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0 26px;
}

.reviews-score {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
}

.reviews-label {
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .8;
  margin: 0 0 8px;
}

.reviews-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #c8ff00;
  margin-bottom: 8px;
}

.reviews-based {
  margin: 0;
  opacity: .75;
  font-size: 13px;
}

.reviews-google {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
}

.reviews-google .g-g {
  color: #4285F4
}

.reviews-google .g-o1 {
  color: #EA4335
}

.reviews-google .g-o2 {
  color: #FBBC05
}

.reviews-google .g-g2 {
  color: #4285F4
}

.reviews-google .g-l {
  color: #34A853
}

.reviews-google .g-e {
  color: #EA4335
}

.reviews-intro {
  margin: 0;
  opacity: .78;
  line-height: 1.6;
  max-width: 680px;
}

.reviews-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-scroller::-webkit-scrollbar {
  height: 10px;
}

.reviews-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease;
  transform: translateY(14px);
  opacity: 0;
}

.review-card.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), opacity .6s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 0, .35);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 0, .35);
  box-shadow: 0 0 0 6px rgba(200, 255, 0, .06);
  flex: 0 0 auto;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-heading {
  flex: 1;
}

.review-name {
  margin: 0;
  font-weight: 700;
}

.review-meta {
  margin: 2px 0 0;
  font-size: 12px;
  opacity: .65;
}

.review-google-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  font-weight: 800;
  opacity: .9;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-stars {
  color: #c8ff00;
  letter-spacing: 2px;
}

.review-text {
  margin: 0;
  opacity: .78;
  line-height: 1.6;
}

.review-google-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35));
  opacity: .95;
}

/* optionnel: petit cercle derrière (style premium) */
.review-google-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-header {
    grid-template-columns: 1fr;
  }
}

/* ===== Reveal mot par mot ===== */
.reveal-words {
  display: block;
}

.reveal-words .rw {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
}

.reveal-words.is-visible .rw {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}