@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Rajdhani:wght@400;500;600;700&family=Space+Mono&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card-bg: #161616;
  --purple: #7B2FBE;
  --purple-light: #9B4FDE;
  --purple-dark: #5A1A8A;
  --red: #E63030;
  --white: #F5F5F5;
  --gray: #888;
  --border: rgba(123, 47, 190, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav.scrolled {
  height: 60px;
  border-bottom-color: var(--purple);
}

.nav-logo img {
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(123, 47, 190, 0.5));
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--purple-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--purple-light);
}

.nav-cta::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(123, 47, 190, 0.15) 0%, transparent 70%), radial-gradient(ellipse 30% 40% at 20% 80%, rgba(230, 48, 48, 0.08) 0%, transparent 60%), var(--black);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(123, 47, 190, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 47, 190, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Hero layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 70px 5% 60px;
  gap: 40px;
}

/* Col 1 — texte à gauche serré */
.hero-content {
  max-width: 560px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--purple-light);
  border: 1px solid var(--purple);
  padding: 5px 14px;
  margin-bottom: 24px;
  animation: fadeIn 0.6s ease;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: slideUp 0.7s ease 0.1s both;
}

.hero-title .line-1 {
  display: block;
  color: var(--white);
}

.hero-title .line-2 {
  display: block;
  color: var(--purple);
}

.hero-title .line-3 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-sub {
  font-size: 17px;
  color: #aaa;
  max-width: 420px;
  margin-bottom: 40px;
  animation: slideUp 0.7s ease 0.2s both;
}

.hero-sub strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.7s ease 0.3s both;
}

/* Col 2 — visuel */
.hero-visual {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: ring-pulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 155px;
  height: 155px;
  border: 1px solid rgba(123, 47, 190, 0.35);
  transform: translate(-50%, -50%);
}

.ring-2 {
  width: 265px;
  height: 265px;
  border: 1px solid rgba(123, 47, 190, 0.18);
  transform: translate(-50%, -50%);
  animation-delay: 0.5s;
}

.ring-3 {
  width: 370px;
  height: 370px;
  border: 1px solid rgba(123, 47, 190, 0.07);
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

.hero-visual-core {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  background: rgba(123, 47, 190, 0.12);
  border: 1px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(123, 47, 190, 0.3), inset 0 0 30px rgba(123, 47, 190, 0.1);
}

.hero-visual-core img {
  width: 84px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(123, 47, 190, 0.6));
}

.hero-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-1 {
  background: var(--purple);
  box-shadow: 0 0 12px rgba(123, 47, 190, 0.8);
  animation: orbit1 6s linear infinite;
}

.dot-2 {
  background: var(--purple-light);
  box-shadow: 0 0 10px rgba(155, 79, 222, 0.7);
  animation: orbit2 9s linear infinite;
}

.dot-3 {
  background: var(--red);
  box-shadow: 0 0 12px rgba(230, 48, 48, 0.8);
  animation: orbit3 12s linear infinite;
}

.hero-platform-tag {
  position: absolute;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 5px 11px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.tag-yt {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  animation: ftag-tb 3s ease-in-out infinite 0s;
}

.tag-tt {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  animation: ftag-lr 3s ease-in-out infinite 0.7s;
}

.tag-fb {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  animation: ftag-tb 3s ease-in-out infinite 1.4s;
}

.tag-zm {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  animation: ftag-lr 3s ease-in-out infinite 2.1s;
}

/* Col 3 — stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 28px;
  border-left: 1px solid var(--border);
  animation: fadeIn 1s ease 0.5s both;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 2px;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollLine 1.5s ease infinite;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple-light);
}

/* ── SECTIONS ── */
section {
  padding: 100px 5%;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--purple);
}

.section-sub {
  color: #aaa;
  max-width: 600px;
  margin-bottom: 60px;
  font-size: 17px;
}

/* ── TICKER ── */
#ticker-strip {
  padding: 32px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-item::before {
  content: '◆';
  color: var(--purple);
  font-size: 8px;
}

/* ── SERVICES ── */
#services {
  background: var(--dark);
}

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

.service-card {
  background: var(--card-bg);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--purple);
  transition: height 0.4s;
}

.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card.featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.1), var(--card-bg));
}

.service-card.featured::before {
  height: 100%;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 24px;
  display: block;
}

.service-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.service-desc {
  color: #999;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 14px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PROCESS ── */
#process {
  background: var(--black);
}

