/* Fonts */
:root {
  --default-font: "Saira Condensed", sans-serif;
  --heading-font: "Saira Condensed", sans-serif;
  --nav-font: "Saira Condensed", 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: #0c0a14;
  --default-color: #f3f0ff;
  --heading-color: #e9ddff;
  --accent-color: #a559ff;
  --accent-color-light: #d7b7ff;
  --accent-color-dark: #7a2bd9;
  --surface-color: #161125;
  --contrast-color: #06060c;
  --nav-color: #f3f0ff;
  --nav-hover-color: #a559ff;
  --nav-mobile-background-color: #120f1e;
  --nav-dropdown-background-color: #120f1e;
  --nav-dropdown-color: #f3f0ff;
  --nav-dropdown-hover-color: #a559ff;
  --footer-bg: #080914;
  --footer-newsletter: #100e1d;
  --dark-gray: #080914;
  --medium-gray: #100e1d;
  --light-gray: #18122a;
  --lighter-gray: #201b35;
  --light-green: #d7b7ff;
  --medium-green: #a559ff;
  --dark-green: #7a2bd9;
}


/* 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: #192033;
  --surface-color: #1f2940;
}

.dark-background {
  --background-color: #0a0d13;
  --default-color: #f4efe7;
  --heading-color: #ffe0b5;
  --surface-color: #141a25;
  --contrast-color: #0f131b;
}

/* 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: linear-gradient(135deg, rgba(20, 25, 37, 0.96) 0%, rgba(10, 12, 18, 0.96) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-bottom: 1px solid rgba(165, 89, 255, 0.25);
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.header .logo:hover h1 {
  transform: scale(1.05);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: #ffffff;
  color: var(--accent-color);
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header .btn-getstarted svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header .btn-getstarted:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  color: var(--accent-color-dark);
}

.header .btn-getstarted:hover svg {
  transform: translateX(3px);
}

/* 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: 15px;
    color: rgba(232, 232, 232, 0.9);
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navmenu a svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
  }

  .navmenu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .navmenu a:hover svg {
    opacity: 1;
    transform: scale(1.1);
  }

  .navmenu a:hover::before,
  .navmenu .active::before {
    width: 60%;
  }

  .navmenu .active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
  }

  .navmenu .active svg {
    opacity: 1;
  }

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

/* Sticky effect on scroll */
.scrolled .header {
  background: linear-gradient(135deg, rgba(20, 25, 37, 0.99) 0%, rgba(10, 12, 18, 0.99) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}

.scrolled .header .navmenu a {
  color: rgba(232, 232, 232, 0.95);
}

/* 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;
    display: none;
  }
  
  .mobile-menu-toggle {
    order: 3;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(165, 89, 255, 0.15);
    border: 2px solid rgba(165, 89, 255, 0.3);
    border-radius: 12px;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
  }

  .mobile-menu-toggle:hover {
    background: rgba(165, 89, 255, 0.25);
    border-color: var(--accent-color);
    transform: scale(1.05);
  }

  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(180deg, #141a25 0%, #0b0f17 100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 89, 255, 0.15);
  border: 2px solid rgba(165, 89, 255, 0.3);
  border-radius: 12px;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.mobile-menu-close:hover {
  background: rgba(165, 89, 255, 0.25);
  border-color: var(--accent-color);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-nav {
  padding: 80px 0 40px;
}

.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(165, 89, 255, 0.16);
}

.mobile-menu-nav li:last-child {
  border-bottom: none;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: var(--default-color);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Merriweather Sans', sans-serif;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: rgba(165, 89, 255, 0.1);
  color: var(--accent-color);
  padding-left: 32px;
}

.mobile-menu-nav a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.mobile-menu-nav a:hover svg,
.mobile-menu-nav a.active svg {
  opacity: 1;
  transform: scale(1.1);
}

.mobile-menu-nav a span {
  flex: 1;
}

body.mobile-menu-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Global Footer (revamped)
--------------------------------------------------------------*/
.footer-section {
  background: linear-gradient(180deg, #090c14 0%, #0c101a 100%);
  color: #e0e0e0;
  font-family: 'Merriweather Sans', sans-serif;
  padding: 0;
  border-top: 3px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-newsletter-dark {
  background: linear-gradient(135deg, rgba(165, 89, 255, 0.08) 0%, rgba(20, 24, 36, 0.6) 100%);
  border-top: 2px solid rgba(165, 89, 255, 0.3);
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter-dark::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.18), transparent 60%);
  filter: blur(70px);
  opacity: 0.7;
}

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

.newsletter-box h2 {
  font-size: clamp(30px, 4vw, 38px);
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.newsletter-form input[type="email"] {
  padding: 14px 18px;
  flex: 1 1 280px;
  border: 1px solid rgba(165, 89, 255, 0.35);
  background: rgba(17, 23, 34, 0.85);
  color: #fff;
  border-radius: 16px;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(17, 23, 34, 0.95);
  box-shadow: 0 0 0 4px rgba(165, 89, 255, 0.18);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border: none;
  color: var(--dark-gray);
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.32);
  letter-spacing: 0.02em;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(165, 89, 255, 0.4);
}

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

.footer-main {
  border-top: 1px solid rgba(165, 89, 255, 0.16);
  padding: 70px 20px 40px;
  background: rgba(0, 0, 0, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-contact p {
  font-size: 15px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-contact strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.footer-company-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(165, 89, 255, 0.1);
}

.footer-company-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 8px 0;
}

.footer-company-info strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

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

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

.footer-column ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-column ul a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-column ul a:hover {
  color: #ffffff;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-column ul a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-column p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}


/*--------------------------------------------------------------
# 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 svg {
  width: 24px;
  height: 24px;
  color: var(--contrast-color);
}

.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 (revamped)
--------------------------------------------------------------*/
.hero-modern {
  background: radial-gradient(circle at 20% 20%, rgba(165, 89, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(165, 89, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #0b0f17 0%, #111827 100%);
  padding: 140px 20px 120px;
  position: relative;
  overflow: hidden;
  font-family: 'Merriweather Sans', sans-serif;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 40px 20px;
  border: 1px solid rgba(165, 89, 255, 0.12);
  border-radius: 32px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(165, 89, 255, 0.05) 0%, transparent 40%, rgba(165, 89, 255, 0.06) 70%, transparent 100%);
  mix-blend-mode: screen;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  filter: blur(70px);
  opacity: 0.6;
  animation: heroFloat 18s infinite ease-in-out;
}

.hero-orb-1 {
  width: 540px;
  height: 540px;
  background: conic-gradient(from 120deg, rgba(165, 89, 255, 0.4), rgba(165, 89, 255, 0.05), transparent);
  top: -180px;
  left: -160px;
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.3), transparent 65%);
  bottom: -120px;
  right: -140px;
  animation-delay: 4s;
}

.hero-orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.18), transparent 60%);
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  animation-delay: 8s;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(22px, -18px);
  }
  66% {
    transform: translate(-18px, 16px);
  }
}

