
/*══════════════════════════════════════════════════════
  HYFIVES CS — Design System
  ══════════════════════════════════════════════════════*/
:root {
  /* Couleurs */
  --ink:        #0D0D0D;
  --ink-soft:   #1A1A1A;
  --ink-muted:  #2A2A2A;
  --ivory:      #F7F4EF;
  --ivory-soft: #FAF7F2;
  --ivory-warm: #EFE9DD;
  --coral:      #E8A87C;
  --coral-deep: #D48E5E;
  --coral-soft: #F4D0B4;
  --sage:       #8FAF8F;
  --sage-deep:  #6F8F70;
  --sage-soft:  #C5D5C5;
  --violet:     #7B6FA0;
  --violet-deep:#5E5283;
  --violet-soft:#B5ACCC;
  --gold:       #C9A84C;
  --gold-deep:  #A88934;
  --white:      #FFFFFF;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing 4/8 system */
  --gutter: clamp(20px, 5vw, 80px);
  --max-w: 1440px;

  /* Shape */
  --rad-sm: 6px;
  --rad-md: 12px;
  --rad-lg: 24px;
  --rad-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t: 0.4s;
  --t-slow: 0.7s;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(13,13,13,0.06);
  --shadow-md: 0 12px 32px rgba(13,13,13,0.08);
  --shadow-lg: 0 24px 60px rgba(13,13,13,0.12);
  --shadow-coral: 0 12px 32px rgba(232,168,124,0.32);
}

/*── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
*::selection { background: var(--coral); color: var(--ink); }

/*── Utility ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--coral);
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }

/*── Scroll progress bar ───────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9999;
  background: rgba(13,13,13,0.06);
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transition: width 0.1s linear;
}

/*── Custom cursor (desktop only) ──────────────────── */
.cursor, .cursor-trail {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 8px; height: 8px;
  background: var(--coral);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-trail {
  width: 32px; height: 32px;
  border: 1px solid var(--coral);
  opacity: 0.4;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cursor.active { width: 14px; height: 14px; }
.cursor-trail.active {
  width: 64px; height: 64px;
  border-width: 1.5px;
  opacity: 0.7;
}
@media (max-width: 1024px), (hover: none) {
  .cursor, .cursor-trail { display: none; }
}

/*══════════════════════════════════════════════════════
  NAVBAR
  ══════════════════════════════════════════════════════*/
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 12px var(--gutter);
  border-bottom-color: rgba(13,13,13,0.06);
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.01em;
}
.logo-cs {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
  margin-left: 4px;
  padding: 3px 8px;
  background: rgba(232, 168, 124, 0.12);
  border-radius: var(--rad-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a:hover { color: var(--coral-deep); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Toggle PRO/CLIENT */
.toggle {
  display: inline-flex;
  background: rgba(13,13,13,0.05);
  border-radius: var(--rad-pill);
  padding: 4px;
  position: relative;
  border: 1px solid rgba(13,13,13,0.06);
}
.toggle button {
  position: relative;
  z-index: 2;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.55);
  border-radius: var(--rad-pill);
  transition: color 0.3s var(--ease);
  min-height: 36px;
  min-width: 80px;
}
.toggle button.active { color: var(--white); }
.toggle-slider {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--ink);
  border-radius: var(--rad-pill);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  z-index: 1;
}
body[data-mode="client"] .toggle-slider {
  transform: translateX(100%);
  background: var(--coral-deep);
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--rad-pill);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-2px);
}
.btn-arrow { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.btn-primary:hover .btn-arrow, .btn-outline:hover .btn-arrow { transform: translateX(4px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  border-radius: var(--rad-sm);
}
.nav-burger span {
  position: absolute;
  display: block;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.nav-burger span:nth-child(1) { top: 14px; left: 10px; right: 10px; }
.nav-burger span:nth-child(2) { top: 50%; left: 10px; right: 16px; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 14px; left: 10px; right: 10px; }

/*══════════════════════════════════════════════════════
  HERO
  ══════════════════════════════════════════════════════*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05) contrast(1.05);
  transform: scale(1.05);
  animation: heroBreath 24s var(--ease) infinite;
}
@keyframes heroBreath {
  0%, 80% { transform: scale(1.05); }
  50% { transform: scale(1.12); }
}/*
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
 }*/

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 244, 239, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 244, 239, 0.18);
  padding: 10px 20px;
  border-radius: var(--rad-pill);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ivory);
  margin-bottom: 32px;
  animation: badgeFloat 4s var(--ease) infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral-soft);
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 1s var(--ease) forwards;
}
.hero-title .word:nth-child(1) > span { animation-delay: 0.6s; }
.hero-title .word:nth-child(2) > span { animation-delay: 0.7s; }
.hero-title .word:nth-child(3) > span { animation-delay: 0.8s; }
.hero-title .word:nth-child(4) > span { animation-delay: 0.9s; }
@keyframes wordRise {
  to { transform: translateY(0); }
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.78);
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeIn 1s 1.2s var(--ease) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeIn 1s 1.4s var(--ease) forwards;
}
.btn-pro, .btn-client {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--rad-pill);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 56px;
  border: 1.5px solid transparent;
}
.btn-pro {
  background: var(--violet);
  color: var(--white);
}
.btn-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--violet-deep);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn-pro:hover::before { transform: translateY(0); }
.btn-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(123,111,160,0.4);
}
.btn-pro > * { position: relative; z-index: 1; }

.btn-client {
  background: var(--coral);
  color: var(--ink);
}
.btn-client::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral-deep);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn-client:hover::before { transform: translateY(0); }
.btn-client:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-coral);
  color: var(--white);
}
.btn-client > * { position: relative; z-index: 1; }

.btn-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--rad-sm);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s 1.6s var(--ease) forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: clamp(-12px, -2.5vw, -30px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(247,244,239,0.2);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--coral-soft);
  font-weight: 600;
  line-height: 1;
}
.hero-stat-num sup { font-size: 0.6em; }
.hero-stat-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.6);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 2s var(--ease) forwards;
}
.hero-scroll-text {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(247, 244, 239, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0; right: 0;
  height: 40%;
  background: var(--coral);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  to { top: 100%; }
}

/*══════════════════════════════════════════════════════
  CONCEPT — Storytelling
  ══════════════════════════════════════════════════════*/
.concept {
  padding: clamp(80px, 14vh, 160px) 0;
  background: var(--ivory);
  text-align: center;
  position: relative;
}
.concept .eyebrow { margin-bottom: 32px; }
.concept-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.concept-title em {
  font-style: italic;
  color: var(--violet);
  font-weight: 400;
}
.concept-text {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(13,13,13,0.7);
  max-width: 720px;
  margin: 0 auto 80px;
  font-weight: 300;
}
.concept-text strong {
  font-weight: 500;
  color: var(--ink);
}
.concept-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.pillar {
  text-align: center;
  padding: 32px 24px;
}
.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--ivory-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-deep);
  position: relative;
  transition: transform 0.5s var(--ease-spring);
}
.pillar:nth-child(2) .pillar-icon {
  background: linear-gradient(135deg, var(--violet-soft) 0%, var(--ivory-warm) 100%);
  color: var(--violet-deep);
}
.pillar:nth-child(3) .pillar-icon {
  background: linear-gradient(135deg, var(--sage-soft) 0%, var(--ivory-warm) 100%);
  color: var(--sage-deep);
}
.pillar:hover .pillar-icon { transform: scale(1.08) rotate(-6deg); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.pillar-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13,13,13,0.6);
  font-weight: 300;
}

/*══════════════════════════════════════════════════════
  PRO — Avantages pour pros
  ══════════════════════════════════════════════════════*/
