/********** Template CSS **********/
:root {
	--primary: #6366f1;
	--light: #f0f4ff;
	--dark: #1e293b;
}

* {
	font-family: 'Space Grotesk', sans-serif;
}

.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;
}

/*** Main Header ***/
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Space Grotesk', sans-serif;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 15px 0;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.main-header:hover .header-background {
  opacity: 1;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header-logo {
  position: relative;
  z-index: 2;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;
  color: #6366f1;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo-text {
  position: relative;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradient 3s ease infinite;
  background-size: 200% 200%;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s ease infinite;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.logo-link:hover .logo-text {
  animation: none;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-link:hover .logo-dot {
  animation: pulseDot 1s ease infinite;
  transform: scale(1.2);
}

@keyframes logoGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.nav-item {
  font-weight: 600;
  font-size: 15px;
  color: #1e293b;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.nav-item:hover::before {
  width: 200px;
  height: 200px;
}

.nav-item:hover {
  color: #6366f1;
  transform: translateY(-2px);
}

.nav-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta-button:hover::before {
  left: 100%;
}

.nav-cta-button:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.nav-cta-button svg {
  transition: transform 0.3s ease;
}

.nav-cta-button:hover svg {
  transform: translateX(5px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-menu-toggle .burger-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-menu-logo .logo-link {
  font-size: 24px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1e293b;
  transition: all 0.3s ease;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  flex: 1;
}

.mobile-nav-item {
  display: block;
  padding: 18px 24px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.mobile-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  transition: width 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(99, 102, 241, 0.05);
  color: #6366f1;
  border-left-color: #6366f1;
  padding-left: 32px;
}

.mobile-nav-item:hover::before {
  width: 3px;
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  bottom: 0;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-cta:hover::before {
  left: 100%;
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.mobile-nav-cta svg {
  transition: transform 0.3s ease;
}

.mobile-nav-cta:hover svg {
  transform: translateX(5px);
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .main-navigation {
    gap: 20px;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-item {
    font-size: 14px;
    padding: 8px 16px;
  }

  .nav-cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .main-navigation {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-link {
    font-size: 24px;
  }
}


:root {
	--bg-color: #f8fffc;
	--accent-color: #6366f1;
	--text-color: #666565;
	--white: #ffffff;
}

/* Footer Styles */
.footer-bright {
  background: #f9f9f9;
  color: #333;
  font-family: 'Space Grotesk', sans-serif;
  padding: 60px 20px 40px;
  box-shadow: inset 0 4px 8px #e0e0e0;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-brand {
  flex: 1 1 320px;
  max-width: 380px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-logo:hover {
  color: #e67e22;
}

.footer-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.footer-links {
  flex: 1 1 180px;
}

.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.25rem;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

@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');


/* Process Section Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(20px, -20px);
	}
	50% {
		transform: translate(-10px, -30px);
	}
	75% {
		transform: translate(-20px, 10px);
	}
}


/* Scroll Animation */
.fade-in-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Button Hover Effects */
.grow-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4) !important;
}

/* Responsive */
@media (max-width: 768px) {
	.process-steps {
		grid-template-columns: 1fr !important;
		gap: 25px !important;
	}
	
	.testimonials-grid {
		grid-template-columns: 1fr !important;
	}
	
	.process-section,
	.testimonials-section {
		padding: 60px 0 !important;
	}
}

.hidden {
	display: none;
}

/* Cookie Banner - Modern & Compact */
.cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	padding: 0;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-wrapper.show {
	transform: translateY(0);
}

.cookie-wrapper.hidden {
	display: none;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-icon-text {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 250px;
}

.cookie-icon {
	color: #6366f1;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.cookie-text {
	flex: 1;
}

.cookie-message {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
}

.cookie-link {
	color: #6366f1;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.cookie-link:hover {
	color: #8b5cf6;
}

.cookie-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 10px 24px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Space Grotesk', sans-serif;
	white-space: nowrap;
}

.cookie-btn-decline {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.cookie-btn-accept {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.cookie-btn-accept:hover {
	background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
	transform: translateY(-1px);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
	}

	.cookie-icon-text {
		min-width: auto;
		margin-bottom: 12px;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: stretch;
	}

	.cookie-btn {
		flex: 1;
		padding: 12px 20px;
	}

	.cookie-message {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.cookie-content {
		padding: 14px;
	}

	.cookie-icon {
		width: 20px;
		height: 20px;
	}

	.cookie-message {
		font-size: 12px;
	}

	.cookie-btn {
		padding: 10px 16px;
		font-size: 13px;
	}
}

header i {
	color: #74848a;
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: #547387;
	font-weight: 500;
	text-align: center;
}


/* new styles  */
/* Variables globales */
:root {
	--bg-primary: #fff;
	--text-primary: #383838;
	--accent-color: #6366f1;
	--border-radius: 0;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section - Modern Redesign */
.grow-entry {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8fafc 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  top: 50%;
  right: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  bottom: -50px;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #6366f1, #10b981);
  top: 20%;
  right: 20%;
  animation-delay: 6s;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-section {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.badge-icon {
  font-size: 18px;
}

.grow-title.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.title-highlight {
  color: #6366f1;
  position: relative;
}

.title-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.grow-subtext.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.brand-name {
  color: #6366f1;
  font-weight: 700;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  animation: fadeInUp 0.6s ease-out 0.5s both;
  flex-wrap: wrap;
}

.hero-feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-width: 200px;
}

.hero-feature-item:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero-feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.feature-text {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.grow-btn.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.grow-btn.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.grow-btn.hero-btn-primary:hover::before {
  left: 100%;
}

.grow-btn.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.grow-btn.hero-btn-primary svg {
  transition: transform 0.3s ease;
}

.grow-btn.hero-btn-primary:hover svg {
  transform: translateX(5px);
}

.grow-btn.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #6366f1;
  padding: 16px 32px;
  border: 2px solid #6366f1;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.grow-btn.hero-btn-secondary:hover {
  background: #6366f1;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Hero Visual Section */
.hero-visual-section {
  position: relative;
  height: 600px;
  animation: fadeInRight 0.8s ease-out;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-main-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 2;
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.2;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  border-color: #6366f1;
  animation: pulseCircle 3s ease-in-out infinite;
}

.circle-2 {
  width: 250px;
  height: 250px;
  top: 25px;
  left: 25px;
  border-color: #8b5cf6;
  animation: pulseCircle 3s ease-in-out infinite 0.5s;
}

.circle-3 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  border-color: #ec4899;
  animation: pulseCircle 3s ease-in-out infinite 1s;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  flex-shrink: 0;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 5px 0;
}

.card-content p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.card-3 {
  top: 60%;
  right: 0;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulseCircle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-section {
    height: 400px;
    order: -1;
  }

  .grow-title.hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    gap: 16px;
  }

  .hero-feature-item {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .grow-entry {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .grow-title.hero-title {
    font-size: 2rem;
  }

  .grow-subtext.hero-description {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .hero-feature-item {
    min-width: 100%;
    text-align: left;
  }

  .hero-cta {
    flex-direction: column;
  }

  .grow-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual-section {
    height: 300px;
  }

  .hero-main-visual {
    width: 200px;
    height: 200px;
  }

  .circle-1 {
    width: 200px;
    height: 200px;
  }

  .circle-2 {
    width: 150px;
    height: 150px;
  }

  .circle-3 {
    width: 100px;
    height: 100px;
  }

  .hero-card {
    padding: 15px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 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 */
/* Benefits Section - Modern Redesign */
.growth-benefits-section-alt {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
	color: #f4f4f4;
	overflow: hidden;
}

.benefits-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 0;
}

.benefits-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

.benefit-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
	animation: floatShape 25s infinite ease-in-out;
}

.benefit-shape.shape-1 {
	width: 500px;
	height: 500px;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	top: -150px;
	right: -150px;
	animation-delay: 0s;
}

.benefit-shape.shape-2 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #8b5cf6, #ec4899);
	bottom: -100px;
	left: -100px;
	animation-delay: 5s;
}

.benefit-shape.shape-3 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #ec4899, #f59e0b);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

.growth-header {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 80px auto;
}

.header-badge {
	display: inline-block;
	background: rgba(99, 102, 241, 0.2);
	border: 1px solid rgba(99, 102, 241, 0.3);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: #6366f1;
	margin-bottom: 20px;
	animation: fadeInUp 0.6s ease-out;
}

.growth-heading {
	font-size: 3.2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 24px;
	color: #ffffff;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.highlight-text {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.growth-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

.growth-benefits-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.growth-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 40px 30px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.6s ease-out both;
}

.growth-card:nth-child(1) { animation-delay: 0.1s; }
.growth-card:nth-child(2) { animation-delay: 0.2s; }
.growth-card:nth-child(3) { animation-delay: 0.3s; }
.growth-card:nth-child(4) { animation-delay: 0.4s; }

.card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.growth-card:hover .card-glow {
	opacity: 1;
}

.growth-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
	border-color: rgba(99, 102, 241, 0.3);
	background: rgba(255, 255, 255, 0.08);
}

.growth-icon-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 24px;
}

.growth-icon {
	font-size: 3rem;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
	border-radius: 16px;
	border: 1px solid rgba(99, 102, 241, 0.3);
	transition: all 0.3s ease;
}

.growth-card:hover .growth-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
}

.icon-number {
	font-size: 1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 2px;
}

.growth-content {
	position: relative;
	z-index: 2;
}

.growth-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.4;
}

.growth-text {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 20px;
}

.card-stats {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-badge {
	display: inline-flex;
	flex-direction: column;
	background: rgba(99, 102, 241, 0.15);
	border: 1px solid rgba(99, 102, 241, 0.3);
	padding: 12px 20px;
	border-radius: 12px;
}

.stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	color: #6366f1;
	line-height: 1;
	margin-bottom: 4px;
}

.stat-desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
}

@keyframes floatShape {
	0%, 100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(30px, -30px);
	}
	66% {
		transform: translate(-20px, 20px);
	}
}

@media (max-width: 768px) {
	.growth-heading {
		font-size: 2.2rem;
	}

	.growth-benefits-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.growth-card {
		padding: 30px 24px;
	}

	.growth-icon {
		width: 60px;
		height: 60px;
		font-size: 2.5rem;
	}
}



/* 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);
}

/* Pricing Section - Modern Redesign */
.tarif-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 120px 30px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.pricing-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pricing-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: floatShape 30s infinite ease-in-out;
}

.pricing-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.pricing-shape.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -150px;
  right: -150px;
  animation-delay: 8s;
}

.tarif-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
}

.tarif-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.tarif-heading {
  font-size: 3.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 800;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.pricing-highlight {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tarif-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.tarif-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tarif-item {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease-out both;
}

.tarif-item:nth-child(1) { animation-delay: 0.1s; }
.tarif-item:nth-child(2) { animation-delay: 0.2s; }
.tarif-item:nth-child(3) { animation-delay: 0.3s; }

.card-glow-pricing {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tarif-item:hover .card-glow-pricing {
  opacity: 1;
}

.tarif-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.tarif-item.active {
  border: 2px solid #6366f1;
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.tarif-item.active:hover {
  transform: translateY(-15px) scale(1.08);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.tarif-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tarif-name {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 800;
}

.tarif-price-wrapper {
  margin-bottom: 24px;
}

.tarif-price {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 800;
  line-height: 1;
}

.tarif-price span {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.price-period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.tarif-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-weight: 500;
}

.tarif-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.tarif-features li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}

.tarif-button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.tarif-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tarif-button-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tarif-button-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-3px);
}

.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;
}

@media (max-width: 992px) {
  .tarif-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .tarif-item.active {
    transform: scale(1);
  }

  .tarif-item.active:hover {
    transform: translateY(-15px) scale(1.03);
  }
}

@media (max-width: 768px) {
  .tarif-heading {
    font-size: 2.2rem;
  }

  .tarif-price {
    font-size: 2.5rem;
  }

  .tarif-name {
    font-size: 1.75rem;
  }
}

/* Calculation Section - Modern Redesign */
.calculation-section {
  position: relative;
  margin-top: 80px;
  padding: 80px 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  border-radius: 24px;
  overflow: hidden;
}

.calculation-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.calc-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.calc-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  animation: floatShape 20s infinite ease-in-out;
}

.calc-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.calc-shape.shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
}

.calculation-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.calculation-header {
  text-align: center;
  margin-bottom: 50px;
}

.calc-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.calculation-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.calculation-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.calculation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.calc-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  animation: fadeInUp 0.6s ease-out both;
  overflow: hidden;
}

.calc-card:nth-child(1) { animation-delay: 0.1s; }
.calc-card:nth-child(2) { animation-delay: 0.2s; }
.calc-card:nth-child(3) { animation-delay: 0.3s; }

.calc-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.calc-card:hover .calc-card-glow {
  opacity: 1;
}

.calc-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.2);
}

