/* Fonts */
:root {
  --default-font: "IM Fell DW Pica", serif;
  --heading-font: "IM Fell DW Pica", serif;
  --nav-font: "IM Fell DW Pica", 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: #f8f6f3;
  --default-color: #2d2a24;
  --heading-color: #1a4d3e;
  --accent-color: #2d7a5f;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #2d2a24;
  --nav-hover-color: #2d7a5f;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2d2a24;
  --nav-dropdown-hover-color: #2d7a5f;
  --footer-bg: #1a4d3e;
  --footer-newsletter: #2d7a5f;
}


/* 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: #f0ede8;
  --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: 'IM Fell DW Pica', 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;
}

/*--------------------------------------------------------------
# Footer Modern
--------------------------------------------------------------*/
.footer-modern {
  position: relative;
  background: linear-gradient(180deg, var(--footer-bg) 0%, color-mix(in srgb, var(--footer-bg) 95%, #000) 100%);
  color: var(--contrast-color);
  padding: 80px 0 30px;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
}

.footer-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(45, 122, 95, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 122, 95, 0.2) 0%, transparent 50%);
  animation: footerPatternMove 20s ease-in-out infinite;
}

@keyframes footerPatternMove {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-main-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--contrast-color);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--contrast-color) 70%, transparent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.footer-logo-modern:hover {
  transform: translateX(5px);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 122, 95, 0.4);
  color: var(--contrast-color);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-links-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

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

.footer-links-column ul li {
  margin-bottom: 12px;
}

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-column ul li a:hover {
  color: var(--contrast-color);
  transform: translateX(5px);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 992px) {
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 60px 0 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 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: 'IM Fell DW Pica', 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: "IM Fell DW Pica", 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;
  }
}

/*--------------------------------------------------------------
# Testimonials Modern Section
--------------------------------------------------------------*/
.testimonials-modern {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.testimonials-header p {
  font-size: 1.1rem;
  color: rgba(45, 42, 36, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 122, 95, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 60%, transparent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(45, 122, 95, 0.2);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-quote i {
  display: block;
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonial-info span {
  font-size: 0.9rem;
  color: rgba(45, 42, 36, 0.6);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .testimonials-modern {
    padding: 60px 0;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# 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: 'IM Fell DW Pica', 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
--------------------------------------------------------------*/


#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 220px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "IM Fell DW Pica", 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;
}

/*--------------------------------------------------------------
# Cookie Popup Modern
--------------------------------------------------------------*/
.cookie-popup-modern {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 10000;
  max-width: 600px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cookie-popup-modern[style*="display: flex"] {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.cookie-popup-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  opacity: 0.95;
}

.cookie-popup-content {
  position: relative;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color) 98%, var(--accent-color)) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(45, 122, 95, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-popup-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--contrast-color);
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
  animation: cookieIconPulse 2s ease-in-out infinite;
}

@keyframes cookieIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cookie-popup-text {
  text-align: center;
}

.cookie-popup-text h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.cookie-popup-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.cookie-popup-text a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-popup-text a:hover {
  color: color-mix(in srgb, var(--accent-color) 80%, transparent);
}

.cookie-popup-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(45, 122, 95, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 95, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--default-color);
  border: 2px solid rgba(45, 42, 36, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(45, 42, 36, 0.05);
  border-color: rgba(45, 42, 36, 0.5);
}

@media (max-width: 768px) {
  .cookie-popup-modern {
    bottom: 20px;
    width: calc(100% - 20px);
    max-width: none;
  }

  .cookie-popup-content {
    padding: 25px 20px;
  }

  .cookie-popup-actions {
    flex-direction: column;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Grows Section
--------------------------------------------------------------*/
.grows-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.grows-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a4d3e 0%, #0d2e24 50%, #1a4d3e 100%);
  z-index: -1;
}

.grows-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 122, 95, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.grows-header {
  margin-bottom: 60px;
}

.grows-header .section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.grows-header .section-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Animated Elements Container */
.grows-stats {
  margin-bottom: 80px;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.animated-elements-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-element {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(45, 122, 95, 0.6);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.floating-element:hover {
  opacity: 1;
  transform: scale(1.2);
  color: var(--accent-color);
}

.floating-element span {
  font-size: 3rem;
  display: block;
}

.floating-element-1 {
  top: 10%;
  left: 10%;
  animation: float1 8s ease-in-out infinite;
}

.floating-element-2 {
  top: 20%;
  right: 15%;
  animation: float2 10s ease-in-out infinite;
}

.floating-element-3 {
  top: 50%;
  left: 5%;
  animation: float3 12s ease-in-out infinite;
}

.floating-element-4 {
  top: 60%;
  right: 10%;
  animation: float4 9s ease-in-out infinite;
}

.floating-element-5 {
  top: 30%;
  left: 50%;
  animation: float5 11s ease-in-out infinite;
}

.floating-element-6 {
  bottom: 20%;
  left: 20%;
  animation: float6 10s ease-in-out infinite;
}

.floating-element-7 {
  top: 15%;
  left: 70%;
  animation: float7 13s ease-in-out infinite;
}

.floating-element-8 {
  bottom: 30%;
  right: 25%;
  animation: float8 9s ease-in-out infinite;
}

.floating-element-9 {
  top: 70%;
  left: 40%;
  animation: float9 11s ease-in-out infinite;
}

.floating-element-10 {
  bottom: 10%;
  right: 5%;
  animation: float10 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(3deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-40px, 20px) rotate(-8deg); }
  66% { transform: translate(30px, -25px) rotate(8deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(25px, 30px) rotate(6deg); }
  50% { transform: translate(-30px, -20px) rotate(-6deg); }
  75% { transform: translate(15px, 25px) rotate(4deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(35px, -30px) rotate(7deg); }
  66% { transform: translate(-25px, 20px) rotate(-7deg); }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-30px, 25px) rotate(-5deg); }
  50% { transform: translate(35px, -35px) rotate(5deg); }
  75% { transform: translate(-20px, 30px) rotate(-3deg); }
}

@keyframes float6 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, 30px) rotate(9deg); }
  66% { transform: translate(-35px, -25px) rotate(-9deg); }
}

@keyframes float7 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-25px, -30px) rotate(-6deg); }
  50% { transform: translate(30px, 25px) rotate(6deg); }
  75% { transform: translate(-15px, -20px) rotate(-4deg); }
}

