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

:root {
  --primary-color: #b8956a;
  --primary-light: #d4c5b9;
  --primary-very-light: #f5f1e8;
  --secondary-color: #e8b4b8;
  --secondary-light: #f5ddd8;
  --accent-color: #c9ada7;
  --accent-light: #ede0d9;
  --text-dark: #3a3a3a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --gray-light: #f9f7f4;
  --border-color: #e8e3de;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  letter-spacing: 0.3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #a51111;
  letter-spacing: -0.8px;
  word-spacing: -3px;
}

.logo a img {
  width: 38px;
}

.nav-links {
  position: relative;
  top: 12px;
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
}

.nav-links a.btn-primary {
  padding: 12px 24px;
  padding-bottom: 12px;
  text-align: center;
  justify-content: center;
}

.nav-links a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
  color: var(--primary-color);
}

.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 15px rgba(184, 149, 106, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background-color: #9f7a52;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184, 149, 106, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(184, 149, 106, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--primary-very-light);
  box-shadow: 0 4px 15px rgba(184, 149, 106, 0.15);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  display: block;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(90deg, rgba(245, 241, 232, 0.85) 0%, rgba(245, 221, 216, 0.35) 100%),
    url("images/hero.webp") center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-content > p {
  font-size: 18px;
  color: var(--text-light);
  margin: 0 0 40px 0;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8d4c4 0%, #d4c5b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  border: 3px dashed var(--primary-color);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.image-placeholder p {
  max-width: 300px;
}

.image-placeholder::before {
  content: "🖼️";
  display: block;
  font-size: 48px;
  margin-bottom: 15px;
  filter: opacity(0.3);
}

/* Problem Section */
.problem {
  padding: 80px 20px;
  background-color: var(--white);
}

.problem h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.problem-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 50px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.problem-card {
  background-color: var(--accent-light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
  background-color: rgba(245, 241, 232, 0.8);
}

.problem-icon-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.solution-box {
  background-color: #f5e6d3;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border-left: 5px solid var(--secondary-color);
}

.solution-box p {
  font-size: 18px;
  color: var(--text-dark);
}

/* Why Difficult Section */
.why-difficult {
  background-color: var(--primary-very-light);
  padding: 80px 20px;
}

.why-difficult h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dark);
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.why-content h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 40px 0 30px 0;
  font-weight: 600;
}

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.principle {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.principle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.principle h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.principle p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Method Section */
.methode {
  padding: 80px 20px;
  background-color: var(--white);
  background: url("images/dash.webp") center/cover no-repeat fixed;
  position: relative;
}

.methode::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(110, 110, 110, 0.85) 0%, rgba(255, 216, 209, 0.35) 100%);
  z-index: 1;
}

.methode .container {
  position: relative;
  z-index: 2;
}

.methode h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.intro-text {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.methode-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 2;
}

.methode-image {
  display: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.feature:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
  background-color: var(--white);
}

.feature-icon-placeholder img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}
.feature h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Progression Section */
.progression {
  background: linear-gradient(135deg, #f5e6d3 0%, var(--accent-light) 100%);
  padding: 80px 20px;
}

.progression h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  flex: 0 0 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto 15px auto;
  align-self: center;
}

.step h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  display: none;
  align-self: center;
}

@media (min-width: 768px) {
  .step-arrow {
    display: block;
  }
}

/* Modules Section */
.modules {
  padding: 80px 20px;
  background-color: var(--white);
}

.modules h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.module {
  background: linear-gradient(135deg, var(--primary-very-light) 0%, var(--secondary-light) 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.module::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.module:hover::before {
  left: 100%;
}

.module:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.module-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.module h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.module p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Audience Section */
.audience {
  background-color: var(--primary-very-light);
  padding: 80px 20px;
}

.audience h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.audience-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 2px solid transparent;
  position: relative;
}

.audience-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.audience-card:hover::after {
  transform: scaleX(1);
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.audience-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.audience-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.audience-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Included Section */
.included {
  padding: 80px 20px;
  background-color: var(--secondary-light);
}

.included h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.included-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.included-list li {
  background-color: var(--white);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.included-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.1));
  transition: width 0.4s ease;
}

.included-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left-color: var(--secondary-color);
}

.included-list li:hover::before {
  width: 100%;
}

.included-list strong {
  color: var(--primary-color);
}

/* Pricing Section */
.tarifs {
  padding: 80px 20px;
  background-color: var(--white);
}

.tarifs h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.pricing-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.pricing-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-link:hover {
  color: #9f7a52;
  text-decoration: underline;
}

.cta-disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: var(--gray-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(184, 149, 106, 0.15);
}

.pricing-card a {
	text-decoration: none;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-very-light) 0%, var(--secondary-light) 100%);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 30px 60px rgba(184, 149, 106, 0.2);
}

.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.price span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-dark);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

.pricing-note .pricing-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-note .pricing-link:hover {
  color: #9f7a52;
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background-color: var(--primary-very-light);
}

