/* ============================================
   MAELCOACHIA.FR — Main Stylesheet
   Refonte complète — Poppins + nouvelle palette
   ============================================ */

/* --- CSS Variables --- */
:root {
  --orange-primary:  #D14422;
  --orange-mid:      #DD7243;
  --brown-dark:      #735240;
  --cream:           #FFFBF4;
  --bg-dark:         #0A0A0A;
  --bg-card:         #111111;
  --bg-card-hover:   #1A1A1A;
  --text-primary:    #FFFBF4;
  --text-accent:     #DD7243;
  --border-subtle:   rgba(209, 68, 34, 0.25);
  --bg-alt:          #0D0D0D;
  --font-main: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  background-color: var(--bg-dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* --- Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* --- Particles Canvas --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Custom Cursor --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--orange-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--orange-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0.5;
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  background-color: var(--orange-mid);
}

.cursor-circle.hover {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* --- Selection --- */
::selection {
  background: var(--orange-primary);
  color: var(--bg-dark);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  line-height: 1.15;
  color: var(--cream);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--cream);
}

p {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: var(--cream);
  line-height: 1.7;
  font-weight: 400;
}

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

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* --- Section Base --- */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-mid);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--orange-mid);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D14422, #DD7243);
  color: var(--cream);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(209, 68, 34, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--orange-mid);
  color: var(--orange-mid);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 251, 244, 0.3);
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

.btn-outline-light:hover {
  border-color: var(--orange-mid);
  color: var(--orange-mid);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(209, 68, 34, 0.2);
  font-family: var(--font-main);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-mid);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 68, 34, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 114, 67, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .highlight,
.sub-hero h1 .highlight {
  color: var(--orange-mid);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--cream);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.hero-proof-label {
  font-size: 0.75rem;
  color: var(--orange-mid);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* --- Marquee infinite scroll --- */
.marquee-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

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

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(209, 68, 34, 0.2);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.marquee-item:hover {
  background: rgba(221, 114, 67, 0.1);
  border-color: var(--orange-mid);
  box-shadow: 0 0 20px rgba(209, 68, 34, 0.15), 0 0 40px rgba(209, 68, 34, 0.05);
  transform: translateY(-2px);
}

.tool-icon {
  width: 20px;
  height: 20px;
  color: var(--orange-mid);
  flex-shrink: 0;
  transition: color 0.3s, filter 0.3s;
}

.marquee-item:hover .tool-icon {
  color: var(--cream);
  filter: drop-shadow(0 0 6px rgba(221, 114, 67, 0.5));
}

.marquee-item span {
  font-size: 0.82rem;
  color: rgba(255, 251, 244, 0.7);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.marquee-item:hover span {
  color: var(--cream);
}

/* --- Pain Points Section (Le constat) --- */
.pains {
  background: var(--bg-alt);
}

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

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.constat-number {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-primary);
  line-height: 1;
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.pain-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

/* --- Inaction Cost Calculator --- */
.inaction-cost {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-alt);
}

.inaction-subtitle {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 251, 244, 0.7);
  margin-bottom: 3rem;
}

.inaction-calculator {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.inaction-slider-wrap {
  margin-bottom: 2.5rem;
}

.inaction-slider-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 251, 244, 0.5);
  margin-bottom: 1rem;
}

#inaction-hours {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--orange-primary) 0%, var(--orange-primary) 50%, rgba(255,251,244,0.12) 50%);
  outline: none;
  cursor: pointer;
}

#inaction-hours::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-mid);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 20px rgba(221, 114, 67, 0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#inaction-hours::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(221, 114, 67, 0.7);
}

#inaction-hours::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-mid);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 20px rgba(221, 114, 67, 0.5);
  cursor: pointer;
}

.inaction-hours-display {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 1rem;
}

.inaction-hours-display span {
  color: var(--orange-mid);
  font-size: 3rem;
  font-weight: 800;
}

.inaction-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.inaction-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.8rem 1rem;
  transition: transform 0.3s, border-color 0.3s;
}

.inaction-result-card:hover {
  transform: translateY(-4px);
}

.inaction-result-card.highlight {
  border-color: var(--orange-mid);
  background: rgba(221, 114, 67, 0.08);
}

.inaction-result-period {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 251, 244, 0.5);
  margin-bottom: 0.5rem;
}

.inaction-result-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cream);
  transition: color 0.3s;
}

.inaction-result-card.highlight .inaction-result-amount {
  color: var(--orange-mid);
}

.inaction-punchline {
  font-size: 1.1rem;
  color: rgba(255, 251, 244, 0.7);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .inaction-results {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .inaction-result-card {
    padding: 1.2rem;
  }

  .inaction-result-amount {
    font-size: 1.5rem;
  }

  .inaction-hours-display {
    font-size: 1.8rem;
  }

  .inaction-hours-display span {
    font-size: 2.4rem;
  }
}

/* --- Method Section (DAEG) --- */
.method {
  position: relative;
}

.method-intro {
  max-width: 650px;
  margin-bottom: 4rem;
}

.method-intro p {
  color: var(--cream);
  font-size: 1.1rem;
}

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

.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.method-letter {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.method-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.method-card p {
  font-size: 0.95rem;
  color: var(--cream);
}

.method-card:nth-child(1) { border-top: 2px solid var(--orange-primary); }
.method-card:nth-child(2) { border-top: 2px solid var(--orange-mid); }
.method-card:nth-child(3) { border-top: 2px solid var(--brown-dark); }
.method-card:nth-child(4) { border-top: 2px solid var(--orange-mid); }

/* --- Offers Section --- */
.offers {
  background: var(--bg-alt);
}

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

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.offer-card.featured {
  border-color: var(--orange-mid);
  background: linear-gradient(180deg, rgba(209, 68, 34, 0.06) 0%, var(--bg-card) 50%);
}

.offer-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: linear-gradient(135deg, #D14422, #DD7243);
  color: var(--cream);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.offer-desc {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

.offer-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.offer-features li {
  font-size: 0.95rem;
  color: var(--cream);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.offer-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.offer-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* --- Stats Section --- */
.stats {
  position: relative;
  overflow: visible;
  background: var(--bg-alt);
}

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

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.stat-number {
  font-family: var(--font-main);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
}

/* --- About Section --- */
.about {
  background: var(--bg-alt);
  overflow: hidden;
}

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  will-change: transform;
  transform: translateZ(0);
}

.about-image-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 68, 34, 0.1) 0%, transparent 70%);
  top: -50px;
  left: -50px;
  pointer-events: none;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--cream);
}

.about-content .btn {
  margin-top: 1rem;
}

/* --- Testimonials --- */
.testimonials {
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
  font-weight: 400;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-main);
  font-size: 3rem;
  color: var(--orange-primary);
  line-height: 0;
  display: block;
  margin-bottom: 1rem;
  font-style: normal;
}

.testimonial-author {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.testimonial-name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--orange-mid);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.testimonial-date {
  font-size: 0.75rem;
  color: var(--orange-mid);
  margin-top: 0.3rem;
}

/* --- FAQ Section --- */
.faq {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--orange-mid);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cream);
  transition: transform 0.3s, background 0.3s;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-question {
  color: var(--orange-mid);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--orange-mid);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.8;
}

/* --- Final CTA Section --- */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 68, 34, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-final .hero-subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* --- Footer --- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 0.5rem;
  display: inline-flex;
}

.footer-brand p {
  color: var(--cream);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.footer-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange-mid);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cream);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

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

h2.reveal {
  transform: translateY(40px) scale(0.97) translateZ(0);
}