.calc-card.featured {
  border: 2px solid #6366f1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.calc-card.featured:hover {
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}

.calc-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
  flex-shrink: 0;
}

.calc-package-info {
  flex: 1;
}

.calc-package-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.calc-package-price-small {
  font-size: 1rem;
  color: #6366f1;
  font-weight: 600;
}

.calc-duration {
  margin-bottom: 20px;
}

.duration-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.calc-total {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 16px;
}

.calc-total-amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.calc-total-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.calc-monthly {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

.equals {
  font-size: 1.5rem;
  color: #94a3b8;
  font-weight: 300;
}

.monthly-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
}

.monthly-label {
  font-size: 0.95rem;
  color: #64748b;
}

.calc-comparison {
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
}

.comparison-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.comparison-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.calc-includes {
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
}

.includes-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #1e293b;
  font-size: 1rem;
}

.includes-icon {
  color: #10b981;
  flex-shrink: 0;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.includes-list li {
  padding: 8px 0;
  color: #475569;
  font-size: 0.95rem;
  position: relative;
  padding-left: 24px;
}

.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.calc-savings {
  margin: 20px 0;
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  border: 2px solid rgba(16, 185, 129, 0.3);
  padding: 12px 20px;
  border-radius: 12px;
  width: 100%;
  justify-content: center;
}

.savings-icon {
  font-size: 1.5rem;
}

.savings-text {
  font-size: 1rem;
  font-weight: 700;
  color: #059669;
}

.calculation-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  padding: 24px;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.note-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .calculation-section {
    padding: 60px 20px;
    margin-top: 60px;
  }

  .calculation-title {
    font-size: 1.8rem;
  }

  .calculation-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .calc-total-amount {
    font-size: 2.5rem;
  }

  .monthly-amount {
    font-size: 1.5rem;
  }
}