.hero-inner-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-modern {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  text-transform: uppercase;
}

.hero-badge .icon-badge {
  color: var(--accent-color);
}

.hero-title-modern {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--heading-color);
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-modern {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.86);
  max-width: 640px;
  margin: 0;
}

.hero-cta-modern {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  border-radius: 18px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(165, 89, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.btn-primary-modern:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 46px rgba(165, 89, 255, 0.45);
}

.btn-primary-modern .icon-arrow {
  transition: transform 0.3s ease;
}

.btn-primary-modern:hover .icon-arrow {
  transform: translateX(5px);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: rgba(165, 89, 255, 0.1);
  border: 1px solid rgba(165, 89, 255, 0.35);
  color: var(--accent-color);
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.btn-secondary-modern:hover {
  background: rgba(165, 89, 255, 0.18);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.7);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-visual-modern {
  position: relative;
  height: 520px;
}

.hero-visual-modern::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(165, 89, 255, 0.06), rgba(165, 89, 255, 0.02));
  border: 1px solid rgba(165, 89, 255, 0.18);
  filter: blur(0.5px);
}

.hero-card {
  position: absolute;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(165, 89, 255, 0.28);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(165, 89, 255, 0.28);
  border-color: rgba(165, 89, 255, 0.45);
}

.hero-card-1 {
  top: 18%;
  left: 4%;
  width: 52%;
  transform: rotate(-4deg);
}

.hero-card-2 {
  top: 6%;
  right: 2%;
  width: 48%;
  transform: rotate(3deg);
}

.hero-card-3 {
  bottom: 4%;
  left: 18%;
  width: 64%;
  transform: rotate(-1deg);
}

.hero-card .icon-feature {
  color: var(--accent-color);
  width: 44px;
  height: 44px;
}

.hero-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 992px) {
  .hero-modern {
    padding: 110px 20px 90px;
    min-height: auto;
  }

  .hero-inner-modern {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content-modern {
    margin: 0 auto;
    align-items: center;
  }

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

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

  .hero-visual-modern {
    height: 420px;
  }

  .hero-card {
    position: relative;
    transform: none;
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 90px 18px 70px;
  }

  .hero-title-modern {
    font-size: 34px;
  }

  .hero-description-modern {
    font-size: 17px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .hero-card {
    padding: 22px;
  }
}


/*--------------------------------------------------------------
# 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 (revamped)
--------------------------------------------------------------*/
.features-modern {
  background: linear-gradient(180deg, #0e121c 0%, #0b0f17 100%);
  padding: 120px 20px;
  font-family: "Merriweather Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.features-modern::before {
  content: "";
  position: absolute;
  inset: 60px 8% 40px 8%;
  border: 1px solid rgba(165, 89, 255, 0.1);
  border-radius: 28px;
  pointer-events: none;
}

.features-modern::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.2), transparent 65%);
  filter: blur(60px);
  opacity: 0.8;
}