.pro {
  padding: clamp(100px, 16vh, 180px) 0;
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.pro-bg-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
}
.pro-bg-glow:nth-child(1) {
  background: var(--violet);
  top: -150px;
  left: -150px;
}
.pro-bg-glow:nth-child(2) {
  background: var(--gold);
  bottom: -200px;
  right: -150px;
  opacity: 0.25;
}

.pro-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.pro-head .eyebrow { margin-bottom: 24px; }
.pro-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 24px;
  font-weight: 500;
}
.pro-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.pro-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(247, 244, 239, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.pro-sub strong {
  color: var(--gold);
  font-weight: 500;
}

.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.pro-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(247, 244, 239, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 244, 239, 0.08);
  border-radius: var(--rad-lg);
  transition: all 0.5s var(--ease);
  overflow: hidden;
  cursor: default;
  min-height: 240px;
}
.pro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.pro-card:hover {
  transform: translateY(-6px);
  background: rgba(247, 244, 239, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
}
.pro-card:hover::before { opacity: 1; }

.pro-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--rad-md);
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease-spring), background 0.4s;
}
.pro-card:hover .pro-card-icon {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.1);
}
.pro-card-icon svg { width: 24px; height: 24px; }
.pro-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.pro-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.65);
  font-weight: 300;
}

.pro-cta-wrap {
  text-align: center;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--rad-pill);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 56px;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ivory);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn-gold:hover::before { transform: translateY(0); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(201,168,76,0.35); }
.btn-gold > * { position: relative; z-index: 1; }

/*── PRO V2 : punchline ─────────────────────────────── */
.pro-punchline {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 1100px;
}
.pro-pain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(232, 168, 124, 0.12);
  border: 1px solid rgba(232, 168, 124, 0.3);
  border-radius: var(--rad-pill);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
}
.pro-pain svg { width: 12px; height: 12px; }
.pro-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 500;
}
.pro-headline strike {
  position: relative;
  text-decoration: none;
  color: rgba(247, 244, 239, 0.4);
}
.pro-headline strike::after {
  content: '';
  position: absolute;
  top: 50%; left: -2%;
  width: 104%; height: 3px;
  background: var(--coral);
  transform: rotate(-2deg) scaleX(0);
  transform-origin: left;
  animation: strikeIn 1s 0.6s var(--ease) forwards;
}
@keyframes strikeIn {
  to { transform: rotate(-2deg) scaleX(1); }
}
.pro-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.pro-headline-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(247, 244, 239, 0.7);
  font-weight: 300;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}
.pro-headline-sub strong {
  color: var(--gold);
  font-weight: 500;
}

/*── Comparison Avant/Après ─────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 96px;
  position: relative;
}
.compare-side {
  padding: 44px 40px;
  border-radius: var(--rad-lg);
  position: relative;
  overflow: hidden;
}
.compare-side.before {
  background: rgba(247, 244, 239, 0.025);
  border: 1px solid rgba(247, 244, 239, 0.07);
}
.compare-side.after {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(232, 168, 124, 0.04) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.compare-side.after::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.compare-divider { display: none; }

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 7px 14px;
  border-radius: var(--rad-pill);
}
.compare-tag svg { width: 12px; height: 12px; }
.compare-tag.before {
  background: rgba(247, 244, 239, 0.06);
  color: rgba(247, 244, 239, 0.55);
  border: 1px solid rgba(247, 244, 239, 0.1);
}
.compare-tag.after {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.compare-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--ivory);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.compare-side.before .compare-title {
  color: rgba(247, 244, 239, 0.7);
}
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.06);
  list-style: none;
}
.compare-list li:last-child { border-bottom: none; }
.compare-text {
  flex: 1 1 auto;
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
}
.compare-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  flex: 0 0 24px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.compare-side:hover .compare-icon { transform: scale(1.05); }
.compare-list.before li {
  color: rgba(247, 244, 239, 0.55);
}
.compare-list.before .compare-icon {
  background: rgba(247, 244, 239, 0.06);
  color: rgba(247, 244, 239, 0.5);
  border: 1px solid rgba(247, 244, 239, 0.1);
}
.compare-list.after li {
  color: var(--ivory);
  font-weight: 400;
}
.compare-list.after li strong {
  color: var(--gold);
  font-weight: 600;
}
.compare-list.after .compare-icon {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.compare-list svg { width: 12px; height: 12px; stroke-width: 3; }

.compare-stat {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 244, 239, 0.1);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
}
.compare-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.compare-side.before .compare-stat strong {
  color: rgba(247, 244, 239, 0.7);
}
.compare-side.after .compare-stat strong {
  color: var(--gold);
}

/*── PRO SPOTLIGHT (testimonial inline) ─────────────── */
.pro-spotlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(123, 111, 160, 0.05) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--rad-lg);
  padding: 56px;
  margin-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.pro-spotlight::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--serif);
  font-size: 200px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.08;
  content: '"';
  font-style: italic;
}
.pro-spotlight-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--rad-md);
  overflow: hidden;
}
.pro-spotlight-video {
  position: relative;
  z-index: 2;
}
.pro-spotlight-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pro-spotlight-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.7), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.pro-spotlight-name-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
}
.pro-spotlight-job {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: var(--rad-sm);
  margin-bottom: 8px;
}
.pro-spotlight-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.pro-spotlight-content {
  position: relative;
}
.pro-spotlight-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.pro-spotlight-quote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.pro-spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 244, 239, 0.1);
}
.pro-spotlight-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pro-spotlight-stat-label {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(247, 244, 239, 0.5);
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.4;
}

/*── DAY TIMELINE ───────────────────────────────────── */
.pro-day {
  margin-bottom: 80px;
}
.pro-day-head {
  text-align: center;
  margin-bottom: 56px;
}
.pro-day-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.pro-day-title em { font-style: italic; color: var(--gold); }
.pro-day-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(247, 244, 239, 0.55);
  font-weight: 300;
}
.pro-day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.pro-day-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  opacity: 0.4;
  z-index: 0;
}
.pro-day-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.pro-day-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
  position: relative;
  transition: transform 0.4s var(--ease-spring);
}
.pro-day-step:hover .pro-day-time {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.08);
}
.pro-day-label {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.pro-day-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(247, 244, 239, 0.55);
  line-height: 1.5;
  font-weight: 300;
}
.pro-day-desc strong { color: var(--coral); font-weight: 500; }

/*── SCARCITY BAR ───────────────────────────────────── */
.pro-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 32px;
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.12), rgba(201, 168, 76, 0.12));
  border: 1px solid rgba(232, 168, 124, 0.3);
  border-radius: var(--rad-pill);
  margin-bottom: 32px;
  flex-wrap: wrap;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pro-scarcity-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 16px var(--coral);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.pro-scarcity-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ivory);
  font-weight: 400;
}
.pro-scarcity-text strong {
  color: var(--coral);
  font-weight: 600;
}

