/* ============================================
   VARIABLES & RESET
   ============================================ */
html[data-theme="dark"] {
  --gold: #D4B87A;
  --gold-light: #E8D5B7;
  --gold-dark: #C9A96E;
  --cream: #1A1420;
  --cream-dark: #2A2030;
  --peach: #2A1F2D;
  --rose: #4A3040;
  --rose-soft: #3A2835;
  --brown: #E8D5C0;
  --brown-light: #C9B8A0;
  --white: #221A28;
  --text: #E0D0C0;
  --text-light: #B8A898;
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(212, 184, 122, 0.2);
}

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B7;
  --gold-dark: #A68B5B;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --peach: #FDE8D0;
  --rose: #E8C4C4;
  --rose-soft: #F2D7D7;
  --brown: #5C4033;
  --brown-light: #8B7355;
  --white: #FFFFFF;
  --text: #4A3728;
  --text-light: #7A6555;
  --shadow-soft: 0 4px 30px rgba(201, 169, 110, 0.15);
  --shadow-medium: 0 8px 40px rgba(201, 169, 110, 0.2);
  --shadow-glow: 0 0 60px rgba(201, 169, 110, 0.3);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 0.9em;
  transition: transform var(--transition);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  margin-bottom: 8px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

html[data-theme="dark"] .btn-whatsapp {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

html[data-theme="dark"] .btn-whatsapp:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .navbar {
  background: rgba(26, 20, 32, 0.85);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  box-shadow: 0 2px 20px rgba(201, 169, 110, 0.1);
  padding: 12px 0;
}

html[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 20, 32, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 500;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 500;
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

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

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  cursor: pointer;
  margin-right: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.theme-icon-sun,
.theme-icon-moon {
  position: absolute;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  color: var(--gold);
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 50%, var(--cream) 100%);
  padding: 80px 24px 60px;
}


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

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

.title-line {
  display: block;
}

.title-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-message {
  margin-top: 60px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-message-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-message-text {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   HERO INTRO
   ============================================ */
.hero-intro {
  padding: 0;
  background: var(--white);
}

.hero-intro-quote {
  background: var(--cream);
  padding: 12px 24px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.quote-author {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

.hero-intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.hero-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 16px;
}

.hero-intro-content .section-divider {
  margin-bottom: 40px;
}

.hero-intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-intro-question {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 30px;
  margin-top: 40px;
}

.hero-intro-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.hero-intro-list li {
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  line-height: 1.6;
}

.hero-intro-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-intro-note {
  max-width: 600px;
  margin: 16px auto 0;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 36px;
}

/* ============================================
   PRESENTATION
   ============================================ */
.presentation {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.presentation-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.presentation-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  max-width: 70%;
  margin: 0 auto;
}

.presentation-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.15), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--peach), var(--cream-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.presentation-text .lead {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 20px;
}

.presentation-text p {
  margin-bottom: 16px;
}

.presentation-text h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.presentation-name {
  font-size: 1.56rem;
}

.presentation-note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 12px;
  margin-top: 24px;
}

.formation-list {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 16px;
}

.formation-list li {
  margin-bottom: 6px;
}

.formation-list li::before {
  content: "\2713  ";
  color: var(--gold);
  font-weight: bold;
}

.presentation-values {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--brown);
}

.value-icon {
  color: var(--gold);
}

/* ============================================
   CARDS (Pour qui)
   ============================================ */
.pour-qui {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  margin-bottom: 16px;
}

.card p {
  font-size: 0.95rem;
}

.pour-qui-text {
  text-align: center;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pour-qui-statement {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pour-qui-priority {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.pour-qui-details {
  text-align: center;
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pour-qui-detail-intro {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
}

.pour-qui-detail-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 30px;
  font-weight: 500;
}

.pour-qui-detail-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.pour-qui-detail-list li {
  font-size: 1rem;
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 80px;
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
  line-height: 1.4;
}

.pour-qui-detail-list li:last-child {
  border-bottom: none;
}

.pour-qui-detail-list li.list-category {
  padding-left: 0;
  padding-top: 16px;
  padding-bottom: 4px;
  border-bottom: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
}

.pour-qui-detail-list li.list-category::before {
  display: none;
}

.pour-qui-detail-list li.list-category:first-child {
  padding-top: 0;
}

.pour-qui-detail-list li::before {
  content: '◆';
  position: absolute;
  left: 40px;
  top: 8px;
  color: var(--gold);
  font-size: 0.7rem;
}

.pour-qui-details {
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pour-qui-audience {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 500;
}

.pour-qui-problems-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 30px;
}

.pour-qui-problems-list {
  list-style: none;
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}

.pour-qui-problems-list li {
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 16px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
  line-height: 1.5;
}

.pour-qui-problems-list li:last-child {
  border-bottom: none;
}

.pour-qui-problems-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--gold);
}

/* ============================================
   TIMELINE (Séances)
   ============================================ */
.seances {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.timeline {
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}

.timeline-item {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  justify-content: center;
}

.timeline-dot {
  display: none;
}

.timeline-content {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  padding-left: 34px;
  flex: 1;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  text-align: justify;
  z-index: 1;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
}

.timeline-number {
  display: none;
}

.timeline-content h3 {
  margin: 0 0 12px;
  color: var(--gold-dark);
}

.timeline-content p {
  font-size: 0.95rem;
}

.seances-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.info-badge {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  padding-left: 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  text-align: justify;
}

.info-badge::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
}

.info-icon {
  font-size: 2rem;
  min-width: 40px;
}

.info-badge strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.info-badge p {
  font-size: 0.95rem;
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.tarif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: var(--radius) var(--radius) 0 0;
}

.tarif-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.tarif-popular {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.tarif-popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.tarif-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--cream-dark);
}

.tarif-header h3 {
  margin-bottom: 20px;
}

.tarif-subtitle {
  font-size: 1em;
  display: block;
  margin-top: 4px;
  color: var(--text-light);
  font-weight: 400;
}

.tarif-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--gold);
}