.faq h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.faq-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}

.faq-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0 0 12px 12px;
  transition: transform 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.faq-item:hover::after {
  transform: scaleX(1);
}

.faq-item h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: #2a2a2a;
  color: #e8e3de;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section a {
  display: block;
  font-size: 13px;
  color: var(--primary-light);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 227, 222, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: rgba(232, 227, 222, 0.7);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 20px;
  background-color: var(--white);
}

.contact-form-section h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--gray-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

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

.contact-form .btn-lg {
  width: 100%;
  margin-top: 20px;
}

/* Legal Modal Styles */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
}

.legal-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.legal-modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  max-height: 80vh;
  width: 90%;
  display: flex;
  flex-direction: column;
  animation: slideInUpModal 0.3s ease;
}

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 2px solid var(--border-color);
  flex-shrink: 0;
}

.legal-modal-header h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

.legal-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.legal-modal-close:hover {
  color: var(--text-dark);
}

.legal-modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 25px;
}

.legal-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.8;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.legal-text h1,
.legal-text h2 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.legal-text p {
  margin-bottom: 12px;
}

/* Scrollbar styling for modal */
.legal-modal-body::-webkit-scrollbar {
  width: 8px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: var(--gray-light);
  border-radius: 10px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: #9f7a52;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .legal-modal-content {
    max-height: 90vh;
    width: 95%;
  }

  .legal-modal-header {
    padding: 20px;
  }

  .legal-modal-body {
    padding: 20px;
  }

  .legal-text {
    font-size: 13px;
  }

  .legal-modal-header h3 {
    font-size: 18px;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: slideUp 0.4s ease;
}

.cookie-consent.hidden {
  display: none !important;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: #9f7a52;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
  background-color: var(--gray-light);
}

.cookie-btn-settings {
  background-color: var(--gray-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.cookie-btn-settings:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  animation: slideInUpModal 0.3s ease;
}

@keyframes slideInUpModal {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: var(--text-dark);
}

.cookie-modal-body {
  padding: 20px 25px;
  max-height: 60vh;
  overflow-y: auto;
}

.cookie-settings-item {
  margin-bottom: 20px;
}

.cookie-settings-item:last-child {
  margin-bottom: 0;
}

.cookie-settings-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-settings-title input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.cookie-settings-title input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-settings-title label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  margin: 0;
}

.cookie-settings-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 0 28px;
  line-height: 1.5;
}

.cookie-modal-footer {
  display: flex;
  gap: 10px;
  padding: 15px 25px;
  border-top: 1px solid var(--border-color);
  background-color: var(--gray-light);
  border-radius: 0 0 12px 12px;
}

.cookie-modal-footer .cookie-btn {
  flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    padding: 12px 15px;
    gap: 12px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 12px;
  }

  .cookie-modal-content {
    width: 95%;
  }

  .cookie-modal-header {
    padding: 15px 20px;
  }

  .cookie-modal-body {
    padding: 15px 20px;
  }

  .cookie-modal-footer {
    padding: 12px 20px;
    flex-direction: column;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeInModal 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUpModal {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  animation: slideInUpModal 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-body {
  text-align: center;
  padding: 30px 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: #e8b4b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 20px;
  font-weight: bold;
}

.modal-body p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.btn-modal {
  flex: 1;
  margin: 0;
}

/* Scroll to top button styling */
.scroll-to-top {
  box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.scroll-to-top:hover {
  box-shadow: 0 8px 25px rgba(184, 149, 106, 0.4);
}

/* Decorative elements */
.solution-box {
  background-color: #f5e6d3;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border-left: 5px solid var(--secondary-color);
  position: relative;
}

.solution-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.solution-box p {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Animation for elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

section:last-child::after {
  display: none;
}

/* Typography enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.5px;
}

strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Gradient text for emphasis */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card animations */
.feature:nth-child(1) {
  animation-delay: 0.1s;
}

.feature:nth-child(2) {
  animation-delay: 0.2s;
}

.feature:nth-child(3) {
  animation-delay: 0.3s;
}

.feature:nth-child(4) {
  animation-delay: 0.4s;
}
/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar .container {
    padding: 12px 20px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 32px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 16px 20px !important;
    gap: 0;
  }

  .nav-links a.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    margin: 10px 20px;
    border-radius: 8px;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content > p {
    font-size: 16px;
  }

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

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .hero-image {
    height: 300px;
  }

  .methode-with-image {
    padding: 40px 20px;
    min-height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problems-grid,
  .modules-grid,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

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

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

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

  .contact-form {
    padding: 20px;
  }

  .modal-content {
    width: 95%;
    padding: 30px;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .methode h2,
  .problem h2,
  .modules h2,
  .audience h2,
  .tarifs h2,
  .faq h2,
  .cta h2 {
    font-size: 32px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 14px;
  }

  .problems-grid,
  .modules-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .principles {
    grid-template-columns: 1fr !important;
  }
}