.pro-final-cta {
  text-align: center;
}
.pro-final-cta-meta {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(247, 244, 239, 0.45);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pro-final-cta-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pro-final-cta-meta-item svg {
  width: 14px; height: 14px;
  color: var(--gold);
}

/* Responsive PRO */
@media (max-width: 1024px) {
  .compare { grid-template-columns: 1fr; }
  .compare-divider { width: 100%; height: 1px; }
  .pro-spotlight { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .pro-day-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .pro-day-grid::before { display: none; }
}
@media (max-width: 600px) {
  .pro-day-grid { grid-template-columns: 1fr; }
  .pro-spotlight-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pro-spotlight { padding: 28px 24px; }
  .compare-side { padding: 28px 24px; }
}

/*══════════════════════════════════════════════════════
  ESPACES — Galerie masonry
  ══════════════════════════════════════════════════════*/
.spaces {
  padding: clamp(100px, 16vh, 180px) 0;
  background: var(--ivory);
}
.spaces-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.spaces-head-left {
  max-width: 700px;
}
.spaces-head .eyebrow { margin-bottom: 24px; }
.spaces-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
}
.spaces-title em {
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 400;
}
.spaces-head-right {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13,13,13,0.55);
  max-width: 320px;
  line-height: 1.6;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 16px;
}
.space-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad-md);
  cursor: pointer;
  background: var(--ink-soft);
}
.space-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.space-card:hover img { transform: scale(1.08); }
.space-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(123,111,160,0.0) 0%, rgba(13,13,13,0.7) 100%);
  opacity: 0.3;
  transition: opacity 0.5s var(--ease);
}
.space-card:hover .space-card-overlay {
  opacity: 0.85;
  background: linear-gradient(135deg, rgba(123,111,160,0.65) 0%, rgba(13,13,13,0.85) 100%);
}
.space-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.space-card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.space-card-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.space-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.05s var(--ease), transform 0.4s 0.05s var(--ease);
}
.space-card:hover .space-card-tag,
.space-card:hover .space-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Masonry placement */
.space-card-1 { grid-column: span 7; grid-row: span 4; }
.space-card-2 { grid-column: span 5; grid-row: span 3; }
.space-card-3 { grid-column: span 5; grid-row: span 4; }
.space-card-4 { grid-column: span 4; grid-row: span 3; }
.space-card-5 { grid-column: span 3; grid-row: span 4; }

/*══════════════════════════════════════════════════════
  TARIFS
  ══════════════════════════════════════════════════════*/
.pricing {
  padding: clamp(100px, 16vh, 180px) 0;
  background: var(--ivory-warm);
  position: relative;
}
.pricing-head {
  text-align: center;
  margin-bottom: 72px;
}
.pricing-head .eyebrow { margin-bottom: 24px; }
.pricing-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 500;
}
.pricing-title em { font-style: italic; color: var(--coral-deep); font-weight: 400; }
.pricing-sub {
  font-family: var(--sans);
  font-size: 16px;
  color: rgba(13,13,13,0.6);
  font-weight: 300;
}

/*── Pricing tabs ─────────────────────────────────── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 24px;
  padding: 6px;
  background: var(--ivory);
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: var(--rad-pill);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.pricing-tabs::-webkit-scrollbar { display: none; }

.pricing-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.55);
  border-radius: var(--rad-pill);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  scroll-snap-align: start;
  min-height: 44px;
  position: relative;
}
.pricing-tab svg { width: 14px; height: 14px; flex-shrink: 0; }
.pricing-tab:hover:not(.active) {
  color: var(--coral-deep);
  background: rgba(232, 168, 124, 0.08);
}
.pricing-tab.active {
  background: var(--ink);
  color: var(--ivory);
}
.pricing-tab.active::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

/*── Pricing space caption ──────────────────────────── */
.pricing-caption {
  text-align: center;
  margin: 32px auto 40px;
  max-width: 640px;
  min-height: 56px;
}
.pricing-caption-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pricing-caption-title em {
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 400;
}
.pricing-caption-title svg {
  width: 18px; height: 18px;
  color: var(--gold);
}
.pricing-caption-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13, 13, 13, 0.55);
  font-weight: 300;
  line-height: 1.6;
}

/*── Pricing set wrapper (animated) ──────────────────── */
.pricing-set {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  justify-content: center;
}
.pricing-set.active {
  display: grid;
  animation: priceSwap 0.55s var(--ease);
}
@keyframes priceSwap {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .pricing-set { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-set.active .price-card.featured { transform: none; }
  .pricing-tabs {
    justify-content: flex-start;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    border-radius: 0;
    border-left: 0; border-right: 0;
    background: var(--ivory-soft);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  padding: 40px 36px;
  background: var(--ivory);
  border-radius: var(--rad-lg);
  border: 1px solid rgba(13,13,13,0.06);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--coral);
  transition: width 0.5s var(--ease);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,168,124,0.3);
}
.price-card:hover::before { width: 60%; }
.price-card.featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.price-card.featured::before { width: 100%; background: var(--gold); }
.price-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--rad-sm);
}
.price-card-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 16px;
}
.price-card.featured .price-card-tag { color: var(--gold); }

.price-card-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.price-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.price-card-amount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-card-currency {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}
.price-card-period {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13,13,13,0.5);
  font-weight: 400;
}
.price-card.featured .price-card-period { color: rgba(247,244,239,0.5); }
.price-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(13,13,13,0.65);
  margin-bottom: 28px;
  font-weight: 300;
  min-height: 44px;
}
.price-card.featured .price-card-desc { color: rgba(247,244,239,0.7); }
.price-card-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13,13,13,0.75);
}
.price-card.featured .price-card-list li { color: rgba(247,244,239,0.8); }
.price-card-list svg {
  width: 16px; height: 16px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .price-card-list svg { color: var(--gold); }
.price-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--rad-pill);
  transition: all 0.4s var(--ease);
  background: var(--ivory-warm);
  color: var(--ink);
  border: 1px solid rgba(13,13,13,0.08);
  min-height: 50px;
}
.price-card-cta:hover { background: var(--ink); color: var(--ivory); }
.price-card.featured .price-card-cta { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.price-card.featured .price-card-cta:hover { background: var(--ivory); color: var(--ink); }

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13,13,13,0.55);
  font-style: italic;
}
.pricing-note strong {
  color: var(--coral-deep);
  font-weight: 600;
  font-style: normal;
}

.trusted {
  padding: clamp(80px, 12vh, 140px) 0;
  background: #fff;
  position: relative;
}
.trusted-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.trusted-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.1;
  font-weight: 500;
}
.trusted-title em { font-style: italic; color: var(--coral-deep); font-weight: 400; }
.trusted-sub {
  color: rgba(13,13,13,0.62);
  font-size: 16px;
  line-height: 1.7;
  max-width: 740px;
}
.trusted-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trusted-card {
  border-radius: 18px;
  border: 1px solid rgba(13,13,13,0.08);
  background: rgba(247,244,239,0.6);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 96px;
}
.trusted-name {
  font-weight: 650;
  letter-spacing: 0.2px;
  color: var(--ink);
}
.trusted-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trusted-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13,13,13,0.08);
  font-size: 12px;
  color: rgba(13,13,13,0.78);
  text-decoration: none;
  transition: all 0.35s var(--ease);
}
.trusted-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
@media (max-width: 1024px) {
  .trusted-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .trusted-list { grid-template-columns: 1fr; }
}

/*══════════════════════════════════════════════════════
  CLIENT
  ══════════════════════════════════════════════════════*/
.client {
  padding: clamp(100px, 16vh, 180px) 0;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--ivory) 60%);
  position: relative;
  overflow: hidden;
}
.client-decoration {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,124,0.4) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.client-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.client-content .eyebrow { margin-bottom: 24px; }
.client-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 500;
}
.client-title em { font-style: italic; color: var(--coral-deep); font-weight: 400; }
.client-sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(13,13,13,0.7);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}

.client-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.client-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--rad-md);
  border: 1px solid rgba(13,13,13,0.06);
  transition: all 0.4s var(--ease);
}
.client-step:hover {
  background: var(--ivory);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.client-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.client-step:hover .client-step-num {
  background: var(--coral-deep);
  color: var(--ivory);
  transform: rotate(-6deg) scale(1.05);
}
.client-step-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.client-step-text span {
  display: block;
  font-size: 13px;
  color: rgba(13,13,13,0.55);
  font-weight: 300;
  margin-top: 2px;
}

.client-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--rad-pill);
  transition: all 0.5s var(--ease);
  min-height: 56px;
}
.client-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}

.client-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.client-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.client-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 14px 20px;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.client-image-badge-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.client-image-badge-stars svg { width: 14px; height: 14px; fill: currentColor; }
.client-image-badge-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.client-image-badge-text span {
  display: block;
  font-size: 11px;
  color: rgba(13,13,13,0.55);
  font-weight: 400;
}

