/********** Template CSS **********/
:root {
	--primary: #d4d109;
	--light: #f8fff3;
	--dark: #212411;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	min-height: 1.2rem;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error-message:not(:empty) {
	opacity: 1;
}

/* Додатковий стиль для полів з помилками */
.form-control.error {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 2px;
}

/*** Navbar ***/
.new-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 0;
  transition: background-color 0.4s ease;
  font-family: 'Changa', sans-serif;
}

.new-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-logo a {
  font-size: 28px;
  font-weight: 800;
  color: #4a90e2;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  user-select: none;
  transition: color 0.3s ease;
}

.new-logo a:hover {
  color: #e94e77;
}

.new-nav ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.new-nav ul li a {
  font-weight: 600;
  font-size: 16px;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.new-nav ul li a:hover {
  background-color: #4a90e2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.new-menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  user-select: none;
}

.new-menu-icon span {
  width: 28px;
  height: 3.5px;
  background-color: #4a90e2;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

#new-menu-toggle {
  display: none;
}

/* Меню для мобилок */
@media (max-width: 992px) {
  .new-menu-icon {
    display: flex;
  }

  .new-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    z-index: 999;
  }

  #new-menu-toggle:checked + .new-menu-icon + .new-nav {
    max-height: 400px;
  }

  .new-nav ul {
    flex-direction: column;
    gap: 18px;
    padding: 25px 30px;
  }

  .new-nav ul li a {
    font-size: 18px;
    color: #4a90e2;
    padding: 12px 0;
    border-radius: 0;
  }

  .new-nav ul li a:hover {
    background-color: transparent;
    color: #e94e77;
    box-shadow: none;
  }
}


:root {
	--bg-color: #f8fffc;
	--accent-color: #d4d109;
	--text-color: #666565;
	--white: #ffffff;
}

/* Footer Styles */
.footer-bright {
  background: #f9f9f9;
  color: #333;
  font-family: 'Changa', 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');

@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 40%;
	background: #000652;
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: 0 5px 10px rgb(0, 0, 0);
	z-index: 999;
	width: 100%;

	@media (max-width: 600px) {
		width: 100%;
	}
}

.cookie-wrapper .show {
	right: 20px;
}

.hidden {
	display: none;
}

header i {
	color: #74848a;
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: #547387;
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: #620000;
	text-decoration: none;
	text-align: center !important;
}

.data p a:hover {
	text-decoration: underline;
}

.buttons {
	padding: 20px 0px;
	text-align: center;
}

.buttons .cookie-button {
	border: 2px solid #00ff26;
	color: #fff;
	background: #550000;
	padding: 8px 0;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.5s ease;
	max-width: 150px;
	border-radius: 0;
}

.buttons #acceptBtn:hover {
	background-color: transparent;
	color: #f4bcff;
}

#declineBtn {
	background-color: transparent;
	color: #f4bcff;
}

#declineBtn:hover {
	color: #fff;
	background: #550000;
}

/* new styles  */
/* Variables globales */
:root {
	--bg-primary: #fff;
	--text-primary: #383838;
	--accent-color: #d4d109;
	--border-radius: 0;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour le bloc hero */
.grow-entry {
  background-color: #f2f4f8;
  padding: 70px 0 0 0;
  position: relative;
  overflow: hidden;
}

.grow-entry-bg {
  background: radial-gradient(circle at top left, #e0f7ff 0%, #ffffff 100%);
  padding: 10rem 2rem;
}

.grow-entry-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.grow-entry-body {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.grow-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #2d2d2d;
  margin-bottom: 24px;
}

.grow-subtext {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #555;
  max-width: 680px;
  margin: 0 auto 32px;
}

.brand-name {
  color: #5e60ce;
  font-weight: 600;
}

.grow-btn {
  display: inline-block;
  background: linear-gradient(90deg, #5e60ce, #3a86ff);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

.stats-card {
	background: var(--bg-primary);
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
}

.stats-card:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.stats-label {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1rem;
}

.btn-primary-custom {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	padding: 12px 32px;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
	background-color: transparent;
	color: var(--accent-color);
	transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.stats-card {
		margin-bottom: 1.5rem;
	}
}

/* Styles pour le bloc À propos */
.core-journey {
  background: linear-gradient(to bottom, #ffffff, #f6f8fb);
  padding: 100px 20px;
  color: #1c1c1c;
}

.core-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.core-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.core-text-block {
  flex: 1 1 500px;
}

.core-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #333333;
}

.core-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 32px;
}

.core-brand {
  color: #5f27cd;
  font-weight: 600;
}

.core-points {
  display: grid;
  gap: 16px;
}

.core-point {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 0.75rem;
  color: #444;
}

.core-point i {
  font-size: 1.2rem;
  color: #5f27cd;
}

.core-visual {
  flex: 1 1 440px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.core-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.core-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.core-offer-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.core-offer-card:hover {
  transform: translateY(-6px);
}

.core-offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c2c2c;
}

.core-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-offer-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.core-offer-list i {
  color: #5f27cd;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .core-intro {
    flex-direction: column;
  }

  .core-title {
    font-size: 2.2rem;
  }

  .core-description {
    font-size: 1.05rem;
  }
}


/* Styles pour le bloc Avantages */
.growth-benefits-section-alt {
	padding: 120px 0;
	background: radial-gradient(circle at top left, rgba(32, 32, 48, 0.95), rgba(22, 22, 35, 0.95));
	color: #f4f4f4;
}

.growth-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px auto;
}

.growth-heading {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 1rem;
	color: #ffffff;
}

.growth-subtitle {
	font-size: 1.2rem;
	color: #cfcfcf;
}

.growth-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.growth-card {
	position: relative;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 18px;
	padding: 2rem;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(to bottom, rgba(196, 18, 236, 0.4), rgba(15, 225, 138, 0.4));
	border-radius: 6px;
}

.growth-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.growth-icon {
	font-size: 1.2rem;
	font-weight: bold;
	color: #a0f0df;
	margin-bottom: 0.8rem;
}

.growth-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.growth-text {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
	.growth-heading {
		font-size: 2.2rem;
	}

	.growth-card {
		padding: 1.5rem;
	}
}



/* Styles pour le bloc Histoires de réussite */
.success-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.success-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}