@keyframes float8 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -35px) rotate(8deg); }
  66% { transform: translate(-40px, 30px) rotate(-8deg); }
}

@keyframes float9 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-35px, 20px) rotate(-7deg); }
  50% { transform: translate(25px, -30px) rotate(7deg); }
  75% { transform: translate(-20px, 35px) rotate(-5deg); }
}

@keyframes float10 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, -25px) rotate(-6deg); }
  66% { transform: translate(35px, 30px) rotate(6deg); }
}

/* Rotating Circle */
.rotating-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  animation: rotateCircle 20s linear infinite;
}

.circle-item {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateItem 20s linear infinite reverse;
}

.circle-item-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
}

.circle-item-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(100px);
}

.circle-item-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
}

.circle-item-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-100px);
}

.circle-item-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(70px, -70px);
}

.circle-item-6 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-70px, 70px);
}

@keyframes rotateCircle {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateItem {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Moving Waves */
.moving-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(45, 122, 95, 0.1), transparent);
  border-radius: 50%;
}

.wave-1 {
  animation: wave1 8s ease-in-out infinite;
  opacity: 0.3;
}

.wave-2 {
  animation: wave2 10s ease-in-out infinite;
  opacity: 0.2;
  height: 80px;
}

.wave-3 {
  animation: wave3 12s ease-in-out infinite;
  opacity: 0.15;
  height: 60px;
}

@keyframes wave1 {
  0% { transform: translateX(-50%) translateY(0); }
  25% { transform: translateX(-30%) translateY(-20px); }
  50% { transform: translateX(-50%) translateY(0); }
  75% { transform: translateX(-70%) translateY(-20px); }
  100% { transform: translateX(-50%) translateY(0); }
}

@keyframes wave2 {
  0% { transform: translateX(-50%) translateY(0); }
  25% { transform: translateX(-40%) translateY(-15px); }
  50% { transform: translateX(-50%) translateY(0); }
  75% { transform: translateX(-60%) translateY(-15px); }
  100% { transform: translateX(-50%) translateY(0); }
}

@keyframes wave3 {
  0% { transform: translateX(-50%) translateY(0); }
  25% { transform: translateX(-45%) translateY(-10px); }
  50% { transform: translateX(-50%) translateY(0); }
  75% { transform: translateX(-55%) translateY(-10px); }
  100% { transform: translateX(-50%) translateY(0); }
}

/* Progress Container */
.grows-interactive {
  margin-bottom: 60px;
}

.grows-interactive h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.grows-interactive p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

.progress-item {
  margin-bottom: 25px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--contrast-color);
  font-weight: 600;
}

.progress-percent {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: bold;
}