/*══════════════════════════════════════════════════════
  TÉMOIGNAGES
  ══════════════════════════════════════════════════════*/
.testimonials {
  padding: clamp(100px, 16vh, 180px) 0;
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.testimonials-head {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-head .eyebrow { margin-bottom: 24px; }
.testimonials-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-weight: 500;
}
.testimonials-title em {
  font-style: italic;
  color: var(--coral-soft);
  font-weight: 400;
}

.testimonial-tabs {
  display: inline-flex;
  background: rgba(247, 244, 239, 0.06);
  border: 1px solid rgba(247, 244, 239, 0.1);
  padding: 4px;
  border-radius: var(--rad-pill);
  margin-bottom: 56px;
  position: relative;
}
.testimonial-tab {
  position: relative;
  z-index: 2;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.55);
  border-radius: var(--rad-pill);
  transition: color 0.3s var(--ease);
  min-height: 44px;
}
.testimonial-tab.active { color: var(--ink); }
.testimonial-tabs-slider {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--coral);
  border-radius: var(--rad-pill);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
  z-index: 1;
}
.testimonial-tabs[data-tab="client"] .testimonial-tabs-slider {
  transform: translateX(100%);
  background: var(--violet-soft);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  scroll-snap-align: start;
  background: rgba(247, 244, 239, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 244, 239, 0.08);
  border-radius: var(--rad-lg);
  padding: 36px 32px;
  transition: all 0.5s var(--ease);
}
.testimonial-card:hover {
  background: rgba(247, 244, 239, 0.07);
  border-color: rgba(232, 168, 124, 0.3);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 400;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 244, 239, 0.1);
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--coral);
}
.testimonial-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 2px;
}
.testimonial-role {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(247, 244, 239, 0.55);
  font-weight: 400;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.testi-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 239, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: all 0.3s var(--ease);
}
.testi-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ink);
}

/*══════════════════════════════════════════════════════
  FAQ
  ══════════════════════════════════════════════════════*/
.faq {
  padding: clamp(100px, 16vh, 180px) 0;
  background: var(--ivory);
}
.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-head .eyebrow { margin-bottom: 24px; }
.faq-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
}
.faq-title em { font-style: italic; color: var(--coral-deep); font-weight: 400; }

.faq-tabs {
  display: inline-flex;
  background: var(--ivory-warm);
  padding: 4px;
  border-radius: var(--rad-pill);
  margin: 24px auto 0;
  position: relative;
  border: 1px solid rgba(13,13,13,0.06);
}
.faq-tab {
  position: relative;
  z-index: 2;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.55);
  border-radius: var(--rad-pill);
  transition: color 0.3s var(--ease);
  min-height: 44px;
}
.faq-tab.active { color: var(--ivory); }
.faq-tabs-slider {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--ink);
  border-radius: var(--rad-pill);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
  z-index: 1;
}
.faq-tabs[data-tab="client"] .faq-tabs-slider {
  transform: translateX(100%);
  background: var(--coral-deep);
}

.faq-list {
  max-width: 880px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(13,13,13,0.08);
  transition: border-color 0.3s;
}
.faq-item:first-child { border-top: 1px solid rgba(13,13,13,0.08); }
.faq-item.open { border-color: rgba(232,168,124,0.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s var(--ease);
  min-height: 44px;
}
.faq-item.open .faq-q { color: var(--coral-deep); }
.faq-q:hover { color: var(--coral-deep); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(13,13,13,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.faq-icon svg {
  width: 12px; height: 12px;
  transition: transform 0.4s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
  padding: 0 0 24px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(13,13,13,0.65);
  font-weight: 300;
  max-width: 720px;
}

[data-faq-set] { display: none; }
[data-faq-set].active { display: block; }

/* FAQ tools: search bar + result count + pagination */
.faq-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 14px 18px;
  margin-bottom: 24px;
  background: var(--ivory-soft);
  border-radius: var(--rad-lg);
  border: 1px solid rgba(13,13,13,0.06);
  box-shadow: var(--shadow-sm);
}

.faq-search {
  flex: 1 1 220px;
  min-width: 0;
  padding: 10px 14px 10px 38px;
  border-radius: var(--rad-pill);
  border: 1px solid rgba(13,13,13,0.12);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.25' cy='7.25' r='3.75' stroke='%23808080' stroke-width='1.4'/%3E%3Cpath d='M10 10l2.5 2.5' stroke='%23808080' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px 50%;
  background-size: 16px 16px;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.faq-search::placeholder {
  color: rgba(13,13,13,0.45);
}

.faq-search:focus {
  border-color: var(--coral-deep);
  box-shadow: 0 0 0 1px rgba(232,168,124,0.35);
  background: var(--ivory);
}

.faq-search-count {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 500;
  color: rgba(13,13,13,0.6);
  white-space: nowrap;
}

.faq-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.faq-page-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--rad-pill);
  border: 1px solid rgba(13,13,13,0.1);
  background: var(--ivory-warm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.faq-page-btn:hover {
  background: var(--coral-soft);
  border-color: rgba(232,168,124,0.6);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.faq-page-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .faq-tools {
    align-items: stretch;
  }

  .faq-search-count {
    width: 100%;
    font-size: 12px;
    text-align: left;
    opacity: 0.85;
  }
}

/*══════════════════════════════════════════════════════
  CONTACT
  ══════════════════════════════════════════════════════*/
.contact {
  padding: clamp(100px, 16vh, 180px) 0;
  background: linear-gradient(135deg, var(--sage-soft) 0%, var(--ivory) 70%);
  position: relative;
}
.contact-head {
  text-align: center;
  margin-bottom: 64px;
}
.contact-head .eyebrow { margin-bottom: 24px; }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  font-weight: 500;
}
.contact-title em { font-style: italic; color: var(--sage-deep); font-weight: 400; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--ivory);
  padding: 48px;
  border-radius: var(--rad-lg);
  border: 1px solid rgba(13,13,13,0.06);
  box-shadow: var(--shadow-md);
}
.form-toggle {
  margin-bottom: 32px;
}
.form-toggle-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.6);
  margin-bottom: 12px;
  display: block;
}
.form-toggle-buttons {
  display: inline-flex;
  background: var(--ivory-warm);
  padding: 4px;
  border-radius: var(--rad-pill);
  border: 1px solid rgba(13,13,13,0.06);
  position: relative;
}
.form-toggle-btn {
  position: relative;
  z-index: 2;
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.55);
  border-radius: var(--rad-pill);
  transition: color 0.3s var(--ease);
  min-height: 40px;
}
.form-toggle-btn.active { color: var(--ivory); }
.form-toggle-slider {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--violet);
  border-radius: var(--rad-pill);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.form-toggle-buttons[data-form="client"] .form-toggle-slider {
  transform: translateX(100%);
  background: var(--coral-deep);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.field { position: relative; margin-bottom: 20px; }
.field-row .field { margin-bottom: 0; }

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 18px 18px 8px;
  background: var(--ivory-soft);
  border: 1.5px solid rgba(13,13,13,0.08);
  border-radius: var(--rad-md);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
  min-height: 56px;
}
.field-textarea { min-height: 110px; resize: vertical; padding-top: 22px; line-height: 1.5; }
.field-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230D0D0D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}
.field-label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(13,13,13,0.5);
  pointer-events: none;
  transition: all 0.25s var(--ease);
  background: transparent;
}
.field-input:focus, .field-textarea:focus, .field-select:focus,
.field-input:not(:placeholder-shown), .field-textarea:not(:placeholder-shown), .field-select:valid {
  border-color: var(--coral);
  background: var(--ivory);
}
.field-input:focus + .field-label,
.field-input:not(:placeholder-shown) + .field-label,
.field-textarea:focus + .field-label,
.field-textarea:not(:placeholder-shown) + .field-label,
.field-select:focus + .field-label,
.field-select:valid + .field-label {
  top: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
}

