/********** Template CSS **********/
:root {
	--light: #fef9f4;
	--dark: #2e2b27;
	--bg-primary: #2c2c2c;
	--bg-secondary: #3e3a34;
	--text-light: #f5e9dc;
	--text-muted: #c2b7aa;
	--text-accent: #ffa15a;
	--card-shadow: 0 10px 25px rgba(60, 40, 10, 0.25);
	--card-shadow-hover: 0 10px 30px rgba(60, 40, 10, 0.35);
	--border-radius: 20px;
	--accent-transparent: rgba(255, 165, 90, 0.15);
	--accent-solid: #ff8147;
}


.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 ***/
.ie-header {
	background: linear-gradient(90deg, #131313, #1c1c1c);
	color: #fff;
	padding: 15px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.ie-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
}

.ie-logo a {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.ie-logo a:hover {
	color: #f29b30;
}

.ie-nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.ie-nav ul li a {
	text-decoration: none;
	color: #e8e8e8;
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.ie-nav ul li a:hover {
	color: #f29b30;
}


.ie-menu-icon {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.ie-menu-icon span {
	height: 3px;
	width: 24px;
	background: #fff;
	display: block;
	border-radius: 2px;
}

#ie-menu-toggle {
	display: none;
}

@media (max-width: 992px) {
	.ie-menu-icon {
		display: flex;
	}

	.ie-nav {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #1c1c1c;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-in-out;
	}

	#ie-menu-toggle:checked+.ie-menu-icon+.ie-nav {
		max-height: 400px;
	}

	.ie-nav ul {
		flex-direction: column;
		padding: 20px;
		gap: 15px;
	}

	.ie-nav ul li a {
		font-size: 16px;
	}
}

/* Footer Styles */
.footer-modern {
  background: var(--bg-primary);
  color: var(--text-muted);
  padding: 80px 40px 40px;
  font-family: 'SUSE', sans-serif;
  box-shadow: var(--card-shadow);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 2 1 350px;
  min-width: 280px;
}

.footer-logo {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-accent);
  text-decoration: none;
  margin-bottom: 16px;
  display: inline-block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--accent-solid);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 400px;
}

.footer-links {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 4px var(--accent-solid);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 14px;
}

.footer-link-list a {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link-list a:hover {
  color: var(--text-accent);
  transform: translateX(6px);
}

.footer-contact {
  flex: 1 1 280px;
  min-width: 280px;
}

.footer-contact-email {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.footer-contact-email a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-email a:hover {
  color: var(--accent-solid);
}

.email-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  filter: drop-shadow(0 0 1px var(--accent-solid));
}

.footer-phone {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--bg-secondary);
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    min-width: 100%;
  }

  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    font-size: 2rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}



/* Google Fonts - Poppins */


@media (max-width: 700px) {
	.cookie-wrapper {
		width: 100%;
	}
}

.cookie-wrapper {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	background: var(--bg-secondary);
	padding: 15px 25px 22px;
	transition: right 0.3s ease;
	box-shadow: var(--card-shadow);
	z-index: 999;
}

.cookie-wrapper .show {
	right: 20px;
}

.hidden {
	display: none;
}

header i {
	color: var(--text-muted);
	font-size: 32px;
	text-align: center;
}

header h2 {
	color: var(--text-accent);
	font-weight: 500;
	text-align: center;
}

.data {
	text-align: center;
}

.data p a {
	color: var(--accent-solid);
	text-decoration: none;
}

.data p a:hover {
	text-decoration: underline;
}

.buttons {
	padding: 20px 0;
	text-align: center;
}

.buttons .cookie-button {
	border: 2px solid var(--text-accent);
	color: var(--text-light);
	background: var(--accent-solid);
	padding: 8px 0;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.5s ease;
	max-width: 150px;
	border-radius: var(--border-radius);
}

.buttons #acceptBtn:hover {
	background-color: transparent;
	color: var(--accent-solid);
}

#declineBtn {
	background-color: transparent;
	color: var(--accent-solid);
}

#declineBtn:hover {
	color: var(--text-light);
	background: var(--accent-solid);
}

@media (max-width: 600px) {
	.cookie-wrapper {
		width: 100%;
	}
}


/* new styles  */
/* Variables globales */

/* Styles pour le bloc hero */
.ie-hero {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
	margin-bottom: 5rem;
}

.ie-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, var(--accent-solid) 0%, transparent 70%);
  opacity: 0.05;
  transform: rotate(25deg);
  z-index: 0;
}

.ie-hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  background: var(--bg-secondary);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow-hover);
  border: 1px solid var(--accent-transparent);
}

.ie-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.3;
}

.ie-hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.ie-hero-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-primary);
  background-color: var(--text-accent);
  border: 2px solid var(--text-accent);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ie-hero-btn:hover {
  background-color: transparent;
  color: var(--text-accent);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .ie-hero-title {
    font-size: 2.2rem;
  }

  .ie-hero-description {
    font-size: 1.05rem;
  }

  .ie-hero-container {
    padding: 40px 20px;
  }
}

/* Styles pour le bloc À propos */
.ie-about {
  background: var(--bg-primary);
  color: var(--text-light);
  padding: 100px 0;
	margin-bottom: 6rem;
}

.ie-about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: stretch;
  justify-content: space-between;
}