.features-header-modern {
  text-align: center;
  margin-bottom: 90px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.features-badge .icon-sparkle {
  color: var(--accent-color);
}

.features-title-modern {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 18px 0;
  line-height: 1.2;
}

.features-subtitle-modern {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.82);
  line-height: 1.7;
  margin: 0;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card-modern {
  background: linear-gradient(160deg, rgba(15, 18, 30, 0.9) 0%, rgba(22, 27, 41, 0.9) 100%);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

.feature-card-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(165, 89, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card-modern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
  transition: width 0.35s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(165, 89, 255, 0.22);
  border-color: rgba(165, 89, 255, 0.4);
}

.feature-card-modern:hover::before {
  opacity: 1;
}

.feature-card-modern:hover::after {
  width: 100%;
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.feature-card-modern:hover .feature-icon-wrapper {
  transform: translateY(-3px) rotate(-3deg);
  background: rgba(165, 89, 255, 0.22);
  border-color: rgba(165, 89, 255, 0.38);
}

.feature-icon-svg {
  color: var(--accent-color);
  width: 42px;
  height: 42px;
}

.feature-card-modern h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.feature-card-modern p {
  font-size: 15.5px;
  color: rgba(232, 232, 232, 0.82);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .features-modern {
    padding: 80px 20px;
  }

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

  .features-title-modern {
    font-size: 32px;
  }

  .features-subtitle-modern {
    font-size: 17px;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card-modern {
    padding: 28px 24px;
  }
}

/*--------------------------------------------------------------
# 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 (revamped)
--------------------------------------------------------------*/
.testimonials {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b0f17 0%, #0f1522 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 50px 8% 40px 8%;
  border: 1px solid rgba(165, 89, 255, 0.1);
  border-radius: 28px;
  pointer-events: none;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.2), transparent 60%);
  filter: blur(70px);
  opacity: 0.75;
}

.testimonials .section-title {
  margin-bottom: 70px;
}

.testimonials .section-title h2 {
  color: var(--heading-color);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.testimonials .section-title p {
  color: rgba(232, 232, 232, 0.82);
  font-size: 17.5px;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials .testimonial-wrap {
  padding: 0 10px;
}

.testimonials .testimonial-item {
  background: linear-gradient(150deg, rgba(16, 22, 34, 0.92), rgba(22, 29, 43, 0.92));
  border-radius: 22px;
  border: 1px solid rgba(165, 89, 255, 0.24);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  padding: 34px 30px;
  margin: 0 12px;
  min-height: 280px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--default-color);
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(165, 89, 255, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonials .testimonial-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
  transition: width 0.35s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 60px rgba(165, 89, 255, 0.24);
  border-color: rgba(165, 89, 255, 0.42);
}

.testimonials .testimonial-item:hover::before {
  opacity: 1;
}

.testimonials .testimonial-item:hover::after {
  width: 100%;
}

.testimonials .testimonial-img {
  grid-row: 1 / span 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(165, 89, 255, 0.28);
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(165, 89, 255, 0.35);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(232, 232, 232, 0.65);
  margin: 4px 0 10px 0;
}

.testimonials .testimonial-item .stars {
  display: flex;
  gap: 6px;
  margin: 0;
  align-items: center;
}

.testimonials .testimonial-item .stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
  fill: var(--accent-color);
}

.testimonials .testimonial-item p {
  grid-column: 1 / -1;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.86);
  margin: 8px 0 0 0;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 34px;
  text-align: center;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(165, 89, 255, 0.35);
  opacity: 0.55;
  margin: 0 5px;
  transition: all 0.3s;
  border-radius: 50%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
  transform: scale(1.2);
}

@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;
  }
}

/*--------------------------------------------------------------
# How It Works Section (revamped)
--------------------------------------------------------------*/
.how-it-works {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b0f17 0%, #0f1522 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  inset: 50px 8% 50px 8%;
  border: 1px solid rgba(165, 89, 255, 0.1);
  border-radius: 28px;
  pointer-events: none;
}

.how-it-works::after {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.18), transparent 60%);
  filter: blur(70px);
  opacity: 0.7;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1180px;
  margin: 60px auto 0;
}

.how-it-works-item {
  background: linear-gradient(145deg, rgba(16, 22, 34, 0.92) 0%, rgba(22, 29, 43, 0.92) 100%);
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 22px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(165, 89, 255, 0.15), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.how-it-works-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-light));
  transition: width 0.35s ease;
}

.how-it-works-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(165, 89, 255, 0.22);
  border-color: rgba(165, 89, 255, 0.4);
}

.how-it-works-item:hover::before {
  opacity: 1;
}

.how-it-works-item:hover::after {
  width: 100%;
}

.how-it-works-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 6px 18px rgba(165, 89, 255, 0.35);
  z-index: 1;
}

.how-it-works-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(165, 89, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.35s ease;
  border: 1px solid rgba(165, 89, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.how-it-works-item:hover .how-it-works-icon {
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
  background: rgba(165, 89, 255, 0.24);
  border-color: rgba(165, 89, 255, 0.4);
}

.how-it-works-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}

.how-it-works-item p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(232, 232, 232, 0.82);
  margin: 0;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 80px 20px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-it-works-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .how-it-works-number {
    margin-bottom: 6px;
  }
}

/*--------------------------------------------------------------
# Benefits Section (revamped)
--------------------------------------------------------------*/
.benefits {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0a0d13 0%, #0f1522 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 50px 8% 30px 8%;
  border: 1px solid rgba(165, 89, 255, 0.1);
  border-radius: 28px;
  pointer-events: none;
}

.benefits::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(165, 89, 255, 0.2), transparent 60%);
  filter: blur(70px);
  opacity: 0.75;
}