.progress-bar-wrapper {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #3d9a7a);
  border-radius: 10px;
  width: 0;
  transition: width 2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Language Cards */
.language-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.language-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.language-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(45, 122, 95, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.language-card:hover::before {
  width: 300px;
  height: 300px;
}

.language-card:hover {
  transform: translateX(10px) scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(45, 122, 95, 0.4);
}

.language-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.language-card:hover .language-icon {
  transform: scale(1.2) rotate(10deg);
}

.language-card h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.language-level {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.language-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.language-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #3d9a7a);
  border-radius: 10px;
  transition: width 1s ease-in-out;
  position: relative;
}

.language-card:hover .language-progress-bar {
  animation: progress-glow 1.5s ease-in-out infinite;
}

@keyframes progress-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(45, 122, 95, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(45, 122, 95, 0.8);
  }
}

/* CTA Button */
.grows-cta {
  margin-top: 60px;
}

.btn-grows {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--accent-color), #3d9a7a);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(45, 122, 95, 0.3);
}

.btn-grows::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-grows:hover::before {
  width: 300px;
  height: 300px;
}

.btn-grows:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(45, 122, 95, 0.5);
}

.btn-grows:active {
  transform: translateY(-1px) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .grows-header .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .language-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Modern Pricing Section
--------------------------------------------------------------*/
.pricing-modern {
  padding: 100px 0;
  position: relative;
}

.pricing-header {
  margin-bottom: 50px;
}

.pricing-header .section-title {
  font-size: 3rem;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.pricing-header .section-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Pricing Toggle */
.pricing-toggle-container {
  margin-bottom: 60px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.toggle-label {
  color: var(--contrast-color);
  font-size: 1rem;
  font-weight: 600;
}

.toggle-label .badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 5px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: 0.4s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: var(--contrast-color);
  border-radius: 50%;
  transition: 0.4s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-color);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

/* Pricing Cards */
.pricing-cards {
  margin-top: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 122, 95, 0.1), transparent);
  transition: left 0.6s;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(45, 122, 95, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  background: rgba(45, 122, 95, 0.1);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 25px 50px rgba(45, 122, 95, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(45, 122, 95, 0.2);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-badge.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(5deg);
}

.pricing-title {
  font-size: 1.8rem;
  color: var(--contrast-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-price {
  margin-bottom: 20px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 5px;
}

.pricing-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease;
}

.pricing-features li:hover {
  transform: translateX(5px);
}

.pricing-features li i {
  font-size: 1.2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  opacity: 0.5;
}

.pricing-features li.disabled i {
  color: rgba(255, 255, 255, 0.3);
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 30px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.pricing-btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.pricing-btn.featured-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-btn.featured-btn::before {
  background: rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
# Modern Hero Section
--------------------------------------------------------------*/
.hero-modern {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e5e0 50%, #f8f6f3 100%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation: particleFloat1 15s ease-in-out infinite;
}

.particle-2 {
  top: 60%;
  left: 20%;
  animation: particleFloat2 18s ease-in-out infinite;
}

.particle-3 {
  top: 40%;
  right: 15%;
  animation: particleFloat3 20s ease-in-out infinite;
}

.particle-4 {
  bottom: 30%;
  left: 50%;
  animation: particleFloat4 16s ease-in-out infinite;
}

.particle-5 {
  top: 10%;
  right: 30%;
  animation: particleFloat5 22s ease-in-out infinite;
}

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, 30px); }
  75% { transform: translate(40px, 20px); }
}

@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-35px, 25px); }
  66% { transform: translate(25px, -35px); }
}

@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-25px, -30px); }
  50% { transform: translate(35px, 20px); }
  75% { transform: translate(-15px, 40px); }
}

@keyframes particleFloat4 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -25px); }
  66% { transform: translate(-30px, 35px); }
}

@keyframes particleFloat5 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 30px); }
  50% { transform: translate(30px, -20px); }
  75% { transform: translate(-35px, -25px); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 122, 95, 0.1);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(45, 122, 95, 0.2);
}

.hero-badge i {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-title .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(45, 122, 95, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--contrast-color);
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-stat-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 30px rgba(45, 122, 95, 0.5);
}

.hero-stat-icon:hover::before {
  opacity: 1;
}

.hero-stat-icon i {
  position: relative;
  z-index: 1;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), #3d9a7a);
  color: var(--contrast-color);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(45, 122, 95, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45, 122, 95, 0.4);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(45, 122, 95, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  border: 1px solid rgba(45, 122, 95, 0.2);
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.floating-card span {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.card-1 {
  top: 10%;
  left: -10%;
  animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
  top: 50%;
  right: -5%;
  animation: floatCard2 8s ease-in-out infinite;
}

.card-3 {
  bottom: 15%;
  left: 5%;
  animation: floatCard3 7s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -15px) rotate(3deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, 10px) rotate(-3deg); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, -10px) rotate(2deg); }
}

/*--------------------------------------------------------------
# Modern Features Section
--------------------------------------------------------------*/
.features-modern {
  padding: 100px 0;
  background: var(--background-color);
}

