/********** Template CSS **********/
:root {
	--primary: #FF6B6B;
	--light: #f8fff3;
	--dark: #2c3e50;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	min-height: 1.2rem;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
	opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 2px;
}

/*** Navbar ***/
.new-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 0;
  transition: background-color 0.4s ease;
  font-family: 'PT Sans Narrow', sans-serif;
}

.new-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-logo a {
  font-size: 28px;
  font-weight: 800;
  color: #4a90e2;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  user-select: none;
  transition: color 0.3s ease;
}

.new-logo a:hover {
  color: #e94e77;
}

.new-nav ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.new-nav ul li a {
  font-weight: 600;
  font-size: 16px;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.new-nav ul li a:hover {
  background-color: #4a90e2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.new-menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  user-select: none;
}

.new-menu-icon span {
  width: 28px;
  height: 3.5px;
  background-color: #4a90e2;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

#new-menu-toggle {
  display: none;
}

/* Меню для мобилок */
@media (max-width: 992px) {
  .new-menu-icon {
    display: flex;
  }

  .new-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    z-index: 999;
  }

  #new-menu-toggle:checked + .new-menu-icon + .new-nav {
    max-height: 400px;
  }

  .new-nav ul {
    flex-direction: column;
    gap: 18px;
    padding: 25px 30px;
  }

  .new-nav ul li a {
    font-size: 18px;
    color: #4a90e2;
    padding: 12px 0;
    border-radius: 0;
  }

  .new-nav ul li a:hover {
    background-color: transparent;
    color: #e94e77;
    box-shadow: none;
  }
}


:root {
	--bg-color: #f8fffc;
	--accent-color: #FF6B6B;
	--text-color: #666565;
	--white: #ffffff;
}

/* Footer Styles */
/* Footer - Redesigned */
.footer-bright {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  font-family: 'PT Sans Narrow', sans-serif;
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-bright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FF6B6B);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.footer-links {
  min-width: 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: #444;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.footer-links a:hover {
  color: #e67e22;
  border-color: #e67e22;
}

.footer-contact {
  flex: 1 1 180px;
  font-size: 1rem;
  color: #555;
}

.footer-section-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #4ECDC4;
  transform: translateX(5px);
}

.footer-contact {
  min-width: 250px;
}

.contact-item {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #4ECDC4;
}

.contact-item strong {
  color: white;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-bottom-content {
  text-align: center;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-legal span {
  display: inline-block;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-legal span:nth-child(even) {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }
}



/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

/* Cookie Banner - Redesigned */
.cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 25px 30px;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 4px solid #FF6B6B;
}

.cookie-wrapper.show {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto 20px;
}

.cookie-icon {
	font-size: 48px;
	flex-shrink: 0;
	animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-5px) rotate(10deg);
	}
}

.cookie-text {
	flex: 1;
}

.cookie-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 10px;
}

.cookie-description {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 10px;
}

.cookie-link {
	color: #FF6B6B;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.cookie-link:hover {
	color: #4ECDC4;
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	max-width: 1400px;
	margin: 0 auto;
	justify-content: flex-end;
}

.hidden {
	display: none;
}

header i {
	color: #74848a;
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: #547387;
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: #620000;
	text-decoration: none;
	text-align: center !important;
}

.data p a:hover {
	text-decoration: underline;
}

.buttons {
	padding: 20px 0px;
	text-align: center;
}

.cookie-button {
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 150px;
}

.cookie-button-accept {
	background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cookie-button-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.cookie-button-decline {
	background: transparent;
	color: #666;
	border: 2px solid #ddd;
}

.cookie-button-decline:hover {
	background: #f8f9fa;
	border-color: #999;
	color: #333;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
	
	.cookie-buttons {
		flex-direction: column;
	}
	
	.cookie-button {
		width: 100%;
	}
}

/* Legal Pages Styles */
.legal-page-main {
	margin-top: 70px;
	padding-bottom: 80px;
}

.legal-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 20px;
	color: white;
	text-align: center;
}

