:root {
  --primary: #697ad9;
  --accent: #a78bfa;
  --bg: #f5f8ff;
  --text-dark: #1c1c1c;
  --text-light: #697ad9;
  --card-bg: rgba(255, 255, 255, 0.6);
  --blur-bg: blur(12px);
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f5f8ff 0%, #e6edff 100%);
  color: var(--text-dark);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  background: rgba(105, 122, 217, 0.3);
  z-index: -1;
  transition: transform 0.1s ease-out;
}

body::before {
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
}

body::after {
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
}

.Header {
  max-width: 1400px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-radius: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.Header__logo {
  color: var(--primary);
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
}

.NavBar {
  display: flex;
  gap: 24px;
}

.NavBar__link {
  color: var(--primary);
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}

.NavBar__link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.Header__buttons {
  display: flex;
  gap: 12px;
}

.Header__button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  position: relative;
}

.Header__button img {
  width: 50px;
  height: 40px;
}

.theme-toggle {
  width: 48px;
  height: 44px;
  border: var(--primary) 2px solid;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(105, 122, 217, 0.3);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(105, 122, 217, 0.4);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-toggle__icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.theme-toggle__sun,
.theme-toggle__moon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

.theme-toggle__sun {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-toggle__moon {
  opacity: 0;
  transform: rotate(-45deg);
}

body.dark-theme .theme-toggle__sun {
  opacity: 0;
  transform: rotate(45deg);
}

body.dark-theme .theme-toggle__moon {
  opacity: 1;
  transform: rotate(0deg);
}

@keyframes pulse {
  0% {
	transform: scale(1);
  }

  50% {
	transform: scale(1.1);
  }

  100% {
	transform: scale(1);
  }
}

.theme-toggle.active {
  animation: pulse 0.5s ease;
}


body.dark-theme .theme-toggle {
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

body.dark-theme .theme-toggle:hover {
  box-shadow: 0 6px 16px rgba(167, 139, 250, 0.4);
}

.Header__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: white;
  color: var(--primary);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Burger {
  display: none;
  cursor: pointer;
}

.Burger img {
  width: 24px;
  height: 24px;
}

.Module {
  display: none;
}

.Module.active {
  display: flex;
}

.Overlay {
  display: none;
}

.Overlay.active {
  display: block;
}

.Module {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: column;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
}

.Module.active {
  transform: translateX(0);
  background-color: var(--bg);
}

.Overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.Module a {
  color: #697ad9;
  text-decoration: none;
}

.Overlay.active {
  display: block;
}

.Module__nav {
  display: flex;
  flex-direction: column;
}

.Module__nav p {
  padding: 10px;
}

@media (max-width: 1440px) {
  .Header {
	max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .Header {
	max-width: 900px;
  }

  .NavBar {
	gap: 16px;
  }
}

@media (max-width: 768px) {
  .Header {
	max-width: 700px;
	padding: 12px 16px;
  }

  .NavBar {
	display: none;
  }

  .Burger {
	display: block;
  }

  .Header__buttons {
	gap: 8px;
  }
}

@media (max-width: 480px) {
  .Header {
	max-width: 100%;
	margin: 10px 10px 0;
	padding: 10px 12px;
  }

  .Header__logo {
	font-size: 18px;
  }

  .Header__button {
	width: 36px;
	height: 36px;
  }

  .Module {
	width: 240px;
	padding: 15px;
  }
}

@media (max-width: 320px) {
  .Header {
	border-radius: 15px;
  }

  .Header__logo {
	font-size: 16px;
  }

  .Module {
	width: 220px;
  }

  .Module__nav a {
	font-size: 15px;
  }
}

.card,
.feature,
.plan,
.review,
.slide,
.faq details {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.2em;
  color: #666;
  padding: 40px 0;
}

.banner {
  position: relative;
  overflow: hidden;
  padding: 21px;
  display: block;
  text-align: center;
}

.banner img {
  width: 1668px;
  height: 648px;
  object-fit: cover;
  border-radius: 64px;
  display: block;
  margin: 0 auto;
}

.hero a{
 display: inline-block;
  padding: 16px 60px;
  background: var(--primary);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease;
  align-self: center;
}

body a {
  text-decoration: none;
}

h1,
h2,
h3 {
  color: #3d5afe;
  font-weight: 700;
}

p {
  color: var(--text-light);
}

.container {
  flex-direction: column;
  display: flex;
  justify-content: center;
  max-width: 1254px;
  margin: 0 auto;
  padding: 2rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: var(--blur-bg);
  -webkit-backdrop-filter: var(--blur-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.hero {
  height: 80dvh;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.hero .btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  margin-top: 2rem;
  cursor: pointer;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 2rem 0;
  color: var(--primary);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.faq details {
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  border: 1px solid rgba(105, 122, 217, 0.15);
  margin-bottom: 20px;
}

.faq details[open] {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.faq details summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: bold;
  outline: none;
  transition: background-color 0.3s ease-in-out;
  padding: 25px 30px;
  font-size: 1.3rem;
  color: #2c3e50;
  position: relative;
}

.faq details summary::before {
  transform-origin: center;
  content: "+";
  position: absolute;
  right: 30px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq details[open] summary::before {
  content: "-";
  transform: rotate(0);
}

.faq details summary:hover {
  background-color: rgba(93, 90, 173, 0.35);
}

.faq details p {
  margin: 0;
  line-height: 1.6;
  border-radius: 0 0 16px 16px;
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  padding: 0 30px 30px;
  color: #5a6a8a;
  font-size: 1.1rem;
}

.faq details[open] p {
  animation: expand 0.3s ease-in-out forwards;
}

.faq details:not([open]) p {
  animation: collapse 0.3s ease-in-out forwards;
}

.pricing {
  margin-top: 50px;
}

.pricing .plans {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.pricing .plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-around;
  padding: 40px;
  width: 300px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
}

.pricing .plan img {
  width: 100%;
  height: auto;
}

.pricing .plan h3 {
  margin-top: 10px;
}

.pricing .plan p {
  margin: 10px 0;
}

.pricing .plan .price {
  font-weight: bold;
  font-size: 1.2em;
}

.pricing .btn-primary {
 display: inline-block;
  padding: 10px 60px;
  background: var(--primary);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  align-self: center;
}

.pricing .btn-primary:hover {
  background-color: #1a2a83;
}

.pricing .best-value {
  border-color: #FFEB3B;
  box-shadow: 2px 2px 10px rgba(255, 215, 0, 0.3);
}

@keyframes fadeIn {
  from {
	opacity: 0;
	transform: translateY(20px);
  }

  to {
	opacity: 1;
	transform: translateY(0);
  }
}

.pricing .plan:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing .plan ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.pricing .plan li {
  padding: 5px;
  margin-left: 20px;
}

.plan {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(105, 122, 217, 0.15);
  display: flex;
  flex-direction: column;
}

.plan img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.plan h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
}

.plan ul {
  text-align: left;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.plan li {
  padding: 0.5rem 0;
  color: #5a6a8a;
  position: relative;
  padding-left: 1.5rem;
}

.plan li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: -10px;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.best-value {
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.best-value::after {
  content: "Рекомендуем";
  position: absolute;
  top: 30px;
  right: -40px;
  background: var(--primary);
  color: white;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  font-size: 0.9rem;
}

.features {
  position: relative;
  overflow: hidden;
}

.features .container {
  position: relative;
  z-index: 1;
}

.h2main {
  font-size: 2.8rem;
  margin-bottom: 70px;
  color: #2c3e50;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.h2main::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.feature-grid {
  display: flex;
  justify-content: center;
}

.feature {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(105, 122, 217, 0.15);
}

.feature i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  background: rgba(105, 122, 217, 0.1);
  line-height: 80px;
  border-radius: 50%;
}

.feature h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: #2c3e50;
}

.feature p {
  color: #5a6a8a;
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature:hover i {
  transform: scale(1.1);
  background: rgba(105, 122, 217, 0.2);
}

.news-slider {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto;
  position: relative;
  padding: 0px 0;
}

.slides-container {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 33.33%;
  padding: 30px;
  box-sizing: border-box;
  background: white;
  border-radius: 20px;
  margin: 0 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(105, 122, 217, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(105, 122, 217, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.slide:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.slide:hover::before {
  opacity: 0.8;
}

.slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.slide h3 {
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  color: #2c3e50;
  line-height: 1.4;
  font-weight: 700;
}

.slide .author {
  font-style: italic;
  color: #697ad9;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.slide .tags {
  margin-bottom: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}

.slide .tags a {
  color: var(--primary);
  text-decoration: none;
  padding: 4px 10px;
  background: rgba(105, 122, 217, 0.15);
  border-radius: 15px;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.slide .tags a:hover {
  background: rgba(105, 122, 217, 0.3);
  transform: translateY(-2px);
}

.slide .description {
  line-height: 1.6;
  color: #5a6a8a;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.slide .read-more {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.slide .read-more:hover {
  background: #5a6fd1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(105, 122, 217, 0.3);
  z-index: 10;
}

.prev {
  left: -30px;
}

.next {
  right: -30px;
}

.prev:hover,
.next:hover {
  background-color: #5a6fd1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(105, 122, 217, 0.4);
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  justify-items: center;
  max-width: 1254px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.feature i {
  font-size: 40px;
  color: #4CAF50;
  margin-bottom: 10px;
}

h3 {
  margin: 15px 0 10px;
  font-size: 20px;
}

p {
  color: #555;
  font-size: 16px;
}

.advantages {
  position: relative;
  overflow: hidden;
}

.advantages .container {
  max-width: 1254px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.h2main {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.h2main::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(100, 148, 237, 0.911);
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #34495e;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card:nth-child(1)::after {
  content: "✌️";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.card:nth-child(2)::after {
  content: "🔄";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.card:nth-child(3)::after {
  content: "🎯";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.card:nth-child(4)::after {
  content: "📊";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.card:nth-child(5)::after {
  content: "⏰";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

.card:nth-child(6)::after {
  content: "🔒";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .advantages {
	padding: 60px 0;
  }

  .advantages h2 {
	font-size: 2rem;
	margin-bottom: 40px;
  }

  .cards {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
  }

  .card {
	padding: 25px;
	min-height: 150px;
	font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .advantages {
	padding: 40px 0;
  }

  .advantages h2 {
	font-size: 1.8rem;
  }

  .cards {
	grid-template-columns: 1fr;
  }
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem auto;
}

.review {
  margin: 20px;
  border: 1px solid #5483b5;
  padding: 20px;
  text-align: left;
  border-radius: 20px;
  box-shadow: 2px 2px 5px #3c6891;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-header img {
  margin-right: 10px;
}

.footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #5a6fd1;
  transform: translateY(-3px);
}

section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 70px;
  color: #2c3e50;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.hero {
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero p {
  font-size: 1.5rem;
  color: #5a6a8a;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.review {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(105, 122, 217, 0.15);
  margin-bottom: 30px;
}

.review:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 2px solid var(--primary);
}

.review h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.review p {
  color: #5a6a8a;
  font-size: 1.1rem;
  line-height: 1.6;
}

.final-cta {
  color: white;
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  color: var(--text-light);
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.final-cta .btn-primary {
   display: inline-block;
  padding: 16px 60px;
  background: var(--primary);
  color: rgb(255, 255, 255);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease;
  align-self: center;
}

.final-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.footer {
  background-color: rgb(138, 150, 219);
  color: #18291bcc;
  padding: 40px 20px;
  border-top: 1px solid #44444400;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.footer-section h3 {
  color: #18291bcc;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1em;
  text-transform: uppercase;
}

.footer-section p,
.footer-section ul {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #18291bcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #0a140bec;
}


.footer-bottom {
  margin: 0;
  border-top: 1px solid #302ea08f;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 0.8em;
  margin: 0;
}

.footer-social img {
  width: 24px;
  height: 24px;
  margin-left: 15px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}

.footer-social a {
  text-decoration: none;
  color: #334e35;
}
.footer-section {
  text-align: left;
}

@media (max-width: 480px) {
  .footer-content {
	grid-template-columns: 1fr;
  }
  
  .footer-bottom {
	flex-direction: column;
	gap: 1rem;
	text-align: center;
  }
}



@media (max-width: 992px) {
  section {
	padding: 80px 0;
  }

  .section-title {
	font-size: 2.4rem;
	margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  section {
	padding: 60px 0;
  }

  .section-title {
	font-size: 2rem;
  }

  .hero h1 {
	font-size: 2.5rem;
  }

  .hero p {
	font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
	font-size: 1.8rem;
  }

  .hero h1 {
	font-size: 2rem;
  }

  .hero p {
	font-size: 1rem;
  }
}


@media (max-width: 768px) {

  .container {
    padding: 0 15px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .card {
    padding: 15px;
    font-size: 14px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .feature {
    padding: 15px;
  }
  
  .feature i {
    font-size: 24px;
  }

  .plans {
    flex-direction: column;
  }
  
  .plan {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .plan.best-value {
    transform: none;
  }
 
  .news-slider {
    padding: 0;
  }
  
  .slides-container {
    width: 100%;
    padding: 0 15px;
  }
  
  .slide {
    width: 85%;
    padding: 15px;
  }
  
  .slide img {
    height: 120px;
  }

  #reviews .container {
    padding: 0;
  }
  
  .review {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
  }
  
  .review-header {
    flex-direction: column;
    text-align: center;
  }
  
  .review-avatar {
    margin-bottom: 10px;
  }

  .prev, .next {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  

  .h2main {
    font-size: 24px;
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .news-slider {
    width: 100%;
    padding: 0 30px;
  }

  .slides {
    width: calc(100% * 6); /* Adjusted for 1 slide */
  }

  .slide {
    flex: 0 0 100%; /* 1 slide visible */
    padding: 15px;
    margin: 0 5px;
  }

  .slide img {
    height: 120px;
  }

  .slide h3 {
    font-size: 1.2rem;
  }

  .slide .description {
    font-size: 0.85rem;
  }

  .slide .author {
    font-size: 0.8rem;
  }

  .slide .tags a {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .prev,
  .next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .news-slider {
    padding: 0 20px;
  }

  .slide {
    padding: 10px;
  }

  .slide img {
    height: 100px;
  }

  .slide h3 {
    font-size: 1.1rem;
  }

  .slide .description {
    font-size: 0.8rem;
  }

  .slide .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .prev,
  .next {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .slide {
    width: 95%;
  }
  
  .slide h3 {
    font-size: 16px;
  }
  
  .tags a {
    font-size: 12px;
  }
  
  .price {
    font-size: 18px;
  }
  
  .btn-primary {
    padding: 8px 15px;
    font-size: 14px;
  }
}

:root {
  --parallax-before-y: 0px;
  --parallax-after-y: 0px;
}

body::before {
  transform: translateY(var(--parallax-before-y));
}

body::after {
  transform: translateY(var(--parallax-after-y));
}