/*── Smart form fields ──────────────────────────────── */
.field-conditional {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 20px;
  overflow: hidden;
  transition:
    max-height 0.55s var(--ease),
    opacity 0.4s var(--ease),
    margin 0.55s var(--ease),
    transform 0.55s var(--ease);
  transform: translateY(0);
}
.field-conditional.hidden {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.field-conditional[data-show-mode="pro"].active-show {
  border-left: 2px solid var(--violet);
  padding-left: 16px;
  margin-left: -18px;
  background: linear-gradient(90deg, rgba(123,111,160,0.04), transparent);
}
.field-conditional[data-show-mode="client"].active-show {
  border-left: 2px solid var(--coral-deep);
  padding-left: 16px;
  margin-left: -18px;
  background: linear-gradient(90deg, rgba(232,168,124,0.06), transparent);
}

/* Chips selector */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.chip {
  padding: 10px 16px;
  background: var(--ivory-soft);
  border: 1.5px solid rgba(13,13,13,0.1);
  border-radius: var(--rad-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(13,13,13,0.7);
  cursor: none;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
}
.chip:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
  transform: translateY(-1px);
}
.chip.selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
[data-form-active="client"] .chip.selected {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
}
.chip-check {
  width: 14px; height: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.chip.selected .chip-check { opacity: 1; }

/* Field group label */
.field-group-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.6);
  margin-bottom: 4px;
}

/* Mode-specific section markers */
.field-mode-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(13,13,13,0.08);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.field-mode-marker[data-show-mode="pro"] { color: var(--violet-deep); }
.field-mode-marker[data-show-mode="client"] { color: var(--coral-deep); }
.field-mode-marker::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: currentColor;
}
.field-mode-marker svg { width: 14px; height: 14px; }

/* Date input */
input[type="date"].field-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.5);
  opacity: 0.7;
}
input[type="date"].field-input:focus::-webkit-calendar-picker-indicator { filter: invert(0.4) sepia(1) hue-rotate(340deg); }

.form-submit {
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--rad-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 16px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--coral-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease), height 0.6s var(--ease);
}
.form-submit:hover::before { width: 600px; height: 600px; }
.form-submit > * { position: relative; z-index: 1; }

/* Info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.2) saturate(1.1);
}
.contact-info-list {
  background: var(--ivory);
  border-radius: var(--rad-lg);
  padding: 32px;
  border: 1px solid rgba(13,13,13,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: var(--rad-md);
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-key {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 4px;
}
.info-val {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.info-val a { transition: color 0.3s; }
.info-val a:hover { color: var(--coral-deep); }
.info-val span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(13,13,13,0.55);
  margin-top: 2px;
}

/*══════════════════════════════════════════════════════
  FOOTER
  ══════════════════════════════════════════════════════*/
footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px 0 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral) 30%, var(--gold) 70%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,244,239,0.08);
}
.footer-brand .logo {
  color: var(--ivory);
  font-size: 32px;
  margin-bottom: 16px;
}
.footer-brand-tag {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(247,244,239,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 380px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,244,239,0.7);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ink);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(247,244,239,0.65);
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--coral-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(247,244,239,0.4);
  letter-spacing: 0.05em;
}
.footer-copy span { color: var(--coral); }
.footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.4);
}
.footer-locale-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 10px var(--sage);
}