/* Process Section - Modern Redesign */
.process-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow: hidden;
}

.process-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.process-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.process-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: floatShape 25s infinite ease-in-out;
}

.process-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.process-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.process-shape.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  top: 50%;
  right: 10%;
  animation-delay: 15s;
}

.process-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.process-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-bottom: 60px;
}

.process-step {
  position: relative;
  text-align: center;
  animation: fadeInUp 0.6s ease-out both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.step-connector {
  position: absolute;
  top: 60px;
  left: 100%;
  width: calc(100% - 60px);
  height: 3px;
  background: linear-gradient(90deg, #6366f1, transparent);
  z-index: 0;
  opacity: 0.3;
}

.process-step:last-child .step-connector {
  display: none;
}

.step-content {
  position: relative;
  z-index: 1;
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.process-step:hover .step-content {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}

.step-number-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transition: all 0.4s ease;
}

.step-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.1;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.process-step:hover .step-icon-bg {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.2);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.step-description {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 24px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #6366f1;
  font-weight: 600;
}

.process-cta {
  text-align: center;
}

.process-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.process-btn:hover::before {
  left: 100%;
}

.process-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.process-btn svg {
  transition: transform 0.3s ease;
}

.process-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }

  .process-title {
    font-size: 2.2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-number-wrapper {
    width: 80px;
    height: 80px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .step-icon-bg {
    font-size: 3rem;
  }
}

/* Testimonials Section - Modern Redesign */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
  color: white;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.testimonials-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.testimonial-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  animation: floatShape 30s infinite ease-in-out;
}

.testimonial-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.testimonial-shape.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
}