h2.reveal.visible {
  transform: translateY(0) scale(1) translateZ(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Stagger Children --- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* --- Base IA Section --- */
.base-ia {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

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

.base-ia-content h2 {
  margin-bottom: 2rem;
}

.base-ia-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--cream);
}

.base-ia-content strong {
  color: var(--orange-mid);
  font-weight: 600;
}

.base-ia-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.base-ia-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.base-ia-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.base-ia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.base-ia-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.base-ia-card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.base-ia-card p {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .base-ia-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .base-ia-features {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .base-ia-features {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .base-ia-ctas {
    flex-direction: column;
  }

  .base-ia-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Sub-page Hero --- */
.sub-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.sub-hero h1 {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.sub-hero p {
  max-width: 600px;
  color: var(--cream);
  font-size: 1.1rem;
}

/* --- Feature List (sub pages) --- */
.features-list {
  list-style: none;
  margin: 3rem 0;
}

.features-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: flex-start;
}

.feature-number {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange-primary);
  flex-shrink: 0;
  width: 2rem;
}

.features-list li h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

.features-list li p {
  color: var(--cream);
  font-size: 0.95rem;
}

/* --- Target Profile (sub page) --- */
.target-section {
  background: var(--bg-alt);
}

.target-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.target-list li {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.target-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-primary);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.target-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

/* --- Session Steps (sub page) --- */
.session-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.session-steps li {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.session-steps li:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.session-steps li h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
}

.session-steps li h3 .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-primary);
}

.session-steps li p {
  font-size: 0.9rem;
  color: var(--cream);
}

/* --- Circle Features (sub page) --- */
.circle-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.circle-features li {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.circle-features li:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.circle-features li h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.circle-features li p {
  font-size: 0.9rem;
  color: var(--cream);
}

/* --- Pricing Tiers (Le Cercle IA) --- */
.pricing {
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  font-family: var(--font-main);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.tier-card.featured {
  border: 2px solid var(--orange-mid);
  box-shadow: 0 0 50px rgba(221, 114, 67, 0.2);
  transform: scale(1.04);
}

.tier-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D14422, #DD7243);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tier-badge.red {
  background: var(--orange-primary);
}

.tier-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
}

.tier-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}

.tier-features li {
  font-size: 0.9rem;
  color: var(--cream);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.tier-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-primary);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.tier-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* --- Member Testimonials (Le Cercle IA) --- */
.member-testimonials {
  background: var(--bg-dark);
}

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

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(209, 68, 34, 0.2);
  border-color: var(--orange-mid);
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D14422, #DD7243);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}

.member-card .member-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.member-card .member-role {
  font-size: 0.8rem;
  color: var(--orange-mid);
  margin-bottom: 1rem;
}

.member-card .member-text {
  font-size: 0.9rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.7;
}

/* --- Cercle IA Value Highlights --- */
.value-total {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2.5rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, rgba(209, 68, 34, 0.12) 0%, rgba(221, 114, 67, 0.06) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--cream);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.value-total .price-highlight {
  color: var(--orange-primary);
  font-size: 1.5rem;
}

.value-total .price-old {
  text-decoration: line-through;
  opacity: 0.5;
  font-weight: 400;
}

.circle-features li h3 {
  font-size: 1.1rem;
}

.circle-features li .value-tag {
  display: inline-block;
  background: linear-gradient(135deg, #D14422, #DD7243);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

/* Pricing cards enhanced */
.tier-card {
  padding: 2.5rem;
}

.tier-price {
  font-size: 3rem;
}

.tier-features li {
  font-size: 0.95rem;
  padding: 0.6rem 0;
}

.tier-features li::before {
  content: '\2713';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #4CAF50;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0;
}

/* --- Images global --- */
img {
  border-radius: 12px;
  object-fit: cover;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .tier-card.featured {
    transform: scale(1);
  }

  .tier-card.featured:hover {
    transform: translateY(-6px);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--cream);
  }

  .nav-cta {
    display: none;
  }

  .nav-links.open .mobile-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logos {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

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

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

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

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

  .target-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .member-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Hide custom cursor on mobile */
  .cursor-dot,
  .cursor-circle {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn {
    cursor: pointer;
  }

  .faq-question {
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