.process-wrapper {
  position: relative;
}

.process-track {
  position: relative;
  height: 4px;
  margin: 0 12.5% 48px;
  overflow: visible;
}

.process-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--purple-dark), var(--purple), var(--purple-light));
  border-radius: 2px;
}

.process-line::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: inherit;
  filter: blur(6px);
  opacity: 0.5;
  border-radius: 2px;
}

.process-dot-moving {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(123, 47, 190, 0.3), 0 0 20px rgba(123, 47, 190, 0.7);
  left: -3%;
  opacity: 0;
  transition: left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  z-index: 2;
}

.process-dot-moving::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to left, rgba(123, 47, 190, 0.7), transparent);
  border-radius: 2px;
}

.process-dot-moving.dot-active {
  opacity: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  padding: 0 24px;
  text-align: center;
}

.step-num {
  width: 72px;
  height: 72px;
  border: 1px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  margin: 0 auto 24px;
  background: var(--black);
  transition: background 0.3s, color 0.3s;
}

.process-step:hover .step-num {
  background: var(--purple);
  color: var(--white);
}

.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: #888;
}

/* ── PLATFORMS ── */
#platforms {
  background: var(--dark);
}

.platforms-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.platform-badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 28px 48px;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.platform-badge:hover {
  border-color: var(--purple);
  background: rgba(123, 47, 190, 0.1);
}

.platform-icon {
  font-size: 32px;
}

/* ── TEAM TREE ── */
#equipe {
  background: var(--black);
}

.team-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.team-level {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.tree-trunk {
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--purple), var(--purple-dark));
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(123, 47, 190, 0.4);
}

.tree-branch-line {
  width: 76%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--purple-dark), var(--purple), var(--purple-dark), transparent);
  box-shadow: 0 0 12px rgba(123, 47, 190, 0.4);
}

.tree-branch-up {
  width: 3px;
  height: 40px;
  background: linear-gradient(to top, var(--purple), var(--purple-dark));
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(123, 47, 190, 0.3);
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 22px 16px 20px;
  text-align: center;
  width: 185px;
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.team-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
}

.team-card:hover .team-photo {
  transform: scale(1.07);
}

.level-boss .team-card {
  width: 240px;
  padding: 28px 20px 24px;
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.12), var(--card-bg));
  border-color: var(--purple);
  box-shadow: 0 0 28px rgba(123, 47, 190, 0.18);
}

/* Photo circle */
.team-photo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--dark);
  transition: border-color 0.3s;
}

.team-card:hover .team-photo-wrap {
  border-color: var(--purple);
}

.level-boss .team-photo-wrap {
  width: 150px;
  height: 150px;
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.35);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.12), var(--card-bg));
  font-size: 30px;
}

.level-boss .team-photo-placeholder {
  font-size: 42px;
}

.placeholder-hint {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
  padding: 0 6px;
}

.team-photo-badge {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 10px;
  white-space: nowrap;
}

.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.level-boss .team-name {
  font-size: 22px;
  color: var(--purple-light);
}

.team-role {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

/* ── RDV ── */
#rdv {
  background: var(--black);
}

.rdv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.rdv-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--purple-light);
}

.rdv-info p {
  color: #999;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #bbb;
}

.contact-icon {
  font-size: 20px;
}

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

label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B2FBE' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--card-bg);
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: var(--dark);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(123, 47, 190, 0.15);
}

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

.form-submit {
  width: 100%;
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--purple-light);
}

.form-msg {
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 14px;
  display: none;
}

.form-msg.success {
  background: rgba(50, 200, 100, 0.15);
  border: 1px solid rgba(50, 200, 100, 0.4);
  color: #5ef08a;
}

.form-msg.error {
  background: rgba(230, 48, 48, 0.15);
  border: 1px solid rgba(230, 48, 48, 0.4);
  color: #f07a7a;
}

/* ── DEVIS ── */
#devis {
  background: var(--dark);
}

.devis-builder {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.devis-builder h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.devis-row {
  display: grid;
  grid-template-columns: 1fr 80px 120px 120px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.devis-header {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.devis-item-name {
  font-size: 15px;
  color: var(--white);
}

.devis-item-qty {
  width: 60px;
  text-align: center;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
}

.devis-item-price {
  text-align: right;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 6px 10px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  width: 110px;
}

.devis-item-total {
  text-align: right;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--purple-light);
}

.devis-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.devis-total-block {
  text-align: right;
}

.devis-total-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
}

.devis-total-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--purple);
}