.benefits-content {
  gap: 46px;
  max-width: 1180px;
  margin: 60px auto 0;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 18px;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(165, 89, 255, 0.18);
  background: rgba(19, 23, 34, 0.7);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(165, 89, 255, 0.35);
  box-shadow: 0 16px 44px rgba(165, 89, 255, 0.22);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(165, 89, 255, 0.16);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(165, 89, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.benefit-item:hover .benefit-icon {
  transform: translateY(-2px) scale(1.05);
  background: rgba(165, 89, 255, 0.24);
  border-color: rgba(165, 89, 255, 0.4);
}

.benefit-text h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.benefit-text p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(232, 232, 232, 0.82);
  margin: 0;
}

.benefits-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-box {
  background: linear-gradient(145deg, rgba(16, 22, 34, 0.92), rgba(22, 29, 43, 0.92));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(165, 89, 255, 0.24);
  border-color: rgba(165, 89, 255, 0.38);
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.05;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14.5px;
  color: rgba(232, 232, 232, 0.78);
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 80px 20px;
  }

  .benefits-stats {
    grid-template-columns: 1fr;
  }
}



/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing.section {
  background: linear-gradient(180deg, #192033 0%, #141a25 100%);
  color: var(--default-color);
  padding: 100px 20px;
  font-family: 'Merriweather Sans', sans-serif;
  position: relative;
}

.pricing.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165, 89, 255, 0.4), transparent);
}

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

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

.pricing .pricing-item {
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 2px solid rgba(165, 89, 255, 0.2);
  border-radius: 24px;
  padding: 50px 35px;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing .pricing-item:hover {
  box-shadow: 0 16px 48px rgba(165, 89, 255, 0.3);
  border-color: rgba(165, 89, 255, 0.4);
  transform: translateY(-10px);
}

.pricing h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--heading-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: rgba(232, 232, 232, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
  border-top: 2px solid rgba(165, 89, 255, 0.3);
  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 rgba(165, 89, 255, 0.2);
  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: rgba(165, 89, 255, 0.4);
}

.pricing ul li.na span {
  text-decoration: line-through;
  color: rgba(232, 232, 232, 0.5);
}

.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(--dark-gray);
  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(--dark-gray);
  color: var(--accent-color);
  border-color: var(--dark-gray);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing .featured .buy-btn:hover {
  background: rgba(26, 26, 26, 0.9);
  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
--------------------------------------------------------------*/
.faq.section {
  background: linear-gradient(180deg, #141a25 0%, #0a0d13 100%);
  color: var(--default-color);
  padding: 100px 20px;
  font-family: 'Merriweather Sans', sans-serif;
  position: relative;
}

.faq.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165, 89, 255, 0.4), transparent);
}

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

.faq .section-title h2 {
  color: var(--heading-color);
}

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

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

.faq-item {
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 2px solid rgba(165, 89, 255, 0.2);
  border-radius: 16px;
  padding: 24px 24px 16px 24px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: rgba(232, 232, 232, 0.9);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(165, 89, 255, 0.25);
  border-color: rgba(165, 89, 255, 0.4);
  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(--accent-color-light);
}

.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(--accent-color-light);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 36px;
  padding-top: 0;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
  transition: max-height 0.5s ease, opacity 0.4s ease, padding-top 0.3s ease;
}

.faq-content p {
  margin: 0 0 12px 0;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-item.faq-active {
  background: linear-gradient(135deg, rgba(165, 89, 255, 0.2) 0%, rgba(165, 89, 255, 0.1) 100%);
  border-color: rgba(165, 89, 255, 0.5);
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.3);
}

.faq-item.faq-active h3,
.faq-item.faq-active .faq-icon {
  color: var(--accent-color);
}

.faq-item.faq-active .faq-content {
  max-height: 2000px;
  opacity: 1;
  padding-top: 16px;
  color: rgba(232, 232, 232, 0.9);
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-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: 'Merriweather Sans', 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 {
  width: 100%;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.contact-form-group {
  margin-bottom: 24px;
}

.contact-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(61, 66, 69, 0.5);
  border: 2px solid rgba(165, 89, 255, 0.2);
  border-radius: 12px;
  font-size: 16px;
  color: var(--default-color);
  font-family: 'Merriweather Sans', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(61, 66, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(165, 89, 255, 0.1);
}

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

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.contact-form input.is-valid,
.contact-form textarea.is-valid {
  border-color: var(--accent-color);
  background: rgba(165, 89, 255, 0.1);
}

.invalid-feedback {
  display: none;
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
}

.contact-form input.is-invalid ~ .invalid-feedback,
.contact-form textarea.is-invalid ~ .invalid-feedback,
.contact-form input:invalid:not(:placeholder-shown) ~ .invalid-feedback,
.contact-form textarea:invalid:not(:placeholder-shown) ~ .invalid-feedback {
  display: block;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Merriweather Sans', sans-serif;
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(165, 89, 255, 0.4);
}

.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.form-status .loading {
  color: var(--accent-color);
}

.form-status .error-message {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.form-status .sent-message {
  color: var(--accent-color);
  background: rgba(165, 89, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(165, 89, 255, 0.3);
}

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

.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;
  }
}


#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border-top: 2px solid rgba(165, 89, 255, 0.3);
  padding: 24px 20px;
  font-family: "Merriweather Sans", sans-serif;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-popup-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(165, 89, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.cookie-popup-text {
  flex: 1;
  min-width: 300px;
}

.cookie-popup-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 8px 0;
}

.cookie-popup-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 232, 232, 0.9);
  margin: 0;
}

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