.testimonial-shape.shape-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 20s;
}

.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.testimonials-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out both;
  overflow: hidden;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover .testimonial-glow {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(99, 102, 241, 0.2);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.avatar-1 {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.avatar-2 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.avatar-3 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: white;
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.result-content {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.result-content strong {
  color: #6366f1;
  font-weight: 700;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-card {
  text-align: center;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.stats-card:nth-child(1) { animation-delay: 0.5s; }
.stats-card:nth-child(2) { animation-delay: 0.6s; }
.stats-card:nth-child(3) { animation-delay: 0.7s; }

.stats-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stats-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-title {
    font-size: 2.2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stats-card {
    padding: 24px 30px;
  }

  .stats-number {
    font-size: 2rem;
  }
}

/* Footer - Modern Redesign */
.footer-bright {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Space Grotesk', sans-serif;
  padding: 80px 20px 40px;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.footer-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: floatShape 25s infinite ease-in-out;
}

.footer-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.footer-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.footer-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.footer-logo-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  animation: pulseDot 2s ease infinite;
}

.footer-logo:hover .footer-logo-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.footer-links {
  position: relative;
  z-index: 2;
}

.footer-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 12px;
}

.footer-link:hover::before {
  width: 8px;
}

.footer-contact {
  position: relative;
  z-index: 2;
}

.contact-info-block {
  color: rgba(255, 255, 255, 0.8);
}

.company-name {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-address,
.contact-phone,
.contact-email {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-link {
  color: #6366f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6366f1;
  transition: width 0.3s ease;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

.footer-bottom-link:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-bright {
    padding: 60px 20px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* About Page Styles */
.about-hero-section {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow: hidden;
  margin-top: 80px;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.about-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: floatShape 25s infinite ease-in-out;
}

.about-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.about-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.about-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.brand-highlight {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.about-hero-description {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.about-stat-item {
  text-align: center;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.about-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.about-visual-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-visual-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.2);
}

.about-card-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
  flex-shrink: 0;
}

.about-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.about-card-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

/* Programs Section */
.about-programs-section {
  padding: 100px 0;
  background: white;
}

.programs-header {
  text-align: center;
  margin-bottom: 60px;
}

.programs-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
}

.programs-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.programs-subtitle {
  font-size: 1.1rem;
  color: #64748b;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  position: relative;
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
}

.program-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.program-card:hover .program-glow {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}

.program-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.program-card:hover .program-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.program-icon {
  font-size: 2.5rem;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.program-check {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mission Section */
.about-mission-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
  color: white;
  overflow: hidden;
}

.mission-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.mission-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mission-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  animation: floatShape 30s infinite ease-in-out;
}

.mission-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.mission-shape.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
}

.mission-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.mission-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
}

.mission-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.mission-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.mission-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mission-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mission-card:hover .mission-card-glow {
  opacity: 1;
}

.mission-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.mission-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.mission-icon {
  font-size: 3rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.mission-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  z-index: 3;
}

.mission-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.mission-card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-align: center;
}

/* Company Info Section */
.about-company-section {
  padding: 100px 0;
  background: #f8fafc;
}

.company-header {
  text-align: center;
  margin-bottom: 60px;
}

.company-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
}

.company-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.company-info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.company-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.company-info-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.company-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.company-info-content {
  color: #64748b;
  line-height: 1.8;
  font-size: 0.95rem;
}

.company-info-content p {
  margin-bottom: 12px;
}

.company-link {
  color: #6366f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.company-link:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .about-hero-content {
    grid-template-columns: 1fr;
  }

  .programs-grid,
  .mission-grid,
  .company-info-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 120px 0 80px;
    margin-top: 70px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 30px;
  }

  .programs-title,
  .mission-title,
  .company-title {
    font-size: 2.2rem;
  }
}