.devis-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.devis-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  padding: 14px 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
}

.devis-option:hover {
  border-color: var(--purple);
}

.devis-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
  flex-shrink: 0;
}

.devis-option-info {
  flex: 1;
}

.devis-option-name {
  font-weight: 600;
  font-size: 15px;
}

.devis-option-price {
  font-size: 13px;
  color: var(--purple-light);
  font-family: 'Space Mono', monospace;
}

.devis-client-form {
  margin-bottom: 28px;
}

.devis-client-form h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: #555;
}

.footer-bottom .red {
  color: var(--red);
}

.floating-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--purple);
  color: var(--white);
  padding: 14px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 999;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.4);
  animation: pulse 2s ease infinite;
  transition: background 0.2s;
}

.floating-btn:hover {
  background: var(--purple-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes scrollLine {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(123, 47, 190, 0.4);
  }

  50% {
    box-shadow: 0 0 35px rgba(123, 47, 190, 0.7);
  }
}

@keyframes ring-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

@keyframes orbit1 {
  0% {
    transform: rotate(0deg) translateX(78px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(78px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: rotate(120deg) translateX(133px) rotate(-120deg);
  }

  100% {
    transform: rotate(480deg) translateX(133px) rotate(-480deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: rotate(240deg) translateX(185px) rotate(-240deg);
  }

  100% {
    transform: rotate(600deg) translateX(185px) rotate(-600deg);
  }
}

@keyframes ftag-tb {

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

  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes ftag-lr {

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

  50% {
    transform: translateY(-50%) translateX(-4px);
  }
}

/* ── UTILS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-visual {
    width: 300px;
    height: 300px;
  }

  .ring-1 {
    width: 125px;
    height: 125px;
  }

  .ring-2 {
    width: 220px;
    height: 220px;
  }

  .ring-3 {
    width: 295px;
    height: 295px;
  }

  .hero-stats {
    gap: 20px;
    padding-left: 20px;
  }

  .stat-num {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    gap: 32px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 24px 0 0;
    gap: 40px;
    width: 100%;
  }

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

.hero-visual {
  display: none;
}

.hero-stats {
  flex-direction: row;
  border-left: none;
  border-top: 1px solid var(--border);
  padding: 24px 0 0;
  gap: 40px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .hamburger {
    display: flex;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .rdv-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .devis-options {
    grid-template-columns: 1fr;
  }

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

  .tree-branch-line {
    width: 92%;
  }

  .team-level.level-team {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .team-card {
    width: 155px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 4%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .floating-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 12px;
  }

  .devis-builder {
    padding: 24px 16px;
  }

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

  .devis-row>*:nth-child(3),
  .devis-row>*:nth-child(4) {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .team-level.level-team {
    flex-direction: column;
    align-items: center;
  }

  .tree-branch-line {
    display: none;
  }
}

/* ══════════════════════════════════════
   PROCESS — STICKY SCROLL TIMELINE
══════════════════════════════════════ */

/* Outer container — tall enough to scroll through 4 steps */
#process-scroll-container {
  height: 500vh;
  position: relative;
}

/* Sticky wrapper — stays on screen while scrolling through container */
#process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}

#process-sticky #process {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

/* ── Timeline track ── */
.process-timeline {
  margin-bottom: 52px;
  position: relative;
}

.ptl-track {
  position: relative;
  height: 4px;
  margin: 0 0 0 0;
  border-radius: 2px;
  margin-bottom: 28px;
}

.ptl-line-bg {
  position: absolute;
  inset: 0;
  background: rgba(123, 47, 190, 0.2);
  border-radius: 2px;
}

.ptl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(to right, var(--purple-dark), var(--purple), var(--purple-light));
  border-radius: 2px;
  transition: width 0.08s linear;
  box-shadow: 0 0 14px rgba(123, 47, 190, 0.6);
}

.ptl-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(123, 47, 190, 0.2), 0 0 28px rgba(123, 47, 190, 0.8);
  transition: left 0.08s linear;
  z-index: 3;
}

.ptl-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--purple);
  border-radius: 50%;
}

/* ── Step markers row ── */
.ptl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ptl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.ptl-step-marker {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(123, 47, 190, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.ptl-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(123, 47, 190, 0.5);
  transition: color 0.3s;
}

.ptl-step-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #555;
  transition: color 0.3s;
  text-align: center;
  text-transform: uppercase;
}