.testimonial-card {
	background: #fafafa;
	border-left: 5px solid var(--accent-color);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: #f5f5f5;
	transform: translateX(5px);
}

.testimonial-quote {
	position: absolute;
	top: -10px;
	left: 20px;
	background: var(--accent-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.testimonial-text {
	color: var(--text-primary);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-style: italic;
	margin-top: 1rem;
}

.testimonial-author {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
}

.author-icon {
	color: var(--accent-color);
	margin-right: 0.5rem;
	font-size: 1.2rem;
}


/* Styles pour le bloc Tarifs */

/* Responsive pour les nouveaux blocs */
@media (max-width: 768px) {

	.tips-title,
	.pricing-title {
		font-size: 2rem;
	}

	.tips-image {
		height: 250px;
		margin-bottom: 1rem;
	}

	.tip-item {
		padding: 1.5rem;
	}

	.pricing-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.pricing-card.featured {
		transform: none;
	}

	.plan-price {
		font-size: 2rem;
	}
}

/* Styles pour le bloc Contacts */
.contact-section {
	padding: 80px 0;
	background-color: var(--bg-primary);
}

.contact-title {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.contact-description {
	font-size: 1.2rem;
	color: var(--text-primary);
	text-align: center;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.contact-info {
	background: #fafafa;
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	padding: 3rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-info:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
}

.email-link {
	display: inline-flex;
	align-items: center;
	background: var(--accent-color);
	color: white;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.email-link:hover {
	background: var(--heading-color);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.email-icon {
	margin-right: 0.5rem;
	font-size: 1.3rem;
}

.social-title {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.5rem;
}

.social-link:hover {
	background: var(--heading-color);
	color: white;
	transform: translateY(-3px) scale(1.1);
}

/* Styles pour le bloc Formulaire */
.tarif-section {
  background: linear-gradient(to right, #1a1c22, #1c1f2b);
  padding: 100px 30px;
  display: flex;
  justify-content: center;
}

.tarif-wrapper {
  max-width: 1200px;
  width: 100%;
}

.tarif-heading {
  font-size: 2.8rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.tarif-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tarif-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1 1 280px;
  max-width: 360px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tarif-item:hover {
  transform: translateY(-10px);
}

.tarif-item.active {
  border: 2px solid #0fe18a;
  background: rgba(15, 225, 138, 0.1);
}

.tarif-name {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.tarif-price {
  font-size: 1.8rem;
  color: #c412ec;
  margin-bottom: 25px;
  font-weight: 700;
}

.tarif-price span {
  font-size: 0.9rem;
  display: block;
  color: #bbbbbb;
}

.tarif-features {
  list-style: none;
  padding: 0;
}

.tarif-features li {
  color: #e0e0e0;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.tarif-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0fe18a;
  font-size: 0.9rem;
}

.kontakt-section {
  background: #f2f3f8;
  padding: 100px 30px;
  display: flex;
  justify-content: center;
}

.kontakt-wrapper {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.kontakt-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.kontakt-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-field {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f9f9fb;
  color: #333;
}

.kontakt-button {
  padding: 16px;
  background-color: #c412ec;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kontakt-button:hover {
  background-color: #a80ac3;
}

@media (max-width: 992px) {
  .tarif-cards {
    flex-direction: column;
    align-items: center;
  }
}



.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	display: none;
}

.btn-primary {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: white;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-1px);
}

.btn-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(78, 21, 4, 0.25);
}

/* Responsive pour les blocs finaux */
@media (max-width: 768px) {

	.contact-title,
	.form-title {
		font-size: 2rem;
	}

	.contact-info {
		padding: 2rem;
	}

	.form-container {
		padding: 2rem;
	}

	.social-links {
		gap: 0.75rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
}