/* Contact Page Styles */
.contact-hero-section {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.contact-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: floatShape 25s infinite ease-in-out;
}

.contact-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.2);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.contact-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-hero-content {
  text-align: center;
}

.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: white;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Form Header */
.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* New Contact Form Styles */
.contact-form-new {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field-group {
  margin-bottom: 24px;
}

.form-label-new {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.required-star {
  color: #ef4444;
  margin-left: 4px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #ef4444;
}

.form-input-new.is-invalid:focus,
.form-textarea-new.is-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #10b981;
}

.form-input-new.is-valid:focus,
.form-textarea-new.is-valid:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-textarea-new {
  resize: vertical;
  min-height: 120px;
}

.invalid-feedback {
  display: none;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 8px;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.form-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit-button:hover::before {
  left: 100%;
}

.form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit-button svg {
  transition: transform 0.3s ease;
}

.form-submit-button:hover:not(:disabled) svg {
  transform: translateX(5px);
}

.form-status {
  margin-top: 20px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Contact Info Section */
.contact-info-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow: hidden;
}

.contact-info-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.contact-info-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-info-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: floatShape 25s infinite ease-in-out;
}

.contact-info-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.contact-info-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.contact-info-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.contact-info-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  position: relative;
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
  text-align: center;
}

.contact-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-info-card:hover .contact-card-glow {
  opacity: 1;
}

.contact-info-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.contact-card-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-card-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card-link:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