/* Active step */
.ptl-step.active .ptl-step-marker {
  border-color: var(--purple);
  background: rgba(123, 47, 190, 0.12);
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.3);
}

.ptl-step.active .ptl-step-num {
  color: var(--purple-light);
}

.ptl-step.active .ptl-step-label {
  color: var(--white);
}

/* Past step */
.ptl-step.done .ptl-step-marker {
  border-color: var(--purple-dark);
  background: rgba(123, 47, 190, 0.06);
}

.ptl-step.done .ptl-step-num {
  color: var(--purple-dark);
}

.ptl-step.done .ptl-step-label {
  color: #555;
}

/* ── Detail card ── */
.ptl-card {
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.06), var(--card-bg));
  border: 1px solid rgba(123, 47, 190, 0.25);
  border-top: 3px solid var(--purple);
  padding: 0 40px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease,
    transform 0.4s ease,
    padding 0.45s ease;
}

.ptl-card.open {
  max-height: 380px;
  opacity: 1;
  transform: translateY(0);
  padding: 32px 40px;
}

.ptl-card-inner {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  align-items: start;
}

.ptl-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(123, 47, 190, 0.12);
  line-height: 1;
  text-align: center;
  padding-top: 4px;
}

.ptl-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.ptl-card-desc {
  color: #999;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
  border-left: 2px solid var(--purple);
  padding-left: 12px;
}

.ptl-card-details {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.ptl-card-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(123, 47, 190, 0.07);
  border: 1px solid rgba(123, 47, 190, 0.2);
  padding: 12px 14px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.ptl-card-details li:hover {
  border-color: var(--purple);
  background: rgba(123, 47, 190, 0.13);
}

.ptl-box-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.ptl-box-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ptl-box-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.ptl-box-text em {
  font-style: normal;
  font-size: 11px;
  color: #666;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  #process-scroll-container {
    height: 400vh;
  }

  .ptl-step-label {
    font-size: 11px;
  }

  .ptl-step-marker {
    width: 50px;
    height: 50px;
  }

  .ptl-step-num {
    font-size: 16px;
  }

  .ptl-card.open {
    padding: 20px 24px;
  }

  .ptl-card-num {
    font-size: 48px;
    min-width: 56px;
  }

  .ptl-card-inner {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .ptl-card-inner {
    flex-direction: column;
    gap: 12px;
  }

  .ptl-card-num {
    font-size: 36px;
  }

  #process-sticky {
    height: auto;
    min-height: 100vh;
  }
}
/* ══════════════════════════════════════════
   AMÉLIORATIONS — SannaStudio v2
   ══════════════════════════════════════════ */

/* ── TICKER AMÉLIORATION ── */
.ticker-sep {
  color: var(--purple);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── SERVICE CARD ACCENT & CTA ── */
.service-card-accent {
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(123,47,190,0.15), transparent 70%);
  pointer-events: none;
}

.service-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(123,47,190,0.4);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.service-cta:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── OBS BLOCK ── */
.obs-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.obs-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--purple);
}

.obs-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.obs-block p {
  color: #999;
  font-size: 15px;
  line-height: 1.7;
}

/* ── ÉQUIPE — NOUVELLE MISE EN PAGE ── */
#equipe {
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  width: auto;
  padding: 0;
  text-align: left;
}

.team-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: var(--dark);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 55%);
}

.team-info {
  padding: 24px 28px 28px;
  flex: 1;
}

.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-bio {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tags span {
  background: rgba(123,47,190,0.12);
  border: 1px solid rgba(123,47,190,0.3);
  color: var(--purple-light);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  text-transform: uppercase;
}

/* ── BRANDS SECTION ── */
.brands-section {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.brand-item:hover {
  opacity: 1;
}

.brand-item img {
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(123,47,190,0.3));
}

.brand-item span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.brand-divider {
  color: var(--purple);
  font-size: 14px;
  opacity: 0.5;
}

/* ── RDV PROMISE ── */
.rdv-promise {
  margin-top: 40px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
}

.rdv-promise .section-label {
  margin-bottom: 8px;
}

.rdv-promise p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── FOOTER LOGOS ── */
.footer-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.footer-sub-logo {
  height: 36px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: drop-shadow(0 0 4px rgba(123,47,190,0.2));
}

.footer-sub-logo:hover {
  opacity: 1;
}

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .brands-row {
    gap: 28px;
  }

  .brand-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .team-photo-wrap {
    height: 220px;
  }

  .obs-block {
    padding: 24px 20px;
  }
}