.tarif-duration {
  font-size: 1.08rem;
  color: var(--text-light);
}

.tarif-economy {
  font-size: 0.85rem;
  color: #4CAF50;
  font-weight: 600;
  margin-top: 4px;
}

.tarif-body ul {
  margin-bottom: 30px;
  flex: 1;
}

.tarif-body li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tarif-body li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: bold;
}

.tarif-card .btn {
  margin-top: auto;
}

.tarifs-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* ============================================
   CONFERENCES
   ============================================ */
.conferences {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.conferences-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.conferences-list li {
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 16px 0;
  padding-left: 36px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--cream-dark);
}

.conferences-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.conferences-list li:last-child {
  border-bottom: none;
}

.conference-cta {
  font-weight: 500;
  color: var(--brown) !important;
  font-style: italic;
}

html[data-theme="dark"] .conferences {
  background: linear-gradient(180deg, #1A1420 0%, #221A28 100%);
}

html[data-theme="dark"] .conferences-list li {
  color: #B8A898;
  border-bottom-color: #2A2030;
}

html[data-theme="dark"] .conference-cta {
  color: #E8D5C0 !important;
}

/* ============================================
   AVIS
   ============================================ */
.avis {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.avis-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.avis-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.avis-header {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 4px;
}

.avis-header:hover .avis-name {
  text-decoration: underline;
}

.google-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.avis-name {
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.avis-time {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.avis-footer {
  text-align: center;
  margin-top: 40px;
}

.avis-card blockquote {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--gold-light);
}

.avis-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.avis-author strong {
  display: block;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.avis-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.form-reassurance {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  width: 50%;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--gold-dark);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-medium);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--brown);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-icon {
  font-size: 2rem;
  color: var(--gold);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
}

.footer-brand p {
  color: var(--gold-light);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gold-light);
  font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .presentation-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presentation-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tarif-popular {
    transform: none;
  }

  .tarif-popular:hover {
    transform: translateY(-8px);
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

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

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

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

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

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-scroll {
    display: none;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    gap: 0;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-content {
    padding: 24px;
  }

  .presentation-values {
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

.device-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-toggle:hover {
  background: var(--gold-dark);
  transform: scale(1.1);
}

/* ============================================
   FORCE MOBILE VIEW OVERRIDES
   ============================================ */
body.force-mobile .container {
  max-width: 375px !important;
}
body.desktop-view .container {
  max-width: none !important;
  width: 100% !important;
}

body.force-mobile .nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--cream);
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  transition: right var(--transition);
  z-index: 1000;
}
body.force-mobile .nav-links.open {
  right: 0;
}
body.force-mobile .nav-toggle {
  display: flex;
}

body.force-mobile .section {
  padding: 70px 0;
}
body.force-mobile .hero {
  padding: 100px 24px 60px;
  min-height: auto;
}
body.force-mobile .hero-subtitle {
  font-size: 1.05rem;
}
body.force-mobile .hero-scroll {
  display: none;
}
body.force-mobile .hero-content {
  max-width: 375px !important;
  margin: 0 auto;
  padding: 0 24px;
}
body.force-mobile .hero-intro-quote {
  max-width: 375px !important;
  margin: 0 auto;
  padding: 0 24px;
}
body.force-mobile .presentation-content,
body.force-mobile .contact-content {
  grid-template-columns: 1fr;
  gap: 40px;
}
body.force-mobile .presentation-image {
  max-width: 400px;
  margin: 0 auto;
}
body.force-mobile .tarif-popular {
  transform: none;
}
body.force-mobile .tarif-popular:hover {
  transform: translateY(-8px);
}
body.force-mobile .timeline::before {
  left: 50%;
  transform: translateX(-50%);
}
body.force-mobile .timeline-item {
  gap: 0;
}
body.force-mobile .timeline-dot {
  display: none;
}
body.force-mobile .timeline-content {
  padding: 24px;
}
body.force-mobile .presentation-values {
  justify-content: center;
}
body.force-mobile .contact-form-wrapper {
  padding: 30px 24px;
}
body.force-mobile .cards-grid,
body.force-mobile .tarifs-grid,
body.force-mobile .avis-grid {
  grid-template-columns: 1fr;
}
body.force-mobile .hero-actions {
  flex-direction: column;
  align-items: center;
}
body.force-mobile .btn {
  width: 100%;
  max-width: 280px;
}

/* ============================================
     DARK MODE OVERRIDES
     ============================================ */
html[data-theme="dark"] body {
  background: #1A1420;
}

html[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 50%, #1A1420 100%);
}

/* ============================================
    DARK MODE OVERRIDES
    ============================================ */

html[data-theme="dark"] .hero-message-title {
  color: var(--brown);
}

html[data-theme="dark"] .hero-message-text {
  color: var(--text-light);
}

html[data-theme="dark"] .presentation {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .image-placeholder {
  background: linear-gradient(135deg, #2A1F2D, #2A2030);
}

html[data-theme="dark"] .image-glow {
  background: radial-gradient(circle at center, rgba(212, 184, 122, 0.15), transparent 70%);
}

html[data-theme="dark"] .value-item {
  background: #2A2030;
}

html[data-theme="dark"] .pour-qui {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .card {
  background: #221A28;
}

html[data-theme="dark"] .card::before {
  background: linear-gradient(90deg, #C9A96E, #D4B87A, #C9A96E);
}

html[data-theme="dark"] .seances {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .timeline::before {
  background: linear-gradient(180deg, #E8D5B7, #D4B87A, #E8D5B7);
}

html[data-theme="dark"] .timeline-dot {
  background: linear-gradient(135deg, #D4B87A, #C9A96E);
  box-shadow: 0 4px 15px rgba(212, 184, 122, 0.2);
}

html[data-theme="dark"] .timeline-content {
  background: #2A2030;
}

html[data-theme="dark"] .info-badge {
  background: #2A2030;
}

html[data-theme="dark"] .tarifs {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .tarif-card {
  background: #221A28;
}

html[data-theme="dark"] .tarif-header {
  border-bottom-color: #2A2030;
}

html[data-theme="dark"] .tarif-body li {
  border-bottom-color: #2A2030;
}

html[data-theme="dark"] .tarif-popular {
  border-color: #D4B87A;
}

html[data-theme="dark"] .popular-badge {
  background: linear-gradient(135deg, #D4B87A, #C9A96E);
}

html[data-theme="dark"] .conferences {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .avis {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .avis-card {
  background: #2A2030;
}

html[data-theme="dark"] .avis-card blockquote {
  border-left-color: #C9A96E;
}

html[data-theme="dark"] .author-avatar {
  background: linear-gradient(135deg, #C9A96E, #D4B87A);
}

html[data-theme="dark"] .contact {
  background: linear-gradient(180deg, #1A1420 0%, #2A1F2D 100%);
}

html[data-theme="dark"] .contact-icon {
  background: #221A28;
}

html[data-theme="dark"] .contact-form-wrapper {
  background: #221A28;
}

html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group textarea {
  background: #2A2030;
  border-color: #2A2030;
  color: #E0D0C0;
}

html[data-theme="dark"] .form-group input:focus,
html[data-theme="dark"] .form-group textarea:focus {
  background: #2A1F2D;
  border-color: #D4B87A;
}

html[data-theme="dark"] .form-group input::placeholder,
html[data-theme="dark"] .form-group textarea::placeholder {
  color: #B8A898;
}

html[data-theme="dark"] .footer {
  background: #0F0A14;
}

html[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(212, 184, 122, 0.15);
}

html[data-theme="dark"] .nav-links {
  background: #1A1420;
}

html[data-theme="dark"] .btn-primary {
  box-shadow: 0 4px 20px rgba(212, 184, 122, 0.3);
}

html[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 6px 30px rgba(212, 184, 122, 0.4);
}

html[data-theme="dark"] .nav-cta:hover {
  box-shadow: 0 4px 15px rgba(212, 184, 122, 0.3);
}

html[data-theme="dark"] .section-divider {
  background: linear-gradient(90deg, transparent, #D4B87A, transparent);
}

html[data-theme="dark"] .tarif-economy {
  color: #66BB6A;
}

html[data-theme="dark"] .nav-toggle span {
  background: #E8D5C0;
}

html[data-theme="dark"] .theme-toggle {
  border-color: #E8D5B7;
}

html[data-theme="dark"] .theme-toggle:hover {
  border-color: #D4B87A;
  background: rgba(212, 184, 122, 0.1);
}

html[data-theme="dark"] .theme-icon-sun,
html[data-theme="dark"] .theme-icon-moon {
  color: #D4B87A;
}

html[data-theme="dark"] .form-group label {
  color: #E8D5C0;
}

html[data-theme="dark"] .title-highlight {
  background: linear-gradient(135deg, #D4B87A, #C9A96E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html[data-theme="dark"] .hero-intro {
  background: #221A28;
}

html[data-theme="dark"] .hero-intro-quote {
  background: #2A2030;
}

html[data-theme="dark"] .quote-text {
  color: #E0D0C0;
}

html[data-theme="dark"] .hero-intro-text {
  color: #B8A898;
}

html[data-theme="dark"] .hero-intro-question {
  color: #E8D5C0;
}

html[data-theme="dark"] .hero-intro-list li {
  color: #B8A898;
}

html[data-theme="dark"] .pour-qui-statement {
  color: #E0D0C0;
}

html[data-theme="dark"] .pour-qui-detail-intro {
  color: #E0D0C0;
}

html[data-theme="dark"] .pour-qui-detail-title {
  color: #E8D5C0;
}

html[data-theme="dark"] .pour-qui-detail-list li {
  color: #B8A898;
  border-bottom-color: #2A2030;
}

html[data-theme="dark"] .pour-qui-detail-list li.list-category {
  color: #E8D5C0;
}

html[data-theme="dark"] .pour-qui-audience {
  color: #E0D0C0;
}

html[data-theme="dark"] .pour-qui-problems-title {
  color: #E8D5C0;
}

html[data-theme="dark"] .pour-qui-problems-list li {
  color: #B8A898;
  border-bottom-color: #2A2030;
}

html[data-theme="dark"] .footer-brand .logo-text {
  color: var(--gold);
}

html[data-theme="dark"] .footer-links a {
  color: var(--gold);
}

html[data-theme="dark"] .footer-links a:hover {
  color: var(--white);
}

/* ============================================
   RESERVATION PAGES
   ============================================ */
.reservation-page { padding-top: 100px; min-height: 100vh; background: var(--cream); }
.reservation-container { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.reservation-header { text-align: center; margin-bottom: 40px; }
.reservation-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.5rem); color: var(--brown); margin-bottom: 12px; }
.reservation-meta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.meta-item { background: var(--white); padding: 10px 20px; border-radius: 50px; font-size: 0.95rem; color: var(--text); box-shadow: var(--shadow-soft); }
.meta-item strong { color: var(--gold-dark); }
.reservation-description { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 40px; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.reassurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 50px; }
.reassurance-item { display: flex; align-items: flex-start; gap: 12px; padding: 20px; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
.reassurance-icon { font-size: 1.5rem; color: var(--gold); min-width: 24px; }
.reassurance-text { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.calendar-embed-container { background: var(--white); border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow-medium); margin-bottom: 40px; min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed var(--gold-light); }
.calendar-embed-container p { color: var(--text-light); font-size: 1rem; margin-top: 10px; }
.bottom-cta { text-align: center; padding: 30px; background: var(--peach); border-radius: var(--radius); margin-top: 40px; }
.bottom-cta p { color: var(--text); margin-bottom: 16px; }
.bottom-cta a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }
@media (max-width: 768px) {
  .reservation-container { padding: 20px 16px; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .calendar-embed-container { padding: 20px; min-height: 300px; }
}