.contact-card-note {
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: white;
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-faq-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 20px;
}

.contact-faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.contact-faq-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-faq-item {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-faq-item:hover {
  border-color: rgba(99, 102, 241, 0.2);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.faq-item-question {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.faq-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.faq-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.faq-link-btn svg {
  transition: transform 0.3s ease;
}

.faq-link-btn:hover svg {
  transform: translateX(5px);
}

.contact-faq-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 120px 0 60px;
    margin-top: 70px;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-form-new {
    padding: 30px 20px;
  }

  .form-row-new {
    grid-template-columns: 1fr;
  }

  .contact-form-title {
    font-size: 2rem;
  }

  .contact-info-grid,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-title,
  .contact-faq-title {
    font-size: 2rem;
  }
}

/* FAQ Page Styles */
.faq-hero-section {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

.faq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.faq-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.faq-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: floatShape 25s infinite ease-in-out;
}

.faq-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.2);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.faq-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.faq-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.faq-hero-content {
  text-align: center;
}

.faq-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.faq-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* FAQ Content Section */
.faq-content-section {
  padding: 80px 0;
  background: white;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.faq-category-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
  flex-shrink: 0;
}

.faq-category-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(99, 102, 241, 0.05);
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #6366f1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 30px 24px 30px;
}

.faq-answer p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
  color: white;
  overflow: hidden;
}

.faq-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.faq-cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.faq-cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  animation: floatShape 30s infinite ease-in-out;
}

.faq-cta-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.faq-cta-shape.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
}

.faq-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-cta-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: pulse 2s ease infinite;
}

.faq-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.faq-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #6366f1;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}

.faq-cta-btn:hover::before {
  left: 100%;
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
}

.faq-cta-btn svg {
  transition: transform 0.3s ease;
}

.faq-cta-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .faq-hero-section {
    padding: 120px 0 60px;
    margin-top: 70px;
  }

  .faq-hero-title,
  .faq-cta-title {
    font-size: 2.5rem;
  }

  .faq-category-title {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* Policy Pages Styles (Cookie Policy, Privacy Policy, Terms of Use) */
.policy-hero-section {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: white;
  overflow: hidden;
  margin-top: 80px;
}

.policy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.policy-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.policy-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: floatShape 25s infinite ease-in-out;
}

.policy-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.2);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.policy-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.policy-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.policy-hero-content {
  text-align: center;
}

.policy-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.policy-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.policy-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.policy-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.policy-meta p {
  margin: 8px 0;
}

/* Policy Content Section */
.policy-content-section {
  padding: 80px 0;
  background: white;
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.policy-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.policy-section:hover {
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.1);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.policy-section-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
  flex-shrink: 0;
}

.policy-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.policy-section-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}

.policy-section-text p {
  margin-bottom: 16px;
}

.policy-section-text ul {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-section-text li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-subsection {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.policy-subsection h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.policy-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-link:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

/* Thanks Page Styles */
.thanks-section {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow: hidden;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.thanks-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.thanks-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: floatShape 25s infinite ease-in-out;
}

.thanks-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.thanks-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: -100px;
  right: -100px;
  animation-delay: 8s;
}

.thanks-shape.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

.thanks-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px;
}

.thanks-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thanks-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
  animation: scaleIn 0.6s ease-out 0.3s both;
}

.thanks-icon-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 3px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  animation: pulseCircle 2s ease infinite;
}

.thanks-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.thanks-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.thanks-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.9s both;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 1.1s both;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.thanks-btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.thanks-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.thanks-btn-primary:hover::before {
  left: 100%;
}

.thanks-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.thanks-btn-secondary {
  background: white;
  color: #6366f1;
  border: 2px solid #6366f1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thanks-btn-secondary:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.thanks-btn svg {
  transition: transform 0.3s ease;
}

.thanks-btn:hover svg {
  transform: translateX(5px);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseCircle {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .policy-hero-section,
  .thanks-section {
    padding: 120px 0 60px;
    margin-top: 70px;
  }

  .policy-hero-title,
  .thanks-title {
    font-size: 2.5rem;
  }

  .policy-section {
    padding: 30px 20px;
  }

  .policy-section-title {
    font-size: 1.5rem;
  }

  .thanks-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .thanks-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .thanks-icon-circle {
    width: 120px;
    height: 120px;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thanks-btn {
    width: 100%;
    justify-content: 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;
	}
}