.legal-hero-content {
	max-width: 900px;
	margin: 0 auto;
}

.legal-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.legal-title {
	font-size: 3rem;
	font-weight: 800;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
}

.legal-intro {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.legal-meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
}

.legal-content-section {
	padding: 80px 20px;
	background: #f8f9fa;
}

.legal-content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.legal-card {
	background: white;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.legal-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	border-color: #FF6B6B;
}

.legal-card-featured {
	border: 3px solid #FF6B6B;
	background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.legal-card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}

.legal-card-number {
	background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.2rem;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.legal-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2d2d2d;
	margin: 0;
}

.legal-card-body {
	color: #555;
	line-height: 1.7;
}

.legal-card-body p {
	margin-bottom: 15px;
}

.legal-list {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.legal-list li {
	padding: 10px 0;
	color: #555;
	font-size: 0.95rem;
	border-bottom: 1px solid #f5f5f5;
}

.legal-list li:last-child {
	border-bottom: none;
}

.legal-contact-info {
	margin-top: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
}

.legal-contact-info p {
	margin: 8px 0;
}

.legal-contact-info a {
	color: #FF6B6B;
	text-decoration: none;
	transition: color 0.3s ease;
}

.legal-contact-info a:hover {
	color: #4ECDC4;
	text-decoration: underline;
}

.cookie-types {
	display: grid;
	gap: 20px;
	margin-top: 15px;
}

.cookie-type-item {
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
	border-left: 4px solid #FF6B6B;
}

.cookie-type-item strong {
	display: block;
	font-size: 1.1rem;
	color: #2d2d2d;
	margin-bottom: 8px;
}

.cookie-type-item p {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
}

/* Thanks Page Styles */
.thanks-page-main {
	margin-top: 70px;
	min-height: calc(100vh - 70px);
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-hero {
	padding: 100px 20px;
	width: 100%;
}

.thanks-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.thanks-icon {
	font-size: 80px;
	margin-bottom: 30px;
	animation: thanksBounce 2s ease-in-out infinite;
}

@keyframes thanksBounce {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-10px) scale(1.1);
	}
}

.thanks-title {
	font-size: 3rem;
	font-weight: 800;
	color: #2d2d2d;
	margin-bottom: 20px;
	line-height: 1.2;
}

.thanks-subtitle {
	font-size: 1.3rem;
	color: #666;
	margin-bottom: 30px;
}

.thanks-message {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	text-align: left;
}

.thanks-message p {
	color: #555;
	line-height: 1.7;
	margin: 0;
}

.thanks-next-steps {
	margin-bottom: 40px;
}

.thanks-next-steps h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 30px;
}

.next-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.next-step-item {
	background: white;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: flex-start;
	gap: 15px;
	transition: all 0.3s ease;
}

.next-step-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
	background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.step-content h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 8px;
}

