:root {
  --ink: #1a1a2e;
  --ink-soft: #2d2d44;
  --cream: #faf6ef;
  --cream-warm: #f5ede0;
  --paper: #ffffff;
  --accent: #ff6b35;
  --accent-dark: #e0501f;
  --accent-soft: #fff1e8;
  --gold: #d4a04a;
  --sage: #6b8e7f;
  --mist: #e8e2d5;
  --border: #2d2d44;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow-md: 0 8px 24px rgba(26,26,46,0.08);
  --shadow-lg: 0 20px 50px rgba(26,26,46,0.12);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Texture cream subtile partout */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,107,53,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,160,74,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  background: rgba(250,246,239,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,46,0.06);
  transition: padding 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--paper) !important;
  transform: translateY(-1px);
}

.burger { display: none; }

/* ===== BANDEAU OFFRE LANCEMENT ===== */
.banner-launch {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 99;
}
.banner-launch strong {
  color: var(--accent);
  font-weight: 600;
}
.banner-launch .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 0.7rem;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== HERO ===== */
.hero {
  padding: 9rem 2.5rem 5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.15em;
  background: var(--accent-soft);
  z-index: -1;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--body);
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.4);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  justify-self: center;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cream-warm), var(--mist));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,26,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder visuel temporaire (en attendant ta photo) */
.hero-photo-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--ink-soft);
}
.hero-photo-placeholder svg {
  width: 80px; height: 80px;
  margin: 0 auto 1rem;
  opacity: 0.3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: var(--paper);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mist);
}

.hero-badge-1 {
  top: -1rem;
  right: -1.5rem;
  animation: float 5s ease-in-out infinite;
}
.hero-badge-2 {
  bottom: 1rem;
  left: -2rem;
  animation: float 5s ease-in-out infinite 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.hero-badge-value {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-badge-value .star {
  color: var(--gold);
  margin-right: 0.2rem;
}

/* ===== SECTION TITRE COMMUN ===== */
.section {
  padding: 6rem 2.5rem;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 800px;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 4rem;
}

/* ===== PAGE HEADER (pages secondaires) ===== */
.page-header {
  padding: 9rem 2.5rem 3rem;
  position: relative;
  z-index: 1;
}
.page-header .section-inner { text-align: left; }
.page-header .section-lead { margin-bottom: 1rem; }

/* ===== POURQUOI MOI ===== */
.why {
  background: var(--paper);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

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

.why-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--mist);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.why-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FORMATIONS ===== */
.formations {
  background: var(--cream);
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.formation-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 2.2rem 2rem 2.5rem;
  border: 1px solid var(--mist);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--mist);
  transition: background 0.3s;
}

.formation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.formation-card:hover::before { background: var(--accent); }

.formation-number {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mist);
  margin-bottom: -0.5rem;
  font-style: italic;
}
.formation-card:hover .formation-number {
  color: var(--accent-soft);
}

.formation-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.formation-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.formation-target {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--mist);
}

.formation-features {
  list-style: none;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.formation-features li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.formation-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 18px;
  height: 18px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formation-features li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 1.1rem;
  width: 5px;
  height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.formation-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--mist);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.formation-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.formation-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.formation-price .old {
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}
.formation-price .new {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.formation-price .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.formation-cta {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  font-family: var(--body);
}
.formation-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ===== COMMENT ÇA SE PASSE ===== */
.process {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin: 2rem;
  padding: 5rem 2.5rem;
}

.process .section-title { color: var(--cream); }
.process .section-eyebrow { color: var(--accent); }
.process .section-lead { color: rgba(250,246,239,0.7); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  background: rgba(250,246,239,0.04);
  border-radius: 16px;
  border: 1px solid rgba(250,246,239,0.1);
  transition: all 0.3s;
}
.process-step:hover {
  background: rgba(250,246,239,0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-step h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.7);
  line-height: 1.5;
}

/* ===== POUR QUI ===== */
.audience {
  background: var(--cream-warm);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.audience-item {
  background: var(--paper);
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--mist);
  transition: all 0.3s;
}
.audience-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.audience-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.audience-item h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.audience-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ===== GALERIE EXEMPLES ===== */
.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--cream-warm);
  border: 1px solid var(--mist);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item-large { grid-column: span 2; grid-row: span 2; }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.7) 60%, transparent 100%);
  color: var(--cream);
  padding: 2rem 1.2rem 1rem;
  pointer-events: none;
}
.gallery-label .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.gallery-label .title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.gallery-item-large .gallery-label .title {
  font-size: 1.6rem;
}