.features-header {
  margin-bottom: 60px;
}

.features-header .section-title {
  font-size: 3rem;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.features-header .section-description {
  font-size: 1.2rem;
  color: rgba(45, 42, 36, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  margin-top: 40px;
}

.feature-card {
  background: var(--surface-color);
  border: 2px solid rgba(45, 122, 95, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #3d9a7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(45, 122, 95, 0.2);
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 122, 95, 0.1), rgba(45, 122, 95, 0.05));
  border-radius: 20px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
  transform: rotate(135deg);
}

.feature-icon {
  position: relative;
  font-size: 2.5rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.feature-description {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1rem;
}

.feature-link {
  text-align: center;
}

.feature-link a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-link a:hover {
  gap: 12px;
  color: #3d9a7a;
}

.feature-link a i {
  transition: transform 0.3s ease;
}

.feature-link a:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 80px 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .floating-card {
    display: none;
  }
  
  .pricing-header .section-title {
    font-size: 2rem;
  }
  
  .features-header .section-title {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.about-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.about-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.mission-modern {
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}

.mission-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.mission-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mission-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.mission-stat-text h4 {
  margin: 0 0 5px;
  color: var(--heading-color);
}

.mission-stat-text p {
  margin: 0;
  color: rgba(45, 42, 36, 0.7);
  font-size: 0.9rem;
}

.mission-visual {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mission-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 122, 95, 0.1);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 122, 95, 0.15);
}

.mission-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.mission-card h3 {
  margin: 0 0 10px;
  color: var(--heading-color);
}

.mission-card p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
}

.about-features {
  padding: 100px 0;
  background: var(--background-color);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.about-feature-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 122, 95, 0.1);
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(45, 122, 95, 0.2);
}

.about-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--contrast-color);
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
}

.about-feature-card h4 {
  margin: 0 0 15px;
  color: var(--heading-color);
}

.about-feature-card p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
}

.approach-modern {
  padding: 100px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.approach-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.approach-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
}

.approach-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.approach-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.approach-card-header h4 {
  margin: 0;
  color: var(--contrast-color);
}

.approach-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.contact-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 122, 95, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 122, 95, 0.15);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  color: var(--heading-color);
}

.contact-info-card p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-form-wrapper-modern {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 122, 95, 0.1);
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(45, 122, 95, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--default-font);
  background: var(--background-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(45, 122, 95, 0.1);
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit-modern {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: var(--default-font);
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
}

.support-modern {
  padding: 100px 0;
  background: var(--background-color);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.support-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 122, 95, 0.1);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(45, 122, 95, 0.2);
}

.support-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--contrast-color);
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
}

.support-card h4 {
  margin: 0 0 15px;
  color: var(--heading-color);
}

.support-card p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.faq-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.faq-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.faq-modern {
  padding: 100px 0;
}

.faq-container-modern {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-modern {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(45, 122, 95, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  box-shadow: 0 4px 20px rgba(45, 122, 95, 0.1);
}

.faq-header-modern {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header-modern:hover {
  background: rgba(45, 122, 95, 0.05);
}

.faq-icon-modern {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-header-modern h3 {
  flex: 1;
  margin: 0;
  color: var(--heading-color);
  font-size: 1.2rem;
}

.faq-toggle-modern {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item-modern.faq-active .faq-toggle-modern {
  transform: rotate(90deg);
}

.faq-content-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item-modern.faq-active .faq-content-modern {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-content-modern p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
}

.help-modern {
  padding: 100px 0;
  background: var(--background-color);
}

.help-content {
  max-width: 700px;
  margin: 0 auto;
}

.help-description {
  font-size: 1.1rem;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Policy Pages Styles
--------------------------------------------------------------*/
.policy-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.policy-hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--contrast-color);
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(45, 122, 95, 0.3);
}

.policy-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.policy-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.policy-content {
  padding: 100px 0;
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 50px;
}

.policy-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.policy-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--default-color);
  line-height: 1.7;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.policy-contact {
  background: rgba(45, 122, 95, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.policy-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.thanks-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--contrast-color);
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(45, 122, 95, 0.3);
  animation: thanksIconPulse 2s ease-in-out infinite;
}

@keyframes thanksIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thanks-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.thanks-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.thanks-content {
  padding: 100px 0;
}

.thanks-content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-thanks-primary,
.btn-thanks-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.btn-thanks-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, transparent));
  color: var(--contrast-color);
}

.btn-thanks-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 122, 95, 0.3);
  color: var(--contrast-color);
}

.btn-thanks-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-thanks-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .form-row-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title,
  .policy-hero-title,
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .btn-thanks-primary,
  .btn-thanks-secondary {
    width: 100%;
    justify-content: center;
  }
}