/*══════════════════════════════════════════════════════
  REVEAL ON SCROLL
  ══════════════════════════════════════════════════════*/
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/*══════════════════════════════════════════════════════
  RESPONSIVE
  ══════════════════════════════════════════════════════*/
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .toggle { display: none; }
  .pro-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { transform: none; }
  .client-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spaces-grid { grid-template-columns: repeat(6, 1fr); }
  .space-card-1 { grid-column: span 6; grid-row: span 4; }
  .space-card-2, .space-card-3, .space-card-4, .space-card-5 { grid-column: span 3; grid-row: span 3; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 20px; }
  .hero-stat:not(:last-child)::after { display: none; }
  .pro-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 8px); min-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .spaces-grid .space-card { grid-column: 1 !important; grid-row: auto !important; aspect-ratio: 4/3; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .nav-right .btn-outline,
  .nav-right .btn-primary { padding: 12px 16px; font-size: 11px; }
  .testimonials-track { padding-left: var(--gutter); padding-right: var(--gutter); margin: 0 calc(-1 * var(--gutter)); }
  .concept-pillars { grid-template-columns: 1fr; gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ══════════════════════════════════════════════════════
   REMANIEMENT FINAL — HYFIVES CS ORANGE & BLANC
   Structure conservée, identité visuelle modernisée
   ══════════════════════════════════════════════════════ */
:root{
  --ink:#111111;
  --ink-soft:#181818;
  --ink-muted:#252525;
  --ivory:#FFFFFF;
  --ivory-soft:#FAFAFA;
  --ivory-warm:#F6F6F6;
  --coral:#FF7A00;
  --coral-deep:#E56700;
  --coral-soft:#FFD4AE;
  --gold:#FF7A00;
  --gold-deep:#C95700;
  --sage:#FF7A00;
  --sage-deep:#E56700;
  --sage-soft:#FFE5CC;
  --violet:#111111;
  --violet-deep:#000000;
  --violet-soft:#FFE5CC;
  --white:#FFFFFF;
  --shadow-coral:0 16px 40px rgba(255,122,0,.28);
}
body{background:#fff;color:#111;}
.nav.scrolled{background:rgba(255,255,255,.92);box-shadow:0 12px 35px rgba(0,0,0,.06);border-bottom-color:rgba(255,122,0,.12)}
.logo-cs{color:#fff;background:#FF7A00;}
.nav-links a:hover{color:#FF7A00}.nav-links a::after{background:#FF7A00;}
.hero{background:#111;}
.hero-slider{position:absolute;inset:0;z-index:0;overflow:hidden;}
.hero-slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transform:scale(1.06);transition:opacity 1.2s ease,transform 8s ease;filter:brightness(.54) contrast(1.12) saturate(1.05);}
.hero-slider img.active{opacity:1;transform:scale(1.12);}
/*.hero-overlay{background:linear-gradient(120deg,rgba(0,0,0,.82),rgba(0,0,0,.48) 45%,rgba(255,122,0,.20));}*/
.hero-badge{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff;}
.hero-badge-dot,.hero-scroll-line::after,.cursor{background:#FF7A00;box-shadow:0 0 18px rgba(255,122,0,.75)}
.cursor-trail{border-color:#FF7A00}.hero-title em,.hero-stat-num{color:#FFD4AE}.hero-sub{color:rgba(255,255,255,.86)}
.btn-pro,.btn-client,.btn-primary,.client-cta{background:#FF7A00;color:#fff;border-color:#FF7A00;box-shadow:0 16px 35px rgba(255,122,0,.22)}
.btn-pro::before,.btn-client::before{background:#E56700}.btn-outline{border-color:#FF7A00;color:#FF7A00}.btn-outline:hover{background:#FF7A00;color:#fff}
.concept,.spaces,.trusted,.faq{background:#fff}.pricing{background:#FAFAFA}.client{background:linear-gradient(135deg,#FFFFFF 0%,#FFF3E8 100%)}
.eyebrow,.concept-title em,.spaces-title em,.pricing-title em,.client-title em,.trusted-title em{color:#FF7A00}.eyebrow::before{background:#FF7A00}
.pillar-icon,.pillar:nth-child(2) .pillar-icon,.pillar:nth-child(3) .pillar-icon{background:#FFF0E3;color:#FF7A00;border:1px solid rgba(255,122,0,.15)}
.pro{background:#111;color:#fff}.pro-bg-glow:nth-child(1),.pro-bg-glow:nth-child(2){background:#FF7A00;opacity:.20}.pro-title em,.pro-headline em,.pro-sub strong,.pro-headline-sub strong{color:#FF7A00}
.pro-card,.compare-side.before,.compare-side.after,.pro-spotlight{background:rgba(255,255,255,.045);border-color:rgba(255,255,255,.10)}
.pro-card:hover,.compare-side.after,.pro-spotlight{border-color:rgba(255,122,0,.32);box-shadow:0 24px 70px rgba(255,122,0,.12)}
.pro-card-icon,.compare-list.after .compare-icon,.compare-tag.after,.btn-gold,.pro-day-time:hover,.price-card.featured .price-card-cta{background:#FF7A00;color:#fff;border-color:#FF7A00}
.pro-card:hover .pro-card-icon,.pro-day-step:hover .pro-day-time{background:#FF7A00;color:#fff}.btn-gold::before{background:#fff}.btn-gold:hover{color:#111;box-shadow:0 16px 32px rgba(255,122,0,.30)}
.compare-list.after li strong,.compare-stat strong,.pro-spotlight-stat-num,.pro-spotlight-quote em,.pro-day-title em,.pro-final-cta-meta-item svg{color:#FF7A00}
.pro-pain,.pro-scarcity{background:rgba(255,122,0,.12);border-color:rgba(255,122,0,.30);color:#FF7A00}.pro-scarcity-dot{background:#FF7A00;box-shadow:0 0 18px #FF7A00}.pro-scarcity-text strong{color:#FF7A00}
.space-card-overlay{background:linear-gradient(135deg,rgba(255,122,0,.05),rgba(0,0,0,.70))}.space-card:hover .space-card-overlay{background:linear-gradient(135deg,rgba(255,122,0,.72),rgba(0,0,0,.88));opacity:.92}.space-card-tag,.space-card-cta{color:#fff;background:rgba(255,122,0,.88);padding:6px 10px;border-radius:999px;width:max-content}.space-card-name{text-shadow:0 6px 24px rgba(0,0,0,.45)}
.price-card{background:#fff;border-color:#eee;box-shadow:0 15px 45px rgba(0,0,0,.04)}.price-card::before{background:#FF7A00}.price-card:hover{border-color:rgba(255,122,0,.35);box-shadow:0 20px 55px rgba(255,122,0,.12)}.price-card.featured,.pricing-tab.active{background:#FF7A00;color:#fff;border-color:#FF7A00}.price-card-badge{background:#111;color:#fff}.price-card-tag,.price-card-list svg,.pricing-caption-title em,.pricing-caption-title svg,.pricing-note strong{color:#FF7A00}.price-card.featured .price-card-tag,.price-card.featured .price-card-list svg{color:#fff}.pricing-tab:hover:not(.active){background:#FFF0E3;color:#FF7A00}.pricing-tab.active::after{background:#111}
.trusted-card,.client-step{background:#fff;border-color:#eee;box-shadow:0 12px 35px rgba(0,0,0,.04)}.trusted-link:hover,.client-step:hover{box-shadow:0 18px 42px rgba(255,122,0,.12)}.client-step-num{background:#FF7A00;color:#fff}.client-step:hover .client-step-num{background:#111;color:#fff}
.footer,.contact{background:#111;color:#fff}.contact a,.footer a:hover{color:#FF7A00}
@media(max-width:760px){.hero-content{text-align:left}.hero-ctas{justify-content:flex-start}.hero-title{font-size:clamp(2.5rem,12vw,4rem)}.hero-slider img{object-position:center}.nav{padding:12px 12px}.nav-right .btn-outline{display:none}}
.reservation-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.reservation-modal.active {
  display: flex;
  animation: modalFadeIn 0.35s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reservation-modal-content {
  position: relative;
  width: 100%;
  max-width: 1020px;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.25);
  overflow-y: auto;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(13,13,13,0.06);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.modal-close:hover {
  background: rgba(13,13,13,0.12);
  transform: scale(1.1);
}
.modal-close svg {
  width: 20px;
  height: 20px;
}
.modal-iframe {
  width: 100%;
  min-height: 600px;
  height: 700px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .reservation-modal { padding: 12px; }
  .reservation-modal-content { max-height: 95vh; border-radius: 12px; }
  .modal-iframe { min-height: 500px; }
}


/* ══════════════════════════════════════════════════════
   REMANIEMENT FINAL — HYFIVES CS ORANGE & BLANC
   Structure conservée, identité visuelle modernisée
   ══════════════════════════════════════════════════════ */
:root{
  --ink:#111111;
  --ink-soft:#181818;
  --ink-muted:#252525;
  --ivory:#FFFFFF;
  --ivory-soft:#FAFAFA;
  --ivory-warm:#F6F6F6;
  --coral:#FF7A00;
  --coral-deep:#E56700;
  --coral-soft:#FFD4AE;
  --gold:#FF7A00;
  --gold-deep:#C95700;
  --sage:#FF7A00;
  --sage-deep:#E56700;
  --sage-soft:#FFE5CC;
  --violet:#111111;
  --violet-deep:#000000;
  --violet-soft:#FFE5CC;
  --white:#FFFFFF;
  --shadow-coral:0 16px 40px rgba(255,122,0,.28);
}
body{background:#fff;color:#111;}
.nav.scrolled{background:rgba(255,255,255,.92);box-shadow:0 12px 35px rgba(0,0,0,.06);border-bottom-color:rgba(255,122,0,.12)}
.logo-cs{color:#fff;background:#ffc01e;}
.nav-links a:hover{color:#FF7A00}.nav-links a::after{background:#FF7A00;}
.hero{background:#111;}
.hero-slider{position:absolute;inset:0;z-index:0;overflow:hidden;}
.hero-slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transform:scale(1.06);transition:opacity 1.2s ease,transform 8s ease;filter:brightness(.54) contrast(1.12) saturate(1.05);}
.hero-slider img.active{opacity:1;transform:scale(1.12);}
.hero-overlay{background:linear-gradient(120deg,rgba(0,0,0,.82),rgba(0,0,0,.48) 45%,rgba(255,122,0,.20));}
.hero-badge{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff;}
.hero-badge-dot,.hero-scroll-line::after,.cursor{background:#FF7A00;box-shadow:0 0 18px rgba(255,122,0,.75)}
.cursor-trail{border-color:#FF7A00}.hero-title em,.hero-stat-num{color:#FFD4AE}.hero-sub{color:rgba(255,255,255,.86)}
.btn-pro,.btn-client,.btn-primary,.client-cta{background:#FF7A00;color:#fff;border-color:#FF7A00;box-shadow:0 16px 35px rgba(255,122,0,.22)}

/*btn pro */
.btn-pro::before,.btn-client::before{background:#e5b300}.btn-outline{border-color:#FF7A00;color:#FF7A00}.btn-outline:hover{background:#FF7A00;color:#fff}
.concept,.spaces,.trusted,.faq{background:#fff}.pricing{background:#FAFAFA}.client{background:linear-gradient(135deg,#FFFFFF 0%,#FFF3E8 100%)}
.eyebrow,.concept-title em,.spaces-title em,.pricing-title em,.client-title em,.trusted-title em{color:#FF7A00}.eyebrow::before{background:#FF7A00}
.pillar-icon,.pillar:nth-child(2) .pillar-icon,.pillar:nth-child(3) .pillar-icon{background:#FFF0E3;color:#FF7A00;border:1px solid rgba(255,122,0,.15)}
.pro{background:#111;color:#fff}.pro-bg-glow:nth-child(1),.pro-bg-glow:nth-child(2){background:#FF7A00;opacity:.20}.pro-title em,.pro-headline em,.pro-sub strong,.pro-headline-sub strong{color:#FF7A00}
.pro-card,.compare-side.before,.compare-side.after,.pro-spotlight{background:rgba(255,255,255,.045);border-color:rgba(255,255,255,.10)}
.pro-card:hover,.compare-side.after,.pro-spotlight{border-color:rgba(255,122,0,.32);box-shadow:0 24px 70px rgba(255,122,0,.12)}
.pro-card-icon,.compare-list.after .compare-icon,.compare-tag.after,.btn-gold,.pro-day-time:hover,.price-card.featured .price-card-cta{background:#ffc01e;color:#fff;border-color:#FF7A00}
.pro-card:hover .pro-card-icon,.pro-day-step:hover .pro-day-time{background:#FF7A00;color:#fff}.btn-gold::before{background:#fff}.btn-gold:hover{color:#111;box-shadow:0 16px 32px rgba(255,122,0,.30)}
.compare-list.after li strong,.compare-stat strong,.pro-spotlight-stat-num,.pro-spotlight-quote em,.pro-day-title em,.pro-final-cta-meta-item svg{color:#FF7A00}
.pro-pain,.pro-scarcity{background:rgba(255,122,0,.12);border-color:rgba(255,122,0,.30);color:#FF7A00}.pro-scarcity-dot{background:#FF7A00;box-shadow:0 0 18px #FF7A00}.pro-scarcity-text strong{color:#FF7A00}
.space-card-overlay{background:linear-gradient(135deg,rgba(255,122,0,.05),rgba(0,0,0,.70))}.space-card:hover .space-card-overlay{background:linear-gradient(135deg,rgba(255,122,0,.72),rgba(0,0,0,.88));opacity:.92}.space-card-tag,.space-card-cta{color:#fff;background:rgba(255,122,0,.88);padding:6px 10px;border-radius:999px;width:max-content}.space-card-name{text-shadow:0 6px 24px rgba(0,0,0,.45)}
.price-card{background:#fff;border-color:#eee;box-shadow:0 15px 45px rgba(0,0,0,.04)}.price-card::before{background:#FF7A00}.price-card:hover{border-color:rgba(255,122,0,.35);box-shadow:0 20px 55px rgba(255,122,0,.12)}.price-card.featured,.pricing-tab.active{background:#FF7A00;color:#fff;border-color:#FF7A00}.price-card-badge{background:#111;color:#fff}.price-card-tag,.price-card-list svg,.pricing-caption-title em,.pricing-caption-title svg,.pricing-note strong{color:#FF7A00}.price-card.featured .price-card-tag,.price-card.featured .price-card-list svg{color:#fff}.pricing-tab:hover:not(.active){background:#FFF0E3;color:#FF7A00}.pricing-tab.active::after{background:#111}
.trusted-card,.client-step{background:#fff;border-color:#eee;box-shadow:0 12px 35px rgba(0,0,0,.04)}.trusted-link:hover,.client-step:hover{box-shadow:0 18px 42px rgba(255,122,0,.12)}.client-step-num{background:#FF7A00;color:#fff}.client-step:hover .client-step-num{background:#111;color:#fff}
.footer,.contact{background:#111;color:#fff}.contact a,.footer a:hover{color:#FF7A00}
@media(max-width:760px){.hero-content{text-align:left}.hero-ctas{justify-content:flex-start}.hero-title{font-size:clamp(2.5rem,12vw,4rem)}.hero-slider img{object-position:center}}


/*══════════════════════════════════════════════════════
  HYFIVES CS — Effets Premium Séduction Worker
  Ajout non destructif : conserve l'ordre des blocs
  ══════════════════════════════════════════════════════*/
:root{
  --hy-orange:#FF7A00;
  --hy-orange-2:#FF9A2F;
  --hy-orange-3:#FFB366;
  --hy-black:#090909;
  --hy-white:#FFFFFF;
  --hy-cream:#FFF8F1;
  --hy-glass:rgba(255,255,255,.12);
  --hy-glow:0 0 34px rgba(255,122,0,.28),0 22px 60px rgba(255,122,0,.16);
  --hy-shadow:0 30px 90px rgba(0,0,0,.18);
  --coral:#FF7A00;
  --coral-deep:#E56600;
  --coral-soft:#FFD1A3;
  --gold:#FF9A2F;
  --gold-deep:#E56600;
  --violet:#FF7A00;
  --violet-deep:#CC5A00;
  --violet-soft:#FFE1C2;
  --sage:#FF9A2F;
  --sage-deep:#E56600;
  --sage-soft:#FFF1E2;
  --ivory:#FFFFFF;
  --ivory-soft:#FFF8F1;
  --ivory-warm:#FFF1E2;
  --shadow-coral:0 18px 45px rgba(255,122,0,.28);
}
body{
  background:
    radial-gradient(circle at 10% 5%, rgba(255,122,0,.11), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(255,179,102,.16), transparent 30%),
    linear-gradient(180deg,#fff 0%,#fff8f1 52%,#fff 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    linear-gradient(rgba(255,122,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,0,.035) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom, transparent, #000 12%, #000 80%, transparent);
}
.nav{
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
}
.nav.scrolled{
  background:rgba(255,255,255,.86)!important;
  box-shadow:0 18px 48px rgba(0,0,0,.08);
}
.nav.scrolled .logo{
  color:#111111;
}
.nav.scrolled .btn-outline{
  color:#111111;
  border-color:#111111;
}
.nav:not(.scrolled) .logo{
  color:#ffffff;
}
.nav:not(.scrolled) .btn-outline{
  color:#ffffff;
  border-color:#ffffff;
}
.logo-cs{
  background:linear-gradient(135deg,rgba(255,122,0,.18),rgba(255,179,102,.28));
  color:#ffd438 !important;
  box-shadow:0 10px 30px rgba(255,122,0,.16);
}
.hero{
  background:#060606!important;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-20%;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,122,0,.30), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.36), rgba(0,0,0,.78));
  mix-blend-mode:normal;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.13) 45%, transparent 52%);
  transform:translateX(-120%);
  animation:hyHeroShine 8s ease-in-out infinite;
}
@keyframes hyHeroShine{
  0%,60%{transform:translateX(-120%);}
  82%,100%{transform:translateX(120%);}
}  /*
.hero-bg img,.hero-slider img{
 filter:brightness(.46) contrast(1.14) saturate(1.08)!important;
  transform:scale(1.08);

}*/
.hero-content{
  filter:drop-shadow(0 24px 55px rgba(0,0,0,.28));
}
.hero-badge{
  background:rgba(255,255,255,.14)!important;
  border:1px solid rgba(255,255,255,.26)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.06);
}
.hero-badge-dot{
  background:var(--hy-orange)!important;
  box-shadow:0 0 0 7px rgba(255,122,0,.16),0 0 25px rgba(255,122,0,.95)!important;
}
.hero-title{
  text-shadow:0 20px 70px rgba(0,0,0,.55);
  letter-spacing:-.045em;
}
.hero-title ,.hero-stat-num{
  color:#fffff !important;
  text-shadow:0 0 34px rgba(255,122,0,.38);
}
.embs{
  color:#ff9426 !important;
  text-shadow:0 0 34px rgba(255,122,0,.38);
}

.hero-sub{
  color:rgba(255,255,255,.86)!important;
  font-weight:400;
}
.btn-primary,.btn-pro,.btn-client,.btn-gold,.client-cta,.price-card-cta,.btn-outline{
  position:relative;
  isolation:isolate;
  will-change:transform;
}
.btn-primary::after,.btn-pro::after,.btn-client::after,.btn-gold::after,.client-cta::after,.price-card-cta::after,.btn-outline::after{
  content:"";
  position:absolute;
  inset:-2px;
  z-index:-1;
  border-radius:inherit;
  background:linear-gradient(110deg,transparent,rgba(255,255,255,.42),transparent);
  transform:translateX(-135%);
  transition:transform .8s var(--ease);
}
.btn-primary:hover::after,.btn-pro:hover::after,.btn-client:hover::after,.btn-gold:hover::after,.client-cta:hover::after,.price-card-cta:hover::after,.btn-outline:hover::after{
  transform:translateX(135%);
}
.btn-pro,.btn-client,.btn-gold,.btn-primary,.client-cta{
  background:linear-gradient(135deg,var(--hy-orange),var(--hy-orange-2))!important;
  color:#fff!important;
  box-shadow:var(--hy-glow)!important;
  border:1px solid rgba(255,255,255,.18)!important;
}
.btn-outline{
  border-color:rgba(255,255,255,.72)!important;
  color:#000000!important;
  background:rgba(255,255,255,.08)!important;
  backdrop-filter:blur(16px);
}
.btn-outline:hover{
  background:#fff!important;
  color:#111!important;
}
.hero-stats{
  padding:18px 28px;
  width:fit-content;
  margin-inline:auto;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
}
.concept,.spaces,.trusted,.client,.pricing{
  position:relative;
  overflow:hidden;
}
.concept::before,.spaces::before,.pricing::before,.client::before,.trusted::before{
  content:"";
  position:absolute;
  width:460px;
  height:460px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,122,0,.16),transparent 68%);
  filter:blur(12px);
  pointer-events:none;
  top:-180px;
  right:-140px;
}
.concept-title em,.spaces-title em,.pricing-title em,.trusted-title em,.client-title em,.pro-title em,.pro-headline em{
  color:var(--hy-orange)!important;
}
.pillar,.trusted-card,.price-card,.client-step,.pro-card,.compare-side,.pro-spotlight,.space-card{
  transform-style:preserve-3d;
  will-change:transform,box-shadow,border-color;
}
.pillar,.trusted-card{
  border:1px solid rgba(255,122,0,.10);
  border-radius:24px;
  background:rgba(255,255,255,.72);
  box-shadow:0 20px 60px rgba(0,0,0,.05);
  backdrop-filter:blur(18px);
  transition:transform .55s var(--ease),box-shadow .55s var(--ease),border-color .55s var(--ease),background .55s var(--ease);
}
.pillar:hover,.trusted-card:hover{
  transform:translateY(-12px) rotateX(2deg);
  box-shadow:0 32px 80px rgba(255,122,0,.18);
  border-color:rgba(255,122,0,.38);
  background:#fff;
}
.pillar-icon,.pro-card-icon{
  background:linear-gradient(135deg,#fff1e2,#ff7a00)!important;
  color:#fff!important;
  box-shadow:0 18px 40px rgba(255,122,0,.22);
}
.pro{
  background:
    radial-gradient(circle at 20% 0%, rgba(255,122,0,.28), transparent 34%),
    radial-gradient(circle at 80% 65%, rgba(255,154,47,.18), transparent 28%),
    #090909!important;
}
.pro::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(circle at center,#000,transparent 75%);
}
.pro-card,.compare-side.after,.pro-spotlight{
  background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,122,0,.045))!important;
  border:1px solid rgba(255,122,0,.20)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
}
.pro-card:hover,.compare-side.after:hover,.pro-spotlight:hover{
  transform:translateY(-10px);
  border-color:rgba(255,122,0,.58)!important;
  box-shadow:0 32px 90px rgba(255,122,0,.20), inset 0 1px 0 rgba(255,255,255,.16);
}
.compare-tag.after,.compare-list.after .compare-icon,.pro-day-time,.pricing-tab.active,.price-card.featured,.price-card-badge{
  background:linear-gradient(135deg,var(--hy-orange),var(--hy-orange-2))!important;
  color:#fff!important;
  border-color:transparent!important;
}
.pro-day-grid::before,.scroll-progress-bar{
  background:linear-gradient(90deg,var(--hy-orange),#fff,var(--hy-orange))!important;
}
.space-card{
  box-shadow:0 28px 80px rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.12);
}
.space-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.22) 48%,transparent 58%);
  transform:translateX(-140%);
  transition:transform .9s var(--ease);
}
.space-card:hover::before{
  transform:translateX(140%);
}
.space-card:hover{
  transform:translateY(-10px) scale(1.01);
  box-shadow:0 40px 110px rgba(255,122,0,.22);
}
.space-card:hover .space-card-overlay{
  background:linear-gradient(135deg,rgba(255,122,0,.70),rgba(0,0,0,.84))!important;
}
.price-card{
  background:rgba(255,255,255,.86)!important;
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,122,0,.12)!important;
  box-shadow:0 24px 60px rgba(0,0,0,.06);
}
.price-card:hover{
  transform:translateY(-12px) scale(1.012)!important;
  box-shadow:0 38px 90px rgba(255,122,0,.18)!important;
  border-color:rgba(255,122,0,.42)!important;
}
.price-card.featured{
  background:
    linear-gradient(145deg,rgba(255,122,0,.96),rgba(255,154,47,.88)),
    #ff7a00!important;
  color:#fff!important;
  box-shadow:0 34px 90px rgba(255,122,0,.36)!important;
}
.price-card.featured .price-card-desc,
.price-card.featured .price-card-list li,
.price-card.featured .price-card-period{
  color:rgba(255,255,255,.86)!important;
}
.price-card.featured .price-card-cta{
  background:#fff!important;
  color:#111!important;
}
.client{
  background:
    radial-gradient(circle at 10% 15%, rgba(255,122,0,.18), transparent 32%),
    linear-gradient(135deg,#fff 0%,#fff5eb 55%,#fff 100%)!important;
}
.client-image{
  box-shadow:0 32px 90px rgba(0,0,0,.18);
  border:1px solid rgba(255,122,0,.20);
}
.client-image::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg,transparent,rgba(255,122,0,.18));
}
.client-step:hover{
  transform:translateX(12px) scale(1.01)!important;
  border-color:rgba(255,122,0,.28)!important;
}
.footer,.contact{
  background:
    radial-gradient(circle at 20% 0%,rgba(255,122,0,.18),transparent 34%),
    #090909!important;
}
.reveal-premium{
  opacity:0;
  transform:translateY(34px) scale(.985);
  filter:blur(8px);
  transition:opacity .9s var(--ease),transform .9s var(--ease),filter .9s var(--ease);
}
.reveal-premium.is-visible{
  opacity:1;
  transform:none;
  filter:blur(0);
}
.reveal-premium:nth-child(2){transition-delay:.06s}
.reveal-premium:nth-child(3){transition-delay:.12s}
.reveal-premium:nth-child(4){transition-delay:.18s}
.reveal-premium:nth-child(5){transition-delay:.24s}
.reveal-premium:nth-child(6){transition-delay:.30s}
.hy-floating-cta{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:220;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:linear-gradient(135deg,var(--hy-orange),var(--hy-orange-2));
  box-shadow:0 20px 60px rgba(255,122,0,.35);
  border:1px solid rgba(255,255,255,.22);
  transform:translateY(120px);
  opacity:0;
  transition:all .55s var(--ease);
}
.hy-floating-cta.show{
  transform:translateY(0);
  opacity:1;
}
.hy-floating-cta::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 7px rgba(255,255,255,.18);
  animation:pulse 1.8s infinite;
}
.hy-floating-cta:hover{
  transform:translateY(-4px) scale(1.02);
}
.hy-ambient-orb{
  position:fixed;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,122,0,.16),transparent 66%);
  pointer-events:none;
  z-index:1;
  transform:translate(-50%,-50%);
  filter:blur(12px);
  transition:opacity .4s ease;
  opacity:.65;
}
@media(max-width:760px){
  .hero-stats{border-radius:24px;width:100%;padding:16px}
  .hy-floating-cta{left:18px;right:18px;justify-content:center;bottom:16px}
  .hy-ambient-orb{display:none}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .reveal-premium{opacity:1;transform:none;filter:none}
/* } */