.step-content p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.thanks-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.thanks-btn-primary {
	display: inline-block;
	background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
	color: white;
	padding: 16px 40px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.thanks-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.thanks-btn-secondary {
	display: inline-block;
	background: white;
	color: #333;
	padding: 16px 40px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid #ddd;
}

.thanks-btn-secondary:hover {
	border-color: #FF6B6B;
	color: #FF6B6B;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.legal-title,
	.thanks-title {
		font-size: 2rem;
	}
	
	.legal-content-grid {
		grid-template-columns: 1fr;
	}
	
	.legal-meta {
		flex-direction: column;
		gap: 10px;
	}
	
	.next-steps-grid {
		grid-template-columns: 1fr;
	}
	
	.thanks-cta {
		flex-direction: column;
	}
	
	.thanks-btn-primary,
	.thanks-btn-secondary {
		width: 100%;
		text-align: center;
	}
}

/* new styles  */
/* Variables globales */
:root {
	--bg-primary: #fff;
	--text-primary: #383838;
	--accent-color: #FF6B6B;
	--border-radius: 0;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour le bloc hero */
.grow-entry {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.grow-entry-bg {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Animated Background */
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #FF6B6B;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #4ECDC4;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #FFD93D;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: #95E1D3;
  top: 30%;
  right: 30%;
  animation-delay: 15s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: overlay;
}

.grow-entry-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.grow-entry-body {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.grow-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.grow-subtext {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.brand-name {
  color: #FF6B6B;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FF6B6B;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: #666;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.grow-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.grow-btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  color: #ffffff;
}

.grow-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.grow-btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #ddd;
}

.grow-btn-secondary:hover {
  background: #f8f9fa;
  border-color: #FF6B6B;
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.hero-floating-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 3s infinite ease-in-out;
  z-index: 10;
}

.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -20px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-card-icon {
  font-size: 24px;
}

.floating-card-text {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

@media (max-width: 992px) {
  .grow-entry-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .grow-title {
    font-size: 2.2rem;
  }
}

.stats-card {
	background: var(--bg-primary);
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
}

.stats-card:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.stats-label {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1rem;
}

.btn-primary-custom {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	padding: 12px 32px;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
	background-color: transparent;
	color: var(--accent-color);
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.stats-card {
		margin-bottom: 1.5rem;
	}
}

/* Styles pour le bloc À propos */
.core-journey {
  background: linear-gradient(to bottom, #ffffff, #f6f8fb);
  padding: 100px 20px;
  color: #1c1c1c;
}

.core-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.core-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.core-text-block {
  flex: 1 1 500px;
}

.core-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #333333;
}

.core-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 32px;
}

.core-brand {
  color: #5f27cd;
  font-weight: 600;
}

.core-points {
  display: grid;
  gap: 16px;
}

.core-point {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 0.75rem;
  color: #444;
}

.core-point i {
  font-size: 1.2rem;
  color: #5f27cd;
}

.core-visual {
  flex: 1 1 440px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.core-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.core-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.core-offer-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.core-offer-card:hover {
  transform: translateY(-6px);
}

.core-offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c2c2c;
}

.core-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-offer-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.core-offer-list i {
  color: #5f27cd;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .core-intro {
    flex-direction: column;
  }

  .core-title {
    font-size: 2.2rem;
  }

  .core-description {
    font-size: 1.05rem;
  }
}


/* Styles pour le bloc Avantages */
.growth-benefits-section-alt {
	padding: 120px 0;
	background: radial-gradient(circle at top left, rgba(32, 32, 48, 0.95), rgba(22, 22, 35, 0.95));
	color: #f4f4f4;
}

.growth-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px auto;
}

.growth-heading {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 1rem;
	color: #ffffff;
}

.growth-subtitle {
	font-size: 1.2rem;
	color: #cfcfcf;
}

.growth-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.growth-card {
	position: relative;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 18px;
	padding: 2rem;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(to bottom, rgba(196, 18, 236, 0.4), rgba(15, 225, 138, 0.4));
	border-radius: 6px;
}

.growth-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.growth-icon {
	font-size: 1.2rem;
	font-weight: bold;
	color: #a0f0df;
	margin-bottom: 0.8rem;
}

.growth-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.growth-text {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
	.growth-heading {
		font-size: 2.2rem;
	}

	.growth-card {
		padding: 1.5rem;
	}
}

/* Advantages Section - New Styles */
.advantages-section {
	padding: 100px 20px;
	background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.advantages-header {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 60px;
}

.advantages-badge {
	display: inline-block;
	background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.advantages-heading {
	font-size: 2.8rem;
	font-weight: 800;
	color: #2d2d2d;
	margin-bottom: 20px;
	line-height: 1.2;
}

.advantages-subtitle {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.7;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.advantage-card {
	background: white;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: #FF6B6B;
}

.advantage-icon-wrapper {
	position: relative;
	margin-bottom: 25px;
}

.advantage-icon {
	font-size: 48px;
	margin-bottom: 10px;
}

.advantage-number {
	position: absolute;
	top: -10px;
	right: -10px;
	background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 18px;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.advantage-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 15px;
}

.advantage-text {
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.advantage-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.advantage-list li {
	padding: 8px 0;
	color: #555;
	font-size: 0.95rem;
	border-bottom: 1px solid #f0f0f0;
}

.advantage-list li:last-child {
	border-bottom: none;
}

/* Courses Showcase Section */
.courses-showcase-section {
	padding: 100px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.courses-header {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 60px;
}

.courses-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.courses-heading {
	font-size: 2.8rem;
	font-weight: 800;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
}

.courses-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.course-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.course-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.course-category {
	display: inline-block;
	background: #f8f9fa;
	color: #FF6B6B;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 15px;
	width: fit-content;
}

.course-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2d2d2d;
	margin-bottom: 15px;
}

.course-description {
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
	flex: 1;
}

.course-meta {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	padding: 15px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.course-meta span {
	font-size: 0.85rem;
	color: #888;
	display: flex;
	align-items: center;
	gap: 5px;
}

.course-link {
	color: #FF6B6B;
	font-weight: 600;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.course-link:hover {
	color: #4ECDC4;
	transform: translateX(5px);
}

@media (max-width: 768px) {
	.advantages-heading,
	.courses-heading {
		font-size: 2rem;
	}
	
	.advantages-grid,
	.courses-grid {
		grid-template-columns: 1fr;
	}
	
	.advantage-card,
	.course-card {
		padding: 25px;
	}
}

/* Success Stories Section */
.success-stories-section {
	padding: 120px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	position: relative;
	overflow: hidden;
}

.success-bg-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.success-bg-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: floatSuccess 20s infinite ease-in-out;
}

.success-bg-shape.shape-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #FF6B6B, transparent);
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.success-bg-shape.shape-2 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, #4ECDC4, transparent);
	bottom: -50px;
	right: -50px;
	animation-delay: 5s;
}

.success-bg-shape.shape-3 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, #FFD93D, transparent);
	top: 50%;
	right: 10%;
	animation-delay: 10s;
}

@keyframes floatSuccess {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

.success-stories-section .container {
	position: relative;
	z-index: 1;
}

.success-header {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 70px;
}

.success-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
	font-size: 18px;
	animation: pulse 2s infinite;
}

.success-heading {
	font-size: 3.2rem;
	font-weight: 800;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.success-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.7;
}

.success-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto 60px;
}

.success-card {
	background: white;
	border-radius: 25px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.success-card-featured {
	border: 3px solid #FFD93D;
	box-shadow: 0 20px 60px rgba(255, 217, 61, 0.3);
}

.success-featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #FFD93D 0%, #FFE66D 100%);
	color: #2c3e50;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.success-card-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFD93D, #FF6B6B);
	background-size: 200% 100%;
	animation: gradientShift 3s linear infinite;
}

.success-card-featured .success-card-decoration {
	background: linear-gradient(90deg, #FFD93D, #FF6B6B, #4ECDC4, #FFD93D);
	background-size: 200% 100%;
	height: 10px;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

.success-card-content {
	padding: 40px 35px 35px;
}

.success-avatar-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.success-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
}

.success-avatar span {
	font-size: 28px;
	font-weight: 700;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.success-verified {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 28px;
	height: 28px;
	background: #4ECDC4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 14px;
	border: 3px solid white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.success-info {
	margin-bottom: 25px;
}

.success-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 8px 0;
}

.success-role {
	font-size: 1rem;
	color: #7f8c8d;
	margin: 0 0 12px 0;
	font-weight: 500;
}

.success-rating {
	display: flex;
	align-items: center;
	gap: 10px;
}

.stars {
	color: #FFD93D;
	font-size: 16px;
	letter-spacing: 2px;
}

.rating-text {
	font-size: 14px;
	font-weight: 600;
	color: #7f8c8d;
}

.success-quote {
	position: relative;
	margin-bottom: 30px;
	padding: 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 15px;
	border-left: 4px solid #FF6B6B;
}

.quote-icon {
	position: absolute;
	top: -10px;
	left: 15px;
	font-size: 60px;
	color: #FF6B6B;
	opacity: 0.2;
	font-family: serif;
	line-height: 1;
}

.success-quote p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #34495e;
	margin: 0;
	padding-top: 15px;
	font-style: italic;
}

.success-achievements {
	display: flex;
	gap: 15px;
	padding-top: 25px;
	border-top: 2px solid #ecf0f1;
}

.achievement-item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.achievement-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
	font-size: 28px;
	flex-shrink: 0;
}

.achievement-content {
	flex: 1;
}

.achievement-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: #FF6B6B;
	margin-bottom: 4px;
}

.achievement-label {
	font-size: 0.85rem;
	color: #7f8c8d;
	line-height: 1.3;
}

.success-cta {
	text-align: center;
	margin-top: 60px;
}

.success-cta-content {
	max-width: 700px;
	margin: 0 auto;
	padding: 50px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.success-cta-title {
	font-size: 2rem;
	font-weight: 800;
	color: white;
	margin-bottom: 15px;
	text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.success-cta-text {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 30px;
	line-height: 1.6;
}

.success-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: white;
	color: #667eea;
	padding: 18px 45px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.success-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	color: #667eea;
}

.btn-arrow {
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.success-btn:hover .btn-arrow {
	transform: translateX(5px);
}

@media (max-width: 768px) {
	.success-stories-section {
		padding: 80px 20px;
	}
	
	.success-heading {
		font-size: 2.2rem;
	}
	
	.success-subtitle {
		font-size: 1rem;
	}
	
	.success-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.success-card-content {
		padding: 30px 25px 25px;
	}
	
	.success-achievements {
		flex-direction: column;
		gap: 12px;
	}
	
	.success-cta-content {
		padding: 35px 25px;
	}
	
	.success-cta-title {
		font-size: 1.6rem;
	}
}



/* Styles pour le bloc Histoires de réussite */
.success-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.success-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

.testimonial-card {
	background: #fafafa;
	border-left: 5px solid var(--accent-color);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: #f5f5f5;
	transform: translateX(5px);
}

.testimonial-quote {
	position: absolute;
	top: -10px;
	left: 20px;
	background: var(--accent-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.testimonial-text {
	color: var(--text-primary);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-style: italic;
	margin-top: 1rem;
}

.testimonial-author {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
}

.author-icon {
	color: var(--accent-color);
	margin-right: 0.5rem;
	font-size: 1.2rem;
}


/* Styles pour le bloc Tarifs */

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {

	.tips-title,
	.pricing-title {
		font-size: 2rem;
	}

	.tips-image {
		height: 250px;
		margin-bottom: 1rem;
	}

	.tip-item {
		padding: 1.5rem;
	}

	.pricing-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.pricing-card.featured {
		transform: none;
	}

	.plan-price {
		font-size: 2rem;
	}
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.contact-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.contact-description {
	font-size: 1.2rem;
	color: var(--text-primary);
	text-align: center;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.contact-info {
	background: #fafafa;
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 3rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-info:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
}

.email-link {
	display: inline-flex;
	align-items: center;
	background: var(--accent-color);
	color: white;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.email-link:hover {
	background: var(--heading-color);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.email-icon {
	margin-right: 0.5rem;
	font-size: 1.3rem;
}

.social-title {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.5rem;
}

.social-link:hover {
	background: var(--heading-color);
	color: white;
	transform: translateY(-3px) scale(1.1);
}

/* Styles pour le bloc Formulaire */
/* Tarif Section - Redesigned */
.tarif-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.tarif-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tarif-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tarif-header {
  text-align: center;
  margin-bottom: 60px;
}

.tarif-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tarif-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tarif-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.tarif-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.tarif-item {
  background: white;
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tarif-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #FF6B6B;
}

.tarif-item-featured {
  border: 3px solid #FF6B6B;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  transform: scale(1.05);
}

.tarif-item-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.tarif-badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  white-space: nowrap;
}

.tarif-item-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.tarif-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.tarif-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.tarif-price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #2d2d2d;
  line-height: 1;
}

.tarif-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #666;
}

.tarif-price-period {
  font-size: 1rem;
  color: #888;
  margin-left: 5px;
}

.tarif-price-featured .tarif-price-amount {
  color: #FF6B6B;
}

.tarif-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  font-style: italic;
}

.tarif-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
}

.tarif-features li {
  padding: 12px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #f5f5f5;
}

.tarif-features li:last-child {
  border-bottom: none;
}

.feature-icon {
  color: #4ECDC4;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tarif-btn {
  display: block;
  text-align: center;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tarif-btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  color: white;
}

.tarif-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.tarif-btn-secondary {
  background: #f8f9fa;
  color: #333;
  border-color: #ddd;
}

.tarif-btn-secondary:hover {
  background: #e9ecef;
  border-color: #FF6B6B;
  color: #FF6B6B;
  transform: translateY(-2px);
}

.tarif-comparison {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 30px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  color: white;
}

.comparison-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  text-align: right;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.comparison-highlight {
  background: linear-gradient(135deg, #fff5f5, #f0fffe) !important;
}

.comparison-highlight td {
  font-weight: 700;
  color: #FF6B6B;
}

.comparison-note {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin: 0;
  font-style: italic;
}

@media (max-width: 992px) {
  .tarif-item-featured {
    transform: scale(1);
  }
  
  .tarif-cards {
    grid-template-columns: 1fr;
  }
  
  .tarif-heading {
    font-size: 2.2rem;
  }
}

.tarif-item:hover {
  transform: translateY(-10px);
}

.tarif-item.active {
  border: 2px solid #0fe18a;
  background: rgba(15, 225, 138, 0.1);
}

.tarif-name {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.tarif-price {
  font-size: 1.8rem;
  color: #c412ec;
  margin-bottom: 25px;
  font-weight: 700;
}

.tarif-price span {
  font-size: 0.9rem;
  display: block;
  color: #bbbbbb;
}

.tarif-features {
  list-style: none;
  padding: 0;
}

.tarif-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.tarif-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0fe18a;
  font-size: 0.9rem;
}

.kontakt-section {
  background: #f2f3f8;
  padding: 100px 30px;
  display: flex;
  justify-content: center;
}

.kontakt-wrapper {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.kontakt-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.kontakt-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-field {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f9f9fb;
  color: #333;
}

.kontakt-button {
  padding: 16px;
  background-color: #c412ec;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kontakt-button:hover {
  background-color: #a80ac3;
}

/* Promo Banner Styles */
.promo-banner {
  position: relative;
  z-index: 999;
}

.promo-banner * {
  position: relative;
  z-index: 1;
}

.promo-banner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.promo-banner button:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .promo-banner {
    padding: 15px 0;
  }
  
  .promo-banner p {
    font-size: 14px !important;
  }
  
  .promo-banner a {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 992px) {
  .tarif-cards {
    flex-direction: column;
    align-items: center;
  }
}



.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	display: none;
}

.btn-primary {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-1px);
}

.btn-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {

	.contact-title,
	.form-title {
		font-size: 2rem;
	}

	.contact-info {
		padding: 2rem;
	}

	.form-container {
		padding: 2rem;
	}

	.social-links {
		gap: 0.75rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
}