.cookie-popup-text a:hover {
  color: var(--accent-color-light);
}

.cookie-popup-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-settings {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Merriweather Sans", sans-serif;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  box-shadow: 0 4px 12px rgba(165, 89, 255, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(165, 89, 255, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(165, 89, 255, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(165, 89, 255, 0.1);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  #cookie-popup {
    padding: 20px 16px;
  }

  .cookie-popup-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-popup-icon {
    margin: 0 auto;
  }

  .cookie-popup-text {
    text-align: center;
    min-width: auto;
  }

  .cookie-popup-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn-accept,
  .cookie-btn-settings {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero {
  padding: 140px 20px 110px;
  background: radial-gradient(circle at 20% 20%, rgba(165, 89, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(165, 89, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.about-hero-info .eyebrow {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.about-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-hero .lead {
  font-size: 19px;
  color: rgba(243, 240, 255, 0.86);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge-pill {
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.35);
  border-radius: 999px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hero-stats .stat {
  padding: 14px 16px;
  background: rgba(165, 89, 255, 0.1);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 16px;
  text-align: left;
}

.hero-stats .number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-color);
}

.hero-stats .label {
  font-size: 14px;
  color: rgba(243, 240, 255, 0.72);
}

.about-hero-card {
  background: linear-gradient(145deg, rgba(15, 18, 30, 0.9), rgba(22, 27, 41, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(165, 89, 255, 0.22);
}

.hero-card-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.hero-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card-tagline {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(165, 89, 255, 0.4);
  border-radius: 12px;
  color: var(--heading-color);
  font-weight: 700;
}

.hero-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 10px;
}

.chip {
  padding: 8px 12px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 12px;
  font-size: 13px;
  color: var(--heading-color);
}

.hero-card-text {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.7;
  margin: 0;
}

.about-story {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0f0f1a 0%, #16192a 100%);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.story-copy h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.story-copy p {
  color: rgba(243, 240, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.story-list li {
  padding: 12px 14px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.28);
  border-radius: 14px;
  color: rgba(243, 240, 255, 0.86);
  font-weight: 600;
}

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

.story-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.92), rgba(28, 32, 48, 0.92));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.story-card .card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(165, 89, 255, 0.16);
  color: var(--heading-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.story-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.story-card p {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.about-pillars {
  padding: 110px 20px;
  background: linear-gradient(180deg, #16192a 0%, #0f0f1a 100%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 60px auto 0;
}

.pillar-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.9), rgba(28, 32, 48, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 89, 255, 0.38);
  box-shadow: 0 18px 48px rgba(165, 89, 255, 0.22);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(165, 89, 255, 0.16);
  display: grid;
  place-items: center;
  color: var(--accent-color);
  border: 1px solid rgba(165, 89, 255, 0.28);
}

.pillar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.pillar-card p {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 12px 0;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.pillar-list li {
  padding: 9px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 10px;
  color: rgba(243, 240, 255, 0.85);
  font-weight: 600;
  font-size: 14px;
}

.about-programs {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 60px auto 0;
}

.program-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.92), rgba(28, 32, 48, 0.92));
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 89, 255, 0.42);
  box-shadow: 0 18px 50px rgba(165, 89, 255, 0.22);
}

.program-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(165, 89, 255, 0.16);
  display: grid;
  place-items: center;
  color: var(--heading-color);
  margin-bottom: 12px;
  font-size: 18px;
  border: 1px solid rgba(165, 89, 255, 0.26);
}

.program-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.program-card p {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 12px;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.program-card ul li {
  padding: 8px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 10px;
  color: rgba(243, 240, 255, 0.82);
  font-weight: 600;
  font-size: 14px;
}

.about-team {
  padding: 110px 20px;
  background: linear-gradient(180deg, #16192a 0%, #0f0f1a 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 60px auto 0;
}

.team-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.92), rgba(28, 32, 48, 0.92));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 89, 255, 0.4);
  box-shadow: 0 18px 48px rgba(165, 89, 255, 0.22);
}

.team-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(165, 89, 255, 0.18);
  display: grid;
  place-items: center;
  color: var(--heading-color);
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(165, 89, 255, 0.3);
}

.team-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.team-card .role {
  font-size: 14px;
  color: rgba(243, 240, 255, 0.7);
  margin: 2px 0 0 0;
  font-weight: 600;
}

.team-card .bio {
  font-size: 14.5px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.65;
  margin: 8px 0 12px 0;
}

.team-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-card .tags span {
  padding: 7px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 10px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 12px;
}

.about-cta {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.cta-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 23, 37, 0.94), rgba(28, 32, 48, 0.94));
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 24px;
  padding: 28px 28px;
  box-shadow: 0 18px 50px rgba(165, 89, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cta-left h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 8px 0;
}

.cta-left p {
  font-size: 16px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0 0 12px 0;
  line-height: 1.7;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-badges span {
  padding: 8px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 10px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 13px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .cta-box {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-hero {
  padding: 140px 20px 110px;
  background: radial-gradient(circle at 18% 20%, rgba(165, 89, 255, 0.08), transparent 35%),
    radial-gradient(circle at 82% 10%, rgba(165, 89, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.contact-hero-info .eyebrow {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-hero .lead {
  font-size: 19px;
  color: rgba(243, 240, 255, 0.86);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 720px;
}

.contact-hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.contact-hero .badge-pill {
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.35);
  border-radius: 999px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.contact-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.contact-hero .stat {
  padding: 14px 16px;
  background: rgba(165, 89, 255, 0.1);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 16px;
  text-align: left;
}

.contact-hero .stat .number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-color);
}

.contact-hero .stat .label {
  font-size: 14px;
  color: rgba(243, 240, 255, 0.72);
}

.contact-hero-card {
  background: linear-gradient(145deg, rgba(15, 18, 30, 0.9), rgba(22, 27, 41, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(165, 89, 255, 0.22);
}

.contact-hero-card .card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.contact-hero-card .card-eyebrow {
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 6px 0;
}

.contact-hero-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 8px 0;
}

.contact-hero-card .card-sub {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

.card-chip {
  padding: 10px 14px;
  background: rgba(165, 89, 255, 0.16);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 12px;
  color: var(--heading-color);
  font-weight: 800;
  font-size: 13px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 10px;
}

.contact-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-chip:hover {
  background: rgba(165, 89, 255, 0.2);
  border-color: rgba(165, 89, 255, 0.4);
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(243, 240, 255, 0.78);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.online {
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.15);
}

.contact-connect {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0f0f1a 0%, #16192a 100%);
}

.contact-connect-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.contact-form-card {
  background: linear-gradient(145deg, rgba(20, 23, 37, 0.94), rgba(28, 32, 48, 0.94));
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 18px 50px rgba(165, 89, 255, 0.2);
}

.contact-form-card .card-title h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: var(--heading-color);
  margin: 4px 0 8px 0;
}

.contact-form-card .card-title .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.contact-form-card .card-title .card-sub {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0 0 14px 0;
  line-height: 1.6;
}

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

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(17, 23, 34, 0.85);
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 12px;
  font-size: 15px;
  color: rgba(243, 240, 255, 0.9);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(17, 23, 34, 0.95);
  box-shadow: 0 0 0 4px rgba(165, 89, 255, 0.18);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 240, 255, 0.6);
}

.contact-form .invalid-feedback {
  font-size: 13px;
  color: rgba(255, 150, 150, 0.9);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(255, 150, 150, 0.8);
  background: rgba(255, 150, 150, 0.05);
}

.contact-form input.is-valid,
.contact-form textarea.is-valid {
  border-color: rgba(165, 89, 255, 0.8);
  background: rgba(165, 89, 255, 0.05);
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border: none;
  color: var(--dark-gray);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.32);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(165, 89, 255, 0.4);
}

.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  font-size: 14px;
  color: rgba(243, 240, 255, 0.85);
}

.form-status .loading {
  color: var(--accent-color);
}

.form-status .error-message {
  color: rgba(255, 150, 150, 0.9);
}

.form-status .sent-message {
  color: var(--accent-color);
  background: rgba(165, 89, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(165, 89, 255, 0.3);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.92), rgba(28, 32, 48, 0.92));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.side-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.side-head .eyebrow {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
}

.side-head h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.side-card .card-sub,
.side-text {
  font-size: 14.5px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0 0 10px 0;
  line-height: 1.65;
}

.side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 12px;
}

.side-label {
  font-size: 13px;
  color: rgba(243, 240, 255, 0.7);
  margin: 0 0 2px 0;
}

.side-list a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 800;
}

.side-note {
  font-size: 12px;
  color: rgba(243, 240, 255, 0.62);
  white-space: nowrap;
}

.side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.side-tags span {
  padding: 7px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 10px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 12px;
}

.contact-channels {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0f0f1a 0%, #16192a 100%);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.channel-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.9), rgba(28, 32, 48, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(165, 89, 255, 0.38);
  box-shadow: 0 16px 44px rgba(165, 89, 255, 0.22);
}

.channel-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(165, 89, 255, 0.16);
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 18px;
  border: 1px solid rgba(165, 89, 255, 0.26);
}

.channel-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 8px 0;
}

.channel-card p {
  font-size: 14.5px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 10px 0;
}

.channel-link {
  color: var(--accent-color);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-faq {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.faq-quick {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 23, 37, 0.94), rgba(28, 32, 48, 0.94));
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(165, 89, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.faq-quick h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: var(--heading-color);
  margin: 4px 0 6px 0;
}

.faq-quick p {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0;
  line-height: 1.65;
}

.faq-quick .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
}

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

  .faq-quick {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-hero {
  padding: 140px 20px 110px;
  background: radial-gradient(circle at 18% 20%, rgba(165, 89, 255, 0.08), transparent 35%),
    radial-gradient(circle at 82% 10%, rgba(165, 89, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.faq-hero-info .eyebrow {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.faq-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.15;
}

.faq-hero .lead {
  font-size: 19px;
  color: rgba(243, 240, 255, 0.86);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 720px;
}

.faq-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-hero-badges .badge-pill {
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.35);
  border-radius: 999px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.faq-hero-card {
  background: linear-gradient(145deg, rgba(15, 18, 30, 0.9), rgba(22, 27, 41, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(165, 89, 255, 0.22);
}

.faq-hero-card .card-head {
  margin-bottom: 14px;
}

.faq-hero-card .card-eyebrow {
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 6px 0;
}

.faq-hero-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.faq-hero-card .card-sub {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

.faq-hero-card .card-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 12px 0;
  display: grid;
  gap: 8px;
}

.faq-hero-card .card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 12px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 14px;
}

.faq-hero-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 800;
  text-decoration: none;
  margin-top: 6px;
}

.faq-categories {
  padding: 40px 20px;
  background: linear-gradient(180deg, #141a25 0%, #192033 100%);
  border-bottom: 1px solid rgba(165, 89, 255, 0.2);
}

.faq-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-nav-btn {
  padding: 12px 18px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 12px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Merriweather Sans', sans-serif;
}

.faq-nav-btn:hover,
.faq-nav-btn.active {
  background: rgba(165, 89, 255, 0.2);
  border-color: rgba(165, 89, 255, 0.45);
  color: var(--heading-color);
  transform: translateY(-2px);
}

.faq {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.9), rgba(28, 32, 48, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 16px;
  padding: 16px 14px 10px 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(165, 89, 255, 0.4);
  box-shadow: 0 16px 44px rgba(165, 89, 255, 0.22);
}

.faq-icon {
  position: absolute;
  top: 16px;
  left: 14px;
  color: var(--accent-color);
  opacity: 0.9;
}

.faq-title {
  padding-left: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-title h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.faq-title .tag {
  padding: 6px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 10px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 11px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 36px;
  padding-right: 28px;
}

.faq-content p {
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.65;
  margin: 10px 0;
  font-size: 14.5px;
}

.faq-content ul,
.faq-content ol {
  margin: 10px 0 14px 0;
  padding-left: 18px;
}

.faq-content li {
  margin-bottom: 6px;
  line-height: 1.6;
  color: rgba(243, 240, 255, 0.82);
}

.faq-content strong {
  color: var(--heading-color);
  font-weight: 700;
}

.faq-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.faq-toggle {
  position: absolute;
  top: 18px;
  right: 14px;
  color: var(--heading-color);
  transition: transform 0.25s ease;
}

.faq-item.faq-active {
  border-color: rgba(165, 89, 255, 0.45);
  box-shadow: 0 18px 50px rgba(165, 89, 255, 0.24);
}

.faq-item.faq-active .faq-content {
  max-height: 600px;
}

.faq-cta {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0f0f1a 0%, #16192a 100%);
}

.faq-cta-box {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 23, 37, 0.94), rgba(28, 32, 48, 0.94));
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(165, 89, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.faq-cta-box h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: var(--heading-color);
  margin: 4px 0 6px 0;
}

.faq-cta-box p {
  font-size: 15px;
  color: rgba(243, 240, 255, 0.82);
  margin: 0;
  line-height: 1.65;
}

.faq-cta-box .eyebrow {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.26);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
}

.faq-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .about-hero-content h1,
  .contact-hero-content h1,
  .faq-hero-content h1 {
    font-size: 36px;
  }

  .about-hero-content .lead,
  .contact-hero-content .lead,
  .faq-hero-content .lead {
    font-size: 18px;
  }

  .mission-stats {
    gap: 24px;
  }

  .mission-stats .stat-number {
    font-size: 36px;
  }

  .programs-table-wrapper {
    overflow-x: scroll;
  }

  .programs-table {
    min-width: 600px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .cta-box,
  .faq-cta-box {
    padding: 40px 24px;
  }
}

/*--------------------------------------------------------------
# Policy Pages Styles (Cookie Policy, Privacy Policy, Terms)
--------------------------------------------------------------*/
.policy-hero {
  padding: 140px 20px 110px;
  background: radial-gradient(circle at 18% 20%, rgba(165, 89, 255, 0.08), transparent 35%),
    radial-gradient(circle at 82% 10%, rgba(165, 89, 255, 0.14), transparent 38%),
    linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.policy-hero-info .eyebrow {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 999px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.policy-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.15;
}

.policy-hero .lead {
  font-size: 19px;
  color: rgba(243, 240, 255, 0.86);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 720px;
}

.policy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-badges .badge-pill {
  padding: 10px 16px;
  background: rgba(165, 89, 255, 0.14);
  border: 1px solid rgba(165, 89, 255, 0.35);
  border-radius: 999px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.policy-hero-card {
  background: linear-gradient(145deg, rgba(15, 18, 30, 0.9), rgba(22, 27, 41, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(165, 89, 255, 0.22);
}

.policy-hero-card .card-head {
  margin-bottom: 10px;
}

.policy-hero-card .card-eyebrow {
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 6px 0;
}

.policy-hero-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.policy-hero-card .card-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 10px 0;
  display: grid;
  gap: 8px;
}

.policy-hero-card .card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 12px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 14px;
}

.policy-hero-card .card-sub {
  font-size: 14px;
  color: rgba(243, 240, 255, 0.78);
  margin: 8px 0 0 0;
}

.policy-content {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0f0f1a 0%, #16192a 100%);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-card {
  background: linear-gradient(150deg, rgba(20, 23, 37, 0.9), rgba(28, 32, 48, 0.9));
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(165, 89, 255, 0.4);
  box-shadow: 0 16px 44px rgba(165, 89, 255, 0.22);
}

.policy-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.policy-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.policy-card .tag {
  padding: 6px 10px;
  background: rgba(165, 89, 255, 0.12);
  border: 1px solid rgba(165, 89, 255, 0.24);
  border-radius: 10px;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 11px;
}

.policy-card p {
  font-size: 14.5px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.65;
  margin: 6px 0 8px 0;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: grid;
  gap: 6px;
}

.policy-card ul.bullets {
  padding-left: 0;
}

.policy-card li {
  font-size: 14px;
  color: rgba(243, 240, 255, 0.82);
  line-height: 1.6;
  padding: 6px 8px;
  background: rgba(165, 89, 255, 0.08);
  border: 1px solid rgba(165, 89, 255, 0.16);
  border-radius: 10px;
}

.policy-card a {
  color: var(--accent-color);
  text-decoration: underline;
}

.policy-card .note {
  font-size: 13px;
  color: rgba(243, 240, 255, 0.68);
  margin-top: 6px;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.cookie-type-card {
  background: rgba(61, 66, 69, 0.5);
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  border-color: rgba(165, 89, 255, 0.4);
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.2);
}

.cookie-type-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 12px;
  margin-top: 0;
}

.cookie-type-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cookie-type-card strong {
  color: var(--heading-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.thanks-hero {
  padding: 120px 20px 100px;
  background: linear-gradient(180deg, #0a0d13 0%, #141a25 100%);
  text-align: center;
}

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

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: rgba(165, 89, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.thanks-content .lead {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.9);
  line-height: 1.7;
}

.thanks-info {
  padding: 80px 20px;
  background: linear-gradient(180deg, #141a25 0%, #192033 100%);
}

.thanks-info-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 40px;
  text-align: center;
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.thanks-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.thanks-step:hover {
  border-color: rgba(165, 89, 255, 0.4);
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.2);
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-gray);
  box-shadow: 0 4px 16px rgba(165, 89, 255, 0.3);
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  margin-top: 0;
}

.step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
  margin: 0;
}

.thanks-cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, #192033 0%, #141a25 100%);
}

.thanks-cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 1px solid rgba(165, 89, 255, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
}

.thanks-cta-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.thanks-cta-wrapper p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.thanks-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .policy-hero-content h1 {
    font-size: 36px;
  }

  .policy-hero-content .subtitle {
    font-size: 18px;
  }

  .policy-content-wrapper {
    padding: 40px 24px;
  }

  .policy-section h2 {
    font-size: 26px;
  }

  .policy-section h3 {
    font-size: 20px;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }

  .thanks-content h1 {
    font-size: 32px;
  }

  .thanks-content .lead {
    font-size: 18px;
  }

  .thanks-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .thanks-cta-wrapper {
    padding: 40px 24px;
  }

  .thanks-cta-buttons {
    flex-direction: column;
  }

  .thanks-cta-buttons a {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Payment Info Section Styles
--------------------------------------------------------------*/
.payment-info-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #141a25 0%, #192033 100%);
}

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

.payment-info-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.payment-info-header .subtitle {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.payment-method-card {
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(165, 89, 255, 0.3);
  border-color: rgba(165, 89, 255, 0.4);
}

.payment-icon {
  width: 80px;
  height: 80px;
  background: rgba(165, 89, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.payment-method-card:hover .payment-icon {
  background: rgba(165, 89, 255, 0.25);
  transform: scale(1.1);
}

.payment-method-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.payment-method-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.payment-security-box {
  background: linear-gradient(135deg, rgba(165, 89, 255, 0.1) 0%, rgba(165, 89, 255, 0.05) 100%);
  border: 2px solid rgba(165, 89, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.security-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: rgba(165, 89, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.security-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.security-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 20px;
}

.security-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-content li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

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

.payment-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.payment-term-card {
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 1px solid rgba(165, 89, 255, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-term-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(165, 89, 255, 0.25);
  border-color: rgba(165, 89, 255, 0.4);
}

.term-icon {
  width: 60px;
  height: 60px;
  background: rgba(165, 89, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.payment-term-card:hover .term-icon {
  background: rgba(165, 89, 255, 0.25);
  transform: rotate(5deg);
}

.payment-term-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.payment-term-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.8);
  margin: 0;
}

.payment-contact-box {
  background: linear-gradient(135deg, #192033 0%, #141a25 100%);
  border: 2px solid rgba(165, 89, 255, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
}

.payment-contact-box h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.payment-contact-box > p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(61, 66, 69, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(165, 89, 255, 0.1);
  transform: translateX(4px);
}

.contact-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-item span {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.9);
  font-weight: 500;
}

.btn-contact-payment {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  color: var(--dark-gray);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(165, 89, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(165, 89, 255, 0.4);
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .payment-info-header h2 {
    font-size: 32px;
  }

  .payment-info-header .subtitle {
    font-size: 18px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .payment-security-box {
    flex-direction: column;
    padding: 32px 24px;
  }

  .security-icon {
    margin: 0 auto;
  }

  .payment-terms-grid {
    grid-template-columns: 1fr;
  }

  .payment-contact-box {
    padding: 40px 24px;
  }

  .contact-details {
    gap: 12px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}