.ie-about-content {
  flex: 1 1 50%;
  background: var(--bg-secondary);
  padding: 50px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.ie-about-heading {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: var(--text-light);
}

.ie-about-paragraph {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.ie-about-features {
  list-style: none;
  padding: 0;
}

.ie-about-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  padding-left: 8px;
  border-left: 3px solid var(--text-accent);
}

.ie-about-features i {
  font-size: 1.4rem;
  color: var(--text-accent);
}

.ie-about-image {
  flex: 1 1 45%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
}

.ie-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .ie-about-wrapper {
    flex-direction: column;
  }

  .ie-about-content {
    padding: 30px 20px;
  }

  .ie-about-heading {
    font-size: 2.2rem;
  }
}



/* Styles pour le bloc Programmes */
.ie-programs {
  background: var(--bg-primary);
  color: var(--text-light);
  padding: 90px 0 70px 0;
  margin: 8rem 0 4rem;
  font-family: 'SUSE', sans-serif;
}

.ie-programs-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px var(--accent-solid);
}

.ie-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ie-program-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ie-program-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px);
  border-color: var(--accent-solid);
  background: linear-gradient(135deg, var(--accent-transparent), var(--bg-secondary));
}

.ie-program-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--accent-solid);
  text-shadow: 0 0 8px var(--accent-solid);
}

.ie-program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.ie-program-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  padding-left: 10px;
  border-left: 3px solid transparent;
}

.ie-program-list li:hover {
  color: var(--text-accent);
  border-left-color: var(--text-accent);
}

.ie-program-list i {
  font-size: 1.4rem;
  color: var(--accent-solid);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ie-programs-heading {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .ie-program-card {
    padding: 30px 20px;
  }
  .ie-program-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  .ie-program-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* Styles pour le bloc Avantages */
.growth-benefits-section {
  background: var(--bg-primary);
  color: var(--text-light);
  padding: 80px 20px 100px;
  font-family: 'SUSE',  sans-serif;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 6px var(--accent-solid);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.growth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.growth-image-wrapper {
  grid-column: 1 / 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
}

.growth-image-wrapper:hover {
  box-shadow: var(--card-shadow-hover);
}

.growth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.growth-image-wrapper:hover .growth-image {
  filter: brightness(1);
}

.growth-blocks {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.growth-block {
  background: var(--bg-secondary);
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius);
  border-left: 6px solid var(--accent-solid);
  box-shadow: var(--card-shadow);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.growth-block:hover {
  background: var(--accent-transparent);
  transform: translateX(8px);
  box-shadow: var(--card-shadow-hover);
}

.block-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-solid);
  margin-bottom: 0.8rem;
  font-family: 'SUSE', sans-serif;
  user-select: none;
}

.block-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.block-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .growth-layout {
    grid-template-columns: 1fr;
  }

  .growth-image-wrapper,
  .growth-blocks {
    grid-column: 1 / 2;
  }

  .growth-blocks {
    margin-top: 3rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }
}


/* 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(135deg, var(--bg-primary), var(--bg-secondary));
  padding: 100px 20px;
  font-family: 'SUSE', sans-serif;
  color: var(--dark);
	margin-bottom: 3px;
}

.tarif-container {
  max-width: 600px;
  margin: 0 auto;
}

.tarif-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-accent);
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 6px var(--accent-solid);
}

.tarif-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tarif-card {
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 2.8rem 2.4rem;
  border-left: 6px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tarif-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-left-color: var(--accent-solid);
}

.tarif-card.active {
  border-left-color: var(--text-accent);
  box-shadow: 0 12px 28px rgba(255, 130, 30, 0.4);
  background: var(--accent-transparent);
}

.tarif-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 10px 0;
  font-family: 'SUSE', sans-serif;
}

.tarif-price span {
  display: block;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 700;
}

.tarif-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.6rem;
  letter-spacing: 0.05em;
}

.tarif-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tarif-list li {
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding-left: 32px;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.tarif-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--text-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-solid);
}

.tarif-list li:hover {
  color: var(--text-accent);
}

/* Responsive */

@media (max-width: 600px) {
  .tarif-container {
    max-width: 100%;
    padding: 0 15px;
  }

  .tarif-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .tarif-price {
    font-size: 2.4rem;
  }

  .tarif-name {
    font-size: 1.5rem;
  }

  .tarif-list li {
    font-size: 1rem;
    padding-left: 26px;
  }

  .tarif-list li::before {
    width: 12px;
    height: 12px;
    left: 8px;
  }
}

/* contact section */

.kontakt-section {
  background: var(--bg-secondary);
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  color: var(--text-light);
  font-family: 'SUSE', sans-serif;
}

.kontakt-container {
  max-width: 650px;
  width: 100%;
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  box-shadow: var(--card-shadow-hover);
  text-align: center;
}

.kontakt-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 6px var(--accent-solid);
}

.kontakt-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
}

.kontakt-email {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--text-accent);
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.kontakt-email:hover {
  color: var(--accent-solid);
}

.email-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: currentColor;
  flex-shrink: 0;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.input-row input {
  flex: 1;
}

.form-input {
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid var(--bg-secondary);
  background: var(--bg-secondary);
  color: var(--text-light);
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline-offset: 2px;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--text-accent);
  background: var(--bg-primary);
  color: var(--text-light);
}

.form-button {
  background-color: var(--text-accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 0;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px var(--accent-transparent);
}

.form-button:hover {
  background-color: var(--accent-solid);
  box-shadow: 0 8px 22px var(--accent-solid);
}

@media (max-width: 768px) {
  .kontakt-container {
    padding: 40px 25px;
  }

  .kontakt-title {
    font-size: 2.2rem;
  }

  .kontakt-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row input {
    width: 100%;
  }
}
