:root {
	--ec-bg-dark: #0d0d0d;
	--ec-accent-primary: #ff5722;
	--ec-accent-secondary: #009688;
	--ec-text-light: #cccccc;
	--ec-text-lighter: #f5f5f5;
	--ec-text-muted: #999999;
	--ec-dark-gray: #222222;
	--ec-black-opacity: rgba(0, 0, 0, 0.9);
	--ec-gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
	--ec-gradient-primary: linear-gradient(135deg, #ff5722 0%, #f73a0f 100%);
	--ec-gradient-secondary: linear-gradient(135deg, #009688 0%, #00877a 100%);
	--ec-shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.1);
	--ec-shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.2);
	--ec-transition-fast: all 0.2s ease-in-out;
	--ec-transition-medium: all 0.3s ease-in-out;
	--ec-transition-slow: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	--ec-border-radius-sm: 4px;
	--ec-border-radius-md: 8px;
	--ec-border-radius-lg: 12px;
	--ec-spacing-xs: 0.5rem;
	--ec-spacing-sm: 1rem;
	--ec-spacing-md: 2rem;
	--ec-spacing-lg: 3rem;
	--ec-spacing-xl: 4rem;
	--ec-spacing-xxl: 6rem;
	--ec-font-family-primary: 'Montserrat', sans-serif;
	--ec-font-family-secondary: 'Raleway', sans-serif;
	--ec-max-width-container: 1200px;
	--ec-header-height: 80px;
	--ec-z-index-header: 1000;
	--ec-z-index-modal: 2000;
	--ec-z-index-cookie: 3000;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;

	margin: 0;
	padding: 0;
}

.thank-you-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: var(--ec-bg-dark);
}

.thank-you-content {
	background-color: white;
	padding: 3rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 400px;
	width: 90%;
}

.check-mark {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
}

.check-mark svg {
	width: 100%;
	height: 100%;
}

.check-mark svg circle {
	stroke: #ff5722;
	stroke-width: 2;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.check-mark svg path {
	stroke: #ff5722;
	stroke-width: 2;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	fill: none;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}

.thank-you-content h1 {
	color: #333;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.thank-you-content p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.back-button {
	display: inline-block;
	background-color: #ff5722;
	color: white;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.back-button:hover {
	background-color: #ff5722;
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
/* Обновлённая тема: светлая основа с яркими акцентами и тёмным футером */
:root {
  --ec-bg-base: #ffffff;
  --ec-bg-light: #f9f9f9;
  --ec-bg-dark: #121212;
  --ec-accent-primary: #1976d2;
  --ec-accent-secondary: #c2185b;
  --ec-text-base: #212121;
  --ec-text-muted: #6f6f6f;
  --ec-gradient-primary: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  --ec-gradient-secondary: linear-gradient(135deg, #c2185b 0%, #f48fb1 100%);
  --ec-shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.06);
  --ec-shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);
  --ec-border-radius-sm: 4px;
  --ec-border-radius-md: 8px;
  --ec-border-radius-lg: 16px;
  --ec-spacing-sm: 1rem;
  --ec-spacing-md: 2rem;
  --ec-spacing-lg: 3rem;
  --ec-font-primary: system-ui, sans-serif;
  --ec-font-secondary: 'Georgia', serif;
}

/* Сброс и базовые стили */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--ec-font-primary); font-size: 16px; scroll-behavior: smooth; }
body { background: var(--ec-bg-base); color: var(--ec-text-base); line-height: 1.6; }
a { color: var(--ec-accent-primary); text-decoration: none; transition: 0.2s ease; }
a:hover { color: var(--ec-accent-secondary); }

/* Секции */
section { padding: var(--ec-spacing-lg) 0; }
.ec-hero { background: var(--ec-gradient-primary); color: var(--ec-bg-base); }
.ec-pricing { background: var(--ec-bg-light); }
.ec-testimonials, .ec-team { background: var(--ec-gradient-secondary); color: var(--ec-bg-base); }
.ec-contact { background: var(--ec-accent-primary); color: var(--ec-bg-base); }

/* Заголовки */
h1, h2, h3, h4, h5, h6 { font-family: var(--ec-font-secondary); color: var(--ec-text-base); }
h2::after { background: var(--ec-accent-primary); }

/* Карточки */
.ec-card, .ec-pricing-card, .ec-testimonial-card, .ec-team-card {
  background: var(--ec-bg-base);
  border-radius: var(--ec-border-radius-md);
  box-shadow: var(--ec-shadow-soft);
}
.ec-card:hover, .ec-pricing-card:hover {
  box-shadow: var(--ec-shadow-strong);
  transform: translateY(-4px);
}

/* Кнопки */
.ec-btn {
  border-radius: var(--ec-border-radius-sm);
  transition: var(--ec-transition-fast);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}
.ec-btn-primary {
  background: var(--ec-accent-primary);
  color: var(--ec-bg-base);
}
.ec-btn-primary:hover { background: #1565c0; }
.ec-btn-outline {
  background: transparent;
  border: 2px solid var(--ec-accent-secondary);
  color: var(--ec-accent-secondary);
}
.ec-btn-outline:hover { background: var(--ec-accent-secondary); color: var(--ec-bg-base); }

/* Футер */
.ec-footer {
  background: var(--ec-bg-dark);
  color: var(--ec-bg-light);
}
.ec-footer a { color: var(--ec-bg-base); }
.ec-footer a:hover { color: var(--ec-accent-primary); }

/* Стили Thank-you */
.thank-you-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--ec-bg-dark);
}
.thank-you-content {
  background-color: var(--ec-bg-base);
  padding: 3rem;
  border-radius: var(--ec-border-radius-md);
  box-shadow: var(--ec-shadow-soft);
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.check-mark {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}
.check-mark svg circle,
.check-mark svg path {
  stroke: var(--ec-accent-primary);
  stroke-width: 2;
  fill: none;
}
.check-mark svg circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke