/* Fonts */
:root {
  --default-font: "Sniglet";
  --heading-font: "Sniglet", sans-serif;
  --nav-font: "Sniglet", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2c3c3a;
  --accent-color: #3273ff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #212529;
  --nav-hover-color: #5777ba;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #5777ba;
  --footer-bg: #101820;
  --footer-newsletter: #1a1f2b;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f5fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.5px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(135deg, #101820, #1a1f2b);
  color: #ffffff;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header .btn-getstarted:hover {
  background: linear-gradient(135deg, #3700b3, #8e2de2);
  transform: scale(1.05);
}

/* Desktop Nav */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    margin: 0 1rem 0 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #101820;
    transition: width 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #101820;
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    width: 100%;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }
}

/* Sticky effect on scroll */
.scrolled .header {
  background-color: #fefefe;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Responsive elements */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 18px;
    font-size: 14px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* General Footer Styling */
.footer-section {
  background: #0d0c1f;
  color: #d1c5ff;
  font-family: 'Sniglet', sans-serif;
  padding: 0;
}

.footer-newsletter-dark {
  background: #150f2d;
  border-top: 4px solid #6943ff;
  padding: 60px 20px;
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #d1c5ff;
}

.newsletter-box p {
  color: #a99acb;
  font-size: 15px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 12px 18px;
  flex: 1 1 250px;
  border: 1px solid #6943ff;
  background: transparent;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
}

.newsletter-form button {
  background: #6943ff;
  border: none;
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #4720d9;
}

.status {
  font-size: 14px;
  margin-top: 10px;
}

.footer-main {
  border-top: 1px solid rgba(157, 122, 255, 0.2);
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #d1c5ff;
  text-decoration: none;
}

.footer-contact p {
  font-size: 15px;
  margin-top: 15px;
  color: #b5a9dd;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(157, 122, 255, 0.3);
  padding-bottom: 5px;
  color: #d1c5ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul a {
  text-decoration: none;
  color: #a99acb;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul a:hover {
  color: #fff;
}

.footer-column p {
  font-size: 14px;
  color: #a99acb;
  line-height: 1.6;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-reimagined {
  background: #fafaff;
  padding: 10rem 20px 10rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: 'Sniglet', sans-serif;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 0, 255, 0.08), rgba(0, 0, 255, 0.05));
  z-index: 1;
  animation: pulse 6s infinite ease-in-out;
}

.hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a2bbf;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1f1147;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: #4e4e6a;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-solid {
  background: linear-gradient(135deg, #6b0de4, #3a7cff);
  color: #fff;
  padding: 14px 36px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(107, 13, 228, 0.3);
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background: #4b11b6;
  box-shadow: 0 12px 24px rgba(75, 17, 182, 0.4);
}

.btn-outline {
  border: 2px solid #6b0de4;
  color: #6b0de4;
  padding: 14px 36px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #6b0de4;
  color: #fff;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section-dark {
  background: #0d0d12;
  padding: 80px 20px;
  color: #d1cde8;
}

.about-dark-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.about-dark-content {
  flex: 1 1 500px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #9e85ff;
}

.section-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #bcb4dd;
  line-height: 1.6;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.about-box {
  border: 1px solid rgba(132, 94, 247, 0.3);
  background: rgba(60, 50, 100, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 28px;
  color: #b387ff;
}

.feature-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #c3b5ff;
}

.feature-info p {
  margin: 0;
  color: #bcb4dd;
  font-size: 15px;
  line-height: 1.5;
}

.btn-about-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #542bbd, #8e44ec);
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-about-dark:hover {
  background: linear-gradient(135deg, #3700b3, #7c4dff);
  transform: translateY(-2px);
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-about-dark:hover .arrow {
  transform: translateX(5px);
}

.about-dark-image {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
}

.about-dark-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.image-background-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 768px) {
  .about-dark-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-dark-image {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-evolve {
  background: #fdfdff;
  padding: 100px 20px;
  font-family: "Sniglet", sans-serif;
  color: #1a1a1a;
}

.features-evolve .features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-evolve h2 {
  font-size: 38px;
  font-weight: 800;
  color: #5e2dd1;
}

.features-evolve .features-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
}

.features-evolve .features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  border: 1px solid rgba(132, 94, 247, 0.3);
  background: rgba(60, 50, 100, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: scale(1.5);
  box-shadow: 0 12px 24px rgba(132, 94, 247, 0.3);
}

.feature-icon {
  display: inline-block;
  font-size: 36px;
  color: #8e2de2;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3700b3;
  font-weight: 700;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .features-evolve {
    padding: 60px 15px;
  }

  .features-evolve h2 {
    font-size: 30px;
  }

  .feature-box {
    padding: 24px 18px;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: 400px;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
:root {
  --accent-color: #6a4eff; /* пурпурно-синий */
  --accent-color-dark: #4829b2;
  --background-color: #121226;
  --contrast-color: #e0e0ff;
  --text-color: #b0b3d9;
  --white: #f5f5ff;
}

.testimonials {
  padding: 40px 0;
  background-color: var(--background-color);
}

.testimonials .testimonial-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.testimonials .testimonial-item {
  background: #1f1f3d;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(106, 78, 255, 0.5);
  padding: 32px;
  margin: 0 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--contrast-color);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(106, 78, 255, 0.8);
}

.testimonials .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 4px;
  color: var(--accent-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color-dark);
  opacity: 0.85;
  margin: 0 0 12px;
}

.testimonials .testimonial-item .stars i {
  color: #a281ff;
  margin: 0 2px;
}

.testimonials .testimonial-item p {
  font-size: 15px;
  line-height: 1.6;
  font-style: normal;
  color: var(--text-color);
  margin: 0;
}

.testimonials .swiper-pagination {
  margin-top: 24px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  opacity: 0.3;
  margin: 0 4px;
  transition: opacity 0.3s;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding: 0 10px;
  }

  .testimonials .testimonial-item {
    padding: 24px;
    margin: 0 8px;
  }

  .testimonials .testimonial-img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
}



/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
:root {
  --dark-bg: #0c0f1a;
  --accent-color: #6c4eff;
  /* пурпурно-синий */
  --accent-color-light: rgba(108, 78, 255, 0.15);
  --text-color: #d8d8ff;
  --heading-font: 'Sniglet', Tahoma, Geneva, Verdana, sans-serif;
  --contrast-color: #ffffff;
  --border-color: #6c4eff;
}

.pricing.section {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 80px 15px;
  font-family: var(--heading-font);
}

.pricing .section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent-color);
  text-align: center;
}

.pricing .section-title p {
  font-size: 1.25rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 50px auto;
  text-align: center;
  opacity: 0.7;
}

.pricing .pricing-item {
  background: rgba(108, 78, 255, 0.05);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 50px 35px;
  height: 100%;
  box-shadow: 0 0 20px var(--accent-color-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.pricing .pricing-item:hover {
  box-shadow: 0 0 40px var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-10px);
}

.pricing h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-align: center;
}

.pricing h4 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

.pricing h4 sup {
  font-size: 1.8rem;
  vertical-align: top;
}

.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.5;
  border-top: 2px solid var(--border-color);
  padding-top: 20px;
  transition: border-color 0.3s ease;
}

.pricing ul li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}

.pricing ul li:last-child {
  border-bottom: none;
}

.pricing ul li i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing ul li.na {
  opacity: 0.5;
}

.pricing ul li.na i {
  color: #8a84c7;
}

.pricing ul li.na span {
  text-decoration: line-through;
  color: #8a84c7;
}

.pricing .buy-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  font-size: 1.2rem;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 40px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing .featured {
  position: relative;
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  box-shadow: 0 0 35px var(--accent-color);
  transform: scale(1.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing .featured .pricing-item:hover {
  box-shadow: 0 0 50px var(--accent-color);
  transform: scale(1.1);
}

.pricing .featured h3,
.pricing .featured ul li,
.pricing .featured h4 {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 991px) {
  .pricing .pricing-item {
    padding: 40px 30px;
  }

  .pricing h4 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing h4 {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
:root {
  --dark-bg: #0c0f1a;
  --accent-color: #6c4eff;
  --accent-color-light: rgba(108, 78, 255, 0.15);
  --text-color: #d8d8ff;
  --contrast-color: #fff;
  --border-color: #6c4eff;
  --faq-bg: rgba(108, 78, 255, 0.05);
  --faq-border: rgba(108, 78, 255, 0.3);
  --heading-font: 'Sniglet', Tahoma, Geneva, Verdana, sans-serif;
}

.faq.section {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 60px 0;
  font-family: var(--heading-font);
}

.faq .section-title h2 {
  color: var(--accent-color);
  font-weight: 800;
  font-size: 2.75rem;
  margin-bottom: 10px;
}

.faq .section-title p {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.faq-container {
  margin-top: 30px;
}

.faq-item {
  background-color: var(--faq-bg);
  border: 2px solid var(--faq-border);
  border-radius: 16px;
  padding: 24px 24px 16px 24px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(108, 78, 255, 0.1);
  transition: all 0.3s ease;
  color: var(--text-color);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(108, 78, 255, 0.3);
  border-color: var(--accent-color);
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.faq-item h3:hover {
  color: var(--contrast-color);
}

.faq-toggle {
  position: absolute;
  right: 24px;
  top: 28px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--accent-color);
}

.faq-toggle:hover {
  color: var(--contrast-color);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 36px;
  padding-top: 0;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.faq-content p {
  margin: 0;
}

.faq-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px var(--accent-color);
}

.faq-active h3,
.faq-active .faq-icon,
.faq-active .faq-toggle {
  color: var(--contrast-color);
}

.faq-active .faq-content {
  max-height: 300px;
  opacity: 1;
  padding-top: 12px;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .faq-item {
    padding: 20px 16px 14px 16px;
  }

  .faq-toggle {
    top: 24px;
    right: 16px;
  }

  .faq-item h3 {
    font-size: 16px;
    padding-left: 32px;
  }

  .faq-content {
    padding-left: 32px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
:root {
  --contact-bg: #0b0e1a;
  --contact-card: rgba(255, 255, 255, 0.04);
  --contact-border: rgba(132, 94, 247, 0.3);
  --contact-text: #cfcaf5;
  --contact-accent: #7a5fff;
  --contact-white: #fff;
}

.contact-modern {
  background-color: var(--contact-bg);
  color: var(--contact-text);
  padding: 80px 20px;
  font-family: 'Sniglet', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--contact-white);
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--contact-text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card {
  background-color: var(--contact-card);
  border: 1px solid var(--contact-border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
}

.info-icon i {
  font-size: 2.5rem;
  color: var(--contact-accent);
  margin-bottom: 15px;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--contact-border);
  border-left: 4px solid var(--contact-accent);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--contact-white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(132, 94, 247, 0.2);
  background: #111426;
  color: var(--contact-white);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px rgba(132, 94, 247, 0.2);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-actions {
  text-align: right;
}

.btn-submit {
  background-color: var(--contact-accent);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #674ff6;
}

.form-status {
  font-size: 0.95rem;
  color: var(--contact-text);
  text-align: center;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Sniglet", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  /* Start invisible */
  transform: translateY(30px);
  /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: #0056b3;
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}