/* ===== SLIDER AVANT/APRÈS ===== */
.before-after {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.before-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.before-after-img.after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.1s ease-out;
}
.before-after-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  transition: left 0.1s ease-out;
}
.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: 3px solid var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(26,26,46,0.3);
  pointer-events: none;
}
.before-after-handle svg {
  width: 18px;
  height: 18px;
}
.before-after-tag {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 4;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.before-after-tag.tag-before {
  left: 1rem;
  background: rgba(26,26,46,0.7);
  color: var(--cream);
}
.before-after-tag.tag-after {
  right: 1rem;
  background: rgba(255,107,53,0.9);
  color: var(--paper);
}

/* ===== AVIS CLIENTS ===== */
.reviews {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.review-card {
  background: var(--paper);
  padding: 2.2rem;
  border-radius: 20px;
  border: 1px solid var(--mist);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.8rem;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 700;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-source {
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.6;
  font-weight: 400;
}

/* ===== QUI SUIS-JE ===== */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cream-warm), var(--mist));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,26,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo .placeholder-text {
  text-align: center;
  padding: 2rem;
  color: var(--ink-soft);
  opacity: 0.6;
}

.about p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.about p strong { color: var(--ink); font-weight: 600; }

/* ===== RESULTATS CONCRETS ===== */
.services-extra {
  background: var(--cream);
  border-top: 1px solid var(--mist);
}

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

.service-item {
  padding: 2rem;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--mist);
  transition: all 0.3s;
}
.service-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-item h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.service-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.service-item .service-price {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--ink);
  color: var(--cream);
}

.contact .section-title { color: var(--cream); }
.contact .section-eyebrow { color: var(--accent); }
.contact .section-lead { color: rgba(250,246,239,0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.contact-info-item svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-info-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250,246,239,0.6);
  margin-bottom: 0.3rem;
}

.contact-info-item .value {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--cream);
}

.contact-form {
  background: rgba(250,246,239,0.05);
  border: 1px solid rgba(250,246,239,0.1);
  padding: 2.5rem;
  border-radius: 20px;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: rgba(250,246,239,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(250,246,239,0.07);
  border: 1px solid rgba(250,246,239,0.15);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(250,246,239,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--body);
}

.form-group select option {
  background: var(--ink);
  color: var(--cream);
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--paper);
  border: none;
  padding: 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.25s;
  font-family: var(--body);
}
.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(250,246,239,0.6);
  padding: 2.5rem 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(250,246,239,0.08);
}
.footer a { color: var(--cream); text-decoration: none; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== BOUTON FLOTTANT SMS ===== */
.floating-sms {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  background: var(--accent);
  color: var(--paper);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
  transition: all 0.25s;
  animation: slideInUp 0.6s ease 1s both;
}
.floating-sms:hover {
  background: var(--accent-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,107,53,0.5);
}
.floating-sms svg {
  width: 20px;
  height: 20px;
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .floating-sms {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.1rem;
    font-size: 0.88rem;
  }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 200;
  transition: width 0.05s linear;
}

/* ===== HERO ENTRANCE ORCHESTRATION ===== */
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em) rotate(2deg);
  animation: wordIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.hero-tag, .hero p.lead, .hero-ctas {
  opacity: 0;
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-tag { animation-delay: 0.1s; }
.hero p.lead { animation-delay: 0.7s; }
.hero-ctas { animation-delay: 0.9s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-photo {
  clip-path: inset(100% 0 0 0);
  animation: photoReveal 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
@keyframes photoReveal {
  to { clip-path: inset(0 0 0 0); }
}
.hero-visual { will-change: transform; }

/* ===== CARTE DÉMO PROMPT LIVE ===== */
.prompt-demo {
  position: absolute;
  bottom: 1rem;
  left: -2rem;
  width: 280px;
  background: var(--ink);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(250,246,239,0.12);
  animation: float 5s ease-in-out infinite 1.5s;
  z-index: 3;
}
.prompt-demo-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,239,0.55);
  margin-bottom: 0.6rem;
}
.prompt-demo-head .led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}
.prompt-demo-text {
  font-family: var(--body);
  font-size: 0.86rem;
  color: var(--cream);
  line-height: 1.45;
  min-height: 3.8em;
}
.prompt-demo-text .caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ===== MARQUEE OUTILS ===== */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(250,246,239,0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(250,246,239,0.7);
  white-space: nowrap;
}
.marquee-item .sep { color: var(--accent); font-size: 0.7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== REVEALS EN CASCADE ===== */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* ===== FORMATION CARDS : TILT + BORDURE ANIMÉE ===== */
.formation-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.formation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: conic-gradient(from var(--ga, 0deg), transparent 0%, var(--accent) 12%, var(--gold) 22%, transparent 35%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
@property --ga {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.formation-card:hover::after {
  opacity: 1;
  animation: spinBorder 3s linear infinite;
}
@keyframes spinBorder {
  to { --ga: 360deg; }
}

/* ===== PROCESS : LIGNE DESSINÉE ===== */
.process-steps { position: relative; }
.process-line {
  position: absolute;
  top: 2.7rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: rgba(250,246,239,0.1);
  z-index: 0;
}
.process-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.process.visible .process-line::after { transform: scaleX(1); }
.process-step { z-index: 1; background: var(--ink); }

/* ===== NAV BURGER MOBILE ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .burger { display: flex; }
  .nav-links {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.3rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 105;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.3rem; }
  .prompt-demo { left: -0.5rem; width: 240px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-photo { clip-path: none; }
  .hero h1 .word, .hero-tag, .hero p.lead, .hero-ctas { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 380px; }
  .formations-grid, .why-grid, .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.2rem 3rem; }
  .page-header { padding: 7rem 1.2rem 2rem; }
  .section { padding: 4rem 1.2rem; }
  .process { margin: 1rem; padding: 3rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
  .gallery-item-large { grid-column: 1; grid-row: 1; }
  .contact-form { padding: 1.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
