/**
* Updated: May 7, 2026
* Author: Zahid Hussain
* WhatsApp: +92 3025788489
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@font-face {
  font-family: 'LT Amber Wide';
  src: url('../fonts/lt-amber-wide-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --default-font: "Andika", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "LT Amber Wide", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #59D8FF;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #59D8FF;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #59D8FF;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --ss-mega-bg: #0a1020;
  --ss-mega-surface: linear-gradient(155deg,
      rgba(20, 14, 35, 0.98) 0%,
      rgba(10, 16, 32, 0.98) 52%,
      rgba(23, 16, 37, 0.98) 100%);
  --ss-mega-border: rgba(110, 68, 255, 0.38);
  --ss-mega-title: #ffffff;
  --ss-mega-desc: rgba(255, 255, 255, 0.62);
  --ss-mega-icon-bg: rgba(110, 68, 255, 0.22);
  --ss-mega-icon-color: #c9b5ff;
  --ss-mega-item-hover: rgba(110, 68, 255, 0.16);
}

/* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #59D8FF;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# Full page load overlay
--------------------------------------------------------------*/
html.ss-page-loading,
html.ss-page-loading body {
  overflow: hidden;
  height: 100%;
}

.ss-page-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(110, 68, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(190, 70, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(89, 216, 255, 0.15) 0%, transparent 45%),
    #140e23;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.ss-page-loader.ss-page-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ss-page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.ss-page-loader__logo {
  display: block;
  max-width: min(200px, 48vw);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(89, 216, 255, 0.35));
}

.ss-page-loader__spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(89, 216, 255, 0.22);
  border-top-color: #59d8ff;
  animation: ss-page-loader-spin 0.78s linear infinite;
}

@keyframes ss-page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  top: 15px;
  left: 15px;
  right: 15px;
  width: auto;
  border-radius: 20px;
}

.scrolled .header {
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  border-radius: 0;
}

.header .header-container {
  border-radius: 20px;
  padding: 5px 25px;
  height: 80px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* .scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
} */

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(45.58deg, #6E44FF -67.59%, #BE46FF 47.4%, #59D8FF 160.2%);
  box-shadow: 0px 0px 20px 0px #815FFE99;
  font-size: 16px;
  padding: 10px 25px;
  margin: 0 0 0 30px;
  border-radius: 12px;
  transition: 0.3s;
  font-weight: 700;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  box-shadow: none;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    /* font-size: 12px; */
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Features mega menu — mobile sheet */
  .navmenu .ss-features-dropdown .ss-features-mega-panel {
    position: static;
    display: none;
    width: auto;
    margin: 10px 20px 0;
    padding: 0;
    border-radius: 16px;
    background:
      radial-gradient(ellipse 90% 55% at 50% 0%, rgba(110, 68, 255, 0.18), transparent 58%),
      var(--ss-mega-surface);
    border: 1px solid var(--ss-mega-border);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.45),
      0 0 48px rgba(110, 68, 255, 0.12);
    overflow: hidden;
  }

  .navmenu .ss-features-dropdown.ss-mega-open .ss-features-mega-panel {
    display: block;
  }

  .navmenu .ss-features-dropdown>.ss-nav-features-trigger {
    justify-content: flex-start;
    gap: 8px;
  }

  .navmenu .ss-features-dropdown>.ss-nav-features-trigger .bi-chevron-down {
    font-size: 11px;
    margin-left: 2px;
    transition: transform 0.25s ease;
  }

  .navmenu .ss-features-dropdown.ss-mega-open>.ss-nav-features-trigger .bi-chevron-down {
    transform: rotate(180deg);
  }

  .navmenu .ss-features-dropdown.ss-mega-open>.ss-nav-features-trigger {
    color: var(--nav-dropdown-hover-color);
    background: rgba(110, 68, 255, 0.2);
  }

  .navmenu .ss-features-dropdown .ss-mega-grid {
    padding: 16px;
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  .navmenu .ss-features-dropdown .ss-mega-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ss-mega-title);
    transition: background 0.2s ease;
  }

  .navmenu .ss-features-dropdown .ss-mega-item:hover {
    background: var(--ss-mega-item-hover);
  }

  .navmenu .ss-features-dropdown .ss-mega-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem !important;
    color: var(--ss-mega-icon-color);
    background: var(--ss-mega-icon-bg);
    border: 1px solid rgba(110, 68, 255, 0.25);
  }

  .navmenu .ss-features-dropdown .ss-mega-title {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    color: var(--ss-mega-title);
  }

  .navmenu .ss-features-dropdown .ss-mega-desc {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--ss-mega-desc);
  }
}

/* Features mega menu — desktop full-width card (click to open: .ss-mega-open) */
@media (min-width: 1200px) {
  .navmenu .ss-features-dropdown .ss-nav-features-trigger {
    gap: 6px;
    border-radius: 12px;
    justify-content: flex-start;
  }

  .navmenu .ss-features-dropdown.ss-mega-open>.ss-nav-features-trigger {
    color: var(--nav-hover-color);
    background: rgba(110, 68, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(89, 216, 255, 0.15);
  }

  .navmenu .ss-features-dropdown .ss-nav-features-trigger .bi-chevron-down {
    font-size: 11px;
    opacity: 0.85;
    margin-left: 2px;
    transition: transform 0.25s ease;
  }

  .navmenu .ss-features-dropdown.ss-mega-open>.ss-nav-features-trigger .bi-chevron-down {
    transform: rotate(180deg);
  }

  .navmenu .ss-features-dropdown .ss-features-mega-panel {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: var(--ss-mega-top, 196px);
    z-index: 996;
    display: block;
    margin: 0;
    padding: 8px 24px 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .navmenu .ss-features-dropdown.ss-mega-open .ss-features-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navmenu .ss-features-dropdown .ss-features-mega-panel .container-xl {
    max-width: 1140px;
    margin: 0 auto;
    padding: 36px 40px 40px;
    border-radius: 20px;
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(110, 68, 255, 0.16), transparent 55%),
      radial-gradient(ellipse 55% 40% at 100% 100%, rgba(89, 216, 255, 0.1), transparent 50%),
      var(--ss-mega-surface);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid var(--ss-mega-border);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(89, 216, 255, 0.1),
      0 0 80px rgba(110, 68, 255, 0.18);
  }

  .navmenu .ss-features-dropdown .ss-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 48px;
  }

  .navmenu .ss-features-dropdown .ss-mega-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--ss-mega-title);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .navmenu .ss-features-dropdown .ss-mega-item:hover {
    background: var(--ss-mega-item-hover);
    color: var(--ss-mega-title);
  }

  .navmenu .ss-features-dropdown .ss-mega-item:hover .ss-mega-icon {
    background: rgba(110, 68, 255, 0.32);
    border-color: rgba(89, 216, 255, 0.35);
    color: #e0d4ff;
  }

  .navmenu .ss-features-dropdown .ss-mega-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--ss-mega-icon-color);
    background: var(--ss-mega-icon-bg);
    border: 1px solid rgba(110, 68, 255, 0.28);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .navmenu .ss-features-dropdown .ss-mega-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .navmenu .ss-features-dropdown .ss-mega-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ss-mega-title);
    line-height: 1.25;
  }

  .navmenu .ss-features-dropdown .ss-mega-desc {
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--ss-mega-desc);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  border-top: 3px solid transparent;
  /* transparent so gradient shows */
  border-image:
    linear-gradient(43.48deg,
      #6E44FF 7.45%,
      #59D8FF 50.84%,
      #BE46FF 94.23%) 1;
  color: #fff;
  background: radial-gradient(at top left, #171025 0%, transparent 60%), radial-gradient(at top right, #1d153c 0%, transparent 60%), radial-gradient(at bottom left, #2d1743 0%, transparent 60%), radial-gradient(at bottom right, #19122f 0%, transparent 60%), #140e23;
  padding-top: 80px;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-bottom: 20px;
}

.footer .footer-about .logo span {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.footer .footer-about p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-top: 20px;
}

.footer .social-links {
  gap: 12px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(45.58deg, #6E44FF -67.59%, #BE46FF 47.4%, #59D8FF 160.2%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 110px;
  height: 6px;
  border-radius: 50px;
  background: linear-gradient(266.8deg, #59D8FF 2.65%, #BE46FF 49.15%, #6E44FF 96.56%);
}

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #A855F7;
  padding-left: 5px;
}

/* Newsletter Section */
.footer .newsletter-section {
  margin-top: 40px;
}

.footer .newsletter-section h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .newsletter-form {
  display: flex;
  max-width: 400px;
  gap: 10px;
}

.footer ul {
  padding-left: 0;
}

.footer ul li {
  list-style: none;
}

.footer .newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  outline: none;
}

.footer .newsletter-form .btn-subscribe {
  background: linear-gradient(135deg, #A855F7 0%, #BE46FF 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.footer .newsletter-form .btn-subscribe:hover {
  box-shadow: none;
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

.footer .copyright p {
  margin-bottom: 0;
  opacity: 0.6;
}

.footer .footer-bottom-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.footer .footer-bottom-links a:hover {
  color: #A855F7;
}

@media (max-width: 992px) {
  .footer .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# 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: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%); */
  background: radial-gradient(circle at top left, #923ebf 0%, #4b1c7a 35%, #1a0f2e 70%, #0b0616 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

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

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

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

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

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

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}



.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }

  .header .logo img {
    max-height: 40px;
  }

  .header .header-container {
    height: unset;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.form-control::placeholder,
.form-select::placeholder {
  color: #a8a8a8;
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* ================= HERO BACKGROUND ================= */
.dt-hero {
  min-height: 100vh;
  background: radial-gradient(at top left, #662c8b 0%, transparent 60%), radial-gradient(at top right, #171329 0%, transparent 60%), radial-gradient(at bottom left, #1c132f 0%, transparent 60%), radial-gradient(at bottom right, #3f2a8c 0%, transparent 60%), #251740;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
  /* Header space */
}

/* ================= BACKGROUND CIRCLES ================= */
.dt-hero-bg-circles {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.dt-circle {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.dt-circle-1 {
  width: 1200px;
  height: 1200px;
  background: rgba(168, 85, 247, 0.05);
}

.dt-circle-2 {
  width: 950px;
  height: 950px;
  background: rgba(168, 85, 247, 0.08);
}

.dt-circle-3 {
  width: 700px;
  height: 700px;
  background: rgba(168, 85, 247, 0.12);
}

/* ================= LAYOUT ================= */
.dt-hero-container {
  max-width: 1500px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  height: 80vh;
}

.dt-hero-layout {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ================= TITLES ================= */
.dt-title-wrapper {
  position: absolute;
  z-index: 5;
}

.fashion-top {
  top: 140px;
  left: 5%;
  z-index: 1;
}

.dt-hero-title {
  font-size: 98px;
  line-height: 0.85;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-family: 'LT Amber Wide', sans-serif;
}

.digital-era {
  top: 70px;
  left: 0%;
  text-align: right;
}

.dt-hero-subtitle {
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin: 0;
  font-family: 'LT Amber Wide', sans-serif;
}

.dt-outline {
  font-weight: 700;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
}

.dt-solid {
  font-weight: 800;
  color: #fff;
}

/* ================= MODEL ================= */
.dt-model-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}

.dt-hero-model {
  height: auto;
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

/* ================= ACTION BUTTON ================= */
.dt-right-content {
  position: absolute;
  top: 100px;
  right: 30%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.dt-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 999px;
  background: linear-gradient(45.58deg, #6E44FF -67.59%, #BE46FF 47.4%, #59D8FF 160.2%);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dt-hero-btn:hover {
  box-shadow: none;
  color: #fff;
}

.dt-btn-icon {
  background: #fff;
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

/* ================= FLOATING CARDS ================= */
.dt-floating-card {
  position: absolute;
  z-index: 6;
}

.card-left {
  bottom: 0px;
  left: 5%;
}

.card-right {
  bottom: 0px;
  right: 13%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.dt-hero-card {
  width: 180px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.dt-hero-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.dt-card-pill {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 0;
  border-radius: 999px;
  font-size: 25px;
  font-weight: 400;
  width: 85%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  line-height: 44px;
}

/* ================= DESCRIPTION & VECTORS ================= */
.dt-desc-wrapper {
  position: relative;
  margin-top: 45px;
  padding-top: 22px;
}

.dt-hero-desc {
  max-width: 240px;
  font-size: 17px;
  color: #FFFFFF;
  line-height: 1.6;
  font-weight: 400;
}

.dt-vector-left {
  position: absolute;
  top: -30px;
  left: 70px;
  height: 50px;
  width: auto;
}

.dt-vector-right {
  height: 60px;
  width: auto;
  opacity: 0.9;
  margin-right: 35px;
}

.card-right .dt-hero-card {
  width: 240px;
}

.card-right .dt-hero-card img {
  height: 340px;
}

.dt-hero-vbg {
  position: absolute;
  bottom: 0;
}

/* ================= RESPONSIVE ================= */
/* @media (max-width: 1400px) {
  .fashion-top {
    left: 2%;
  }

  .digital-era {
    right: 2%;
  }

  .card-left {
    left: 2%;
  }

  .card-right {
    right: 2%;
  }
} */

/* @media (max-width: 1100px) {
  .dt-hero {
    height: auto;
    padding-bottom: 80px;
  }

  .dt-hero-container {
    height: auto;
  }

  .dt-hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .fashion-top,
  .digital-era,
  .dt-model-wrapper,
  .dt-right-content,
  .card-left,
  .card-right {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
  }

  .dt-right-content {
    align-items: center;
  }

  .digital-era {
    text-align: center;
  }

  .card-right {
    align-items: center;
  }

  .dt-vector-right {
    margin: 0;
  }

  .dt-hero-model {
    max-width: 500px;
  }
} */

/* @media (max-width: 576px) {
  .dt-hero-title {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .dt-hero-subtitle {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .dt-hero-card {
    width: 180px;
  }

  .dt-hero-card img {
    height: 220px;
  }
} */

/* ================= DOWNLOAD SECTION ================= */
.dt-download {
  background-color: #0F0B1E;
  padding: 90px 0;
}

.ss-download-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse 70% 45% at 15% 0%, rgba(110, 68, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 100%, rgba(89, 216, 255, 0.12), transparent 50%),
    #0f0b1e;
}

.ss-download-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.ss-download-glow-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(110, 68, 255, 0.28);
}

.ss-download-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: rgba(190, 70, 255, 0.18);
}

.ss-download-header {
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.ss-download-header .ss-why-tag {
  margin-bottom: 1rem;
}

.ss-download-lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ss-download-cards {
  margin-bottom: 2.5rem;
}

.ss-download-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(110, 68, 255, 0.12), transparent 58%),
    rgba(10, 16, 32, 0.75);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ss-download-card:hover {
  border-color: rgba(110, 68, 255, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(110, 68, 255, 0.15);
}

.ss-download-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: #c9b5ff;
  background: rgba(110, 68, 255, 0.22);
  border: 1px solid rgba(110, 68, 255, 0.3);
}

.ss-download-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.ss-download-card p {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.ss-download-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #b99cff;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ss-download-card-link:hover {
  color: #e0d4ff;
  gap: 8px;
}

.ss-download-highlight {
  margin-bottom: 3rem;
  padding: 28px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ss-download-stat {
  padding: 8px 12px;
}

.ss-download-stat strong {
  display: block;
  font-size: clamp(1.75rem, 2vw + 0.5rem, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, #fff 0%, #c9b5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ss-download-stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.ss-download-actions-label {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.ss-download-actions .dt-download-btns {
  margin-top: 0;
}

.dt-download-title {
  color: #fff;
  font-size: clamp(2rem, 3.5vw + 0.75rem, 3.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.dt-download-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
  line-height: 1.65;
  margin: 0 auto;
  font-weight: 400;
}

.dt-download-btns {
  margin-top: 60px;
}

.dt-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 35px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  transition: all 0.3s ease;
  position: relative;
  min-width: 320px;
  justify-content: space-between;
}

.dt-btn-download.ios {
  background: linear-gradient(135deg, #A855F7 0%, #BE46FF 100%);
  color: #fff;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

.dt-btn-download.android {
  color: #fff;
  border: 2px solid #b54bfc;
  box-shadow: 0 0 30px rgba(190, 70, 255, 0.7);
}

.dt-btn-icon-circle {
  background: #fff;
  color: #000;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.dt-btn-download:hover {
  /* transform: translateY(-5px); */
  color: #fff;
}

.dt-btn-download.ios:hover {
  box-shadow: none;
}

.dt-btn-download.android:hover {
  border-color: #BE46FF;
  box-shadow: none;
  background: linear-gradient(135deg, #A855F7 0%, #BE46FF 100%);
}



/* ================= FEATURES SECTION ================= */
.dt-features {
  background: radial-gradient(at top left, #2d1944 0%, transparent 60%), radial-gradient(at top right, #211741 0%, transparent 60%), radial-gradient(at bottom left, #211535 0%, transparent 60%), radial-gradient(at bottom right, #352475 0%, transparent 60%), #1a1528;
  padding: 100px 0;
}

.dt-features-title {
  font-family: 'LT Amber Wide', sans-serif;
  font-size: 80px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.dt-feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 50px 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dt-feature-card:hover {
  border: 2px solid #A855F7;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.4);
  background: radial-gradient(at top left, #1e162e 0%, transparent 60%), radial-gradient(at top right, #4d246c 0%, transparent 60%), radial-gradient(at bottom left, #342368 0%, transparent 60%), radial-gradient(at bottom right, #1c1730 0%, transparent 60%), #1c162f;
  cursor: pointer;
  transform: scale(1.1);
  z-index: 5;
}

.dt-feature-card.highlighted {
  border: 2px solid #A855F7;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.4);
  background: radial-gradient(at top left, #1e162e 0%, transparent 60%), radial-gradient(at top right, #4d246c 0%, transparent 60%), radial-gradient(at bottom left, #342368 0%, transparent 60%), radial-gradient(at bottom right, #1c1730 0%, transparent 60%), #1c162f;
  cursor: pointer;
  transform: scale(1.1);
  z-index: 2;
}

.dt-feature-card.highlighted h3 {
  color: #BE46FF;
}

/* Reset highlighted card when the container row is hovered but NOT on the highlighted card itself */
.row:hover .dt-feature-card.highlighted:not(:hover) {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.03);
  transform: scale(1);
}

.row:hover .dt-feature-card.highlighted:not(:hover) h3 {
  color: #fff;
}

.dt-feature-card:hover h3 {
  color: #BE46FF;
}


.dt-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #A855F7 0%, #BE46FF 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.dt-feature-icon i {
  font-size: 32px;
  color: #fff;
}

.dt-feature-card h3 {
  font-family: 'Andika', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.dt-feature-card p {
  color: #fff;
  opacity: 0.85;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .dt-features-title {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .dt-features-title {
    font-size: 48px;
  }

  .dt-feature-card {
    padding: 40px 30px;
  }

  .dt-feature-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .dt-features-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .dt-feature-card {
    padding: 30px;
    border-radius: 30px;
  }

  .dt-feature-card h3 {
    font-size: 26px;
  }

  .dt-feature-card p {
    font-size: 16px;
  }
}

/* ================= FAQ SECTION ================= */
.dt-faq {
  background: radial-gradient(at top left, #211535 0%, transparent 60%), radial-gradient(at top right, #352475 0%, transparent 60%), radial-gradient(at bottom left, #281c50 0%, transparent 60%), radial-gradient(at bottom right, #17122a 0%, transparent 60%), #1a1528;
  padding: 100px 0;
}

.dt-faq-illustration {
  position: relative;
  text-align: center;
}

.dt-faq-illustration img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.2));
}

.dt-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dt-accordion-item {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dt-accordion-item:has(.show) {
  border: 2px solid #A855F7 !important;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.dt-accordion-btn {
  background: transparent !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  padding: 30px 40px !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.dt-accordion-btn::after {
  display: none !important;
}

.dt-accordion-icon {
  width: 40px;
  height: 40px;
  background: #BE46FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.dt-accordion-btn:not(.collapsed) .dt-accordion-icon {
  transform: rotate(45deg);
  background: #A855F7;
}

.dt-accordion-body {
  padding: 0 40px 30px 40px !important;
  color: #fff !important;
  opacity: 0.8;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .dt-accordion-btn {
    font-size: 18px !important;
    padding: 20px !important;
  }

  .dt-accordion-body {
    padding: 0 20px 20px 20px !important;
    font-size: 16px !important;
  }

  .dt-accordion-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* ================= CONTACT SECTION ================= */
.dt-contact {
  background: radial-gradient(at top left, #281c50 0%, transparent 60%), radial-gradient(at top right, #17122a 0%, transparent 60%), radial-gradient(at bottom left, #19122b 0%, transparent 60%), radial-gradient(at bottom right, #241946 0%, transparent 60%), #1a1528;
  padding: 100px 0;
}

.dt-contact-desc {
  font-size: 18px;
  opacity: 0.8;
  color: #fff;
  line-height: 1.6;
}

.dt-contact-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Highlighted card - always visible */
.dt-contact-card.highlighted {
  border: 1.5px solid #A855F7;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
  position: relative;
  z-index: 3;
}

/* Row hover effect - dim non-hovered highlighted cards */
.row:hover .dt-contact-card.highlighted:not(:hover) {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* Hover effect for all cards */
.dt-contact-card:hover {
  border: 1.5px solid #A855F7;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  z-index: 10;
  cursor: pointer;
}

/* Ensure highlighted card hover is extra prominent */
.dt-contact-card.highlighted:hover {
  border: 2px solid #A855F7;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}


.dt-contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #A855F7 0%, #BE46FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.dt-contact-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.dt-contact-content p {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Contact Form */
.dt-contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
}

.dt-contact-form label {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.dt-contact-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
}

.dt-contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #A855F7;
  box-shadow: none;
  outline: none;
}

.dt-btn-send {
  width: 100%;
  background: linear-gradient(90deg, #A855F7 0%, #BE46FF 100%);
  color: #fff;
  border: none;
  padding: 18px 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.dt-btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

@media (max-width: 992px) {
  .dt-contact-form-wrapper {
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# Connect Accounts Section - Eye-Catching Social Icons
--------------------------------------------------------------*/
.dt-connect {
  background: radial-gradient(at top left, #2d1a4a 0%, transparent 60%),
    radial-gradient(at top right, #1e1538 0%, transparent 60%),
    radial-gradient(at bottom left, #241b3a 0%, transparent 60%),
    radial-gradient(at bottom right, #3a2a6e 0%, transparent 60%),
    #120e22;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.dt-connect::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: connectShimmer 20s linear infinite;
  pointer-events: none;
}

@keyframes connectShimmer {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(40px, 40px) rotate(5deg);
  }
}

.dt-connect .glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(190, 70, 255, 0.05) 50%, transparent 80%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.dt-connect .glow-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(89, 216, 255, 0.1) 0%, rgba(110, 68, 255, 0.05) 60%, transparent 90%);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  animation: orbFloat 12s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes orbFloat {

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

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.dt-connect .dt-connect-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(190, 70, 255, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #BE46FF;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.dt-connect .dt-connect-heading {
  font-size: 58px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, #BE46FF 50%, #59D8FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  /* font-family: 'LT Amber Wide', sans-serif; */
  /* letter-spacing: -1px; */
}

.dt-connect .dt-connect-subtext {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.dt-social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.dt-social-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dt-social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dt-social-card:hover::before {
  opacity: 1;
}

.dt-social-card:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 25px 40px rgba(168, 85, 247, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.dt-social-icon {
  font-size: 44px;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.dt-social-card:hover .dt-social-icon {
  transform: scale(1.1);
}

.dt-social-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.dt-social-card:hover .dt-social-name {
  opacity: 1;
  color: #BE46FF;
}

/* Brand Colors on Hover */
.dt-social-card[data-brand="instagram"]:hover .dt-social-icon {
  color: #E4405F;
  text-shadow: 0 0 15px #E4405F;
}

.dt-social-card[data-brand="facebook"]:hover .dt-social-icon {
  color: #1877F2;
  text-shadow: 0 0 15px #1877F2;
}

.dt-social-card[data-brand="twitter"]:hover .dt-social-icon {
  color: #1DA1F2;
  text-shadow: 0 0 15px #1DA1F2;
}

.dt-social-card[data-brand="linkedin"]:hover .dt-social-icon {
  color: #0A66C2;
  text-shadow: 0 0 15px #0A66C2;
}

.dt-social-card[data-brand="tiktok"]:hover .dt-social-icon {
  color: #00F2EA;
  text-shadow: 0 0 15px #00F2EA;
}

.dt-social-card[data-brand="youtube"]:hover .dt-social-icon {
  color: #FF0000;
  text-shadow: 0 0 15px #FF0000;
}

.dt-social-card[data-brand="pinterest"]:hover .dt-social-icon {
  color: #E60023;
  text-shadow: 0 0 15px #E60023;
}

.dt-social-card[data-brand="snapchat"]:hover .dt-social-icon {
  color: #FFFC00;
  text-shadow: 0 0 15px #FFFC00;
}

.dt-social-card[data-brand="whatsapp"]:hover .dt-social-icon {
  color: #25D366;
  text-shadow: 0 0 15px #25D366;
}

.dt-social-card[data-brand="telegram"]:hover .dt-social-icon {
  color: #26A5E4;
  text-shadow: 0 0 15px #26A5E4;
}

.dt-social-card[data-brand="reddit"]:hover .dt-social-icon {
  color: #FF4500;
  text-shadow: 0 0 15px #FF4500;
}

.dt-social-card[data-brand="twitch"]:hover .dt-social-icon {
  color: #9146FF;
  text-shadow: 0 0 15px #9146FF;
}

.dt-social-card[data-brand="discord"]:hover .dt-social-icon {
  color: #5865F2;
  text-shadow: 0 0 15px #5865F2;
}

.dt-social-card[data-brand="mastodon"]:hover .dt-social-icon {
  color: #6364FF;
  text-shadow: 0 0 15px #6364FF;
}

.dt-social-card[data-brand="bluesky"]:hover .dt-social-icon {
  color: #1185FE;
  text-shadow: 0 0 15px #1185FE;
}

.dt-social-card[data-brand="threads"]:hover .dt-social-icon {
  color: #000000;
  text-shadow: 0 0 15px #fff;
}

.dt-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(45.58deg, #6E44FF -67.59%, #BE46FF 47.4%, #59D8FF 160.2%);
  padding: 16px 45px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dt-connect-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 45px rgba(168, 85, 247, 0.8);
  color: #fff;
}

.dt-connect-btn i {
  font-size: 24px;
  transition: transform 0.3s;
}

.dt-connect-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .dt-connect .dt-connect-heading {
    font-size: 44px;
  }

  .dt-social-card {
    width: 120px;
    height: 120px;
  }

  .dt-social-icon {
    font-size: 46px;
  }

  .dt-social-name {
    font-size: 14px;
  }

  .dt-social-grid {
    gap: 25px;
  }
}

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

  .dt-connect .dt-connect-heading {
    font-size: 34px;
  }

  .dt-connect-subtext {
    font-size: 16px;
  }

  .dt-social-card {
    width: 100px;
    height: 100px;
    gap: 10px;
  }

  .dt-social-icon {
    font-size: 38px;
  }

  .dt-social-name {
    font-size: 12px;
  }

  .dt-social-grid {
    gap: 18px;
  }

  .dt-connect-btn {
    padding: 12px 32px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .dt-social-card {
    width: 85px;
    height: 85px;
  }

  .dt-social-icon {
    font-size: 22px;
  }

  .dt-social-name {
    font-size: 11px;
  }

  .dt-social-grid {
    gap: 5px;
    margin-top: 0px;
  }
}

/* =========================================
   MODERN SAAS HERO
========================================= */

.ss-hero {
  position: relative;
  overflow: hidden;
  padding-top: 220px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at top left, rgba(138, 92, 246, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(89, 216, 255, 0.18), transparent 25%),
    radial-gradient(circle at bottom center, rgba(190, 70, 255, 0.15), transparent 35%),
    #070B14;
}

/* Grid */
.ss-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
  pointer-events: none;
}

/* Gradient Glow */
.ss-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.ss-gradient-1 {
  width: 500px;
  height: 500px;
  background: #6E44FF;
  top: -200px;
  left: -150px;
  opacity: .35;
}

.ss-gradient-2 {
  width: 450px;
  height: 450px;
  background: #59D8FF;
  top: -100px;
  right: -100px;
  opacity: .18;
}

/* Badge */
.ss-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ss-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5DFF85;
  box-shadow: 0 0 15px #5DFF85;
}

/* Heading */
.ss-title {
  font-size: 92px;
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}

.ss-title span {
  background: linear-gradient(90deg, #59D8FF, #BE46FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ss-subtitle {
  max-width: 760px;
  margin: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.8;
}

/* Form */
.ss-hero-form {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ss-hero-form input {
  width: 430px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  padding: 0 24px;
  color: #fff;
  outline: none;
  font-size: 18px;
}

.ss-hero-form input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.ss-hero-form button {
  height: 72px;
  padding: 0 34px;
  border: none;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6E44FF, #BE46FF, #59D8FF);
  box-shadow: 0 15px 40px rgba(110, 68, 255, .35);
  transition: .4s ease;
}

.ss-hero-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(110, 68, 255, .45);
}

/* Users */
.ss-users {
  margin-top: 22px;
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
}

.ss-users .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #59ff9f;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 12px #59ff9f;
}

/* Dashboard */
.ss-dashboard-wrapper {
  position: relative;
  margin-top: 90px;
}

.ss-dashboard {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, .6),
    0 0 80px rgba(110, 68, 255, .18);
}

.ss-dashboard-glow {
  position: absolute;
  width: 70%;
  height: 180px;
  background: linear-gradient(90deg, #6E44FF, #59D8FF);
  filter: blur(100px);
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  opacity: .4;
}

/* Floating Icons */
.ss-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ss-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
  transition: transform .2s ease-out;
  animation: floatIcon 6s ease-in-out infinite;
}

.ss-icon i {
  opacity: .95;
}

.icon-1 {
  top: 22%;
  left: 12%;
  animation-delay: 0s;
}

.icon-2 {
  top: 62%;
  left: 8%;
  animation-delay: 1s;
}

.icon-3 {
  top: 28%;
  right: 12%;
  animation-delay: 2s;
}

.icon-4 {
  top: 58%;
  right: 9%;
  animation-delay: 3s;
}

.icon-5 {
  top: 78%;
  left: 22%;
  animation-delay: 4s;
}

.icon-6 {
  top: 75%;
  right: 20%;
  animation-delay: 5s;
}

.icon-7 {
  top: 15%;
  right: 28%;
  animation-delay: 1.5s;
}

.icon-8 {
  top: 18%;
  left: 28%;
  animation-delay: 2.5s;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Mouse Movement */
.ss-hero:hover .icon-1 {
  transform: translate(10px, -10px);
}

.ss-hero:hover .icon-2 {
  transform: translate(8px, 8px);
}

.ss-hero:hover .icon-3 {
  transform: translate(-10px, -12px);
}

.ss-hero:hover .icon-4 {
  transform: translate(-8px, 10px);
}

.ss-hero:hover .icon-5 {
  transform: translate(12px, -8px);
}

.ss-hero:hover .icon-6 {
  transform: translate(-12px, 8px);
}

/* Responsive */
@media(max-width:991px) {

  .ss-title {
    font-size: 58px;
    line-height: 1.1;
  }

  .ss-subtitle {
    font-size: 18px;
  }

  .ss-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

}

@media(max-width:767px) {

  .ss-hero {
    padding-top: 160px;
  }

  .ss-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .ss-subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .ss-hero-form input {
    width: 100%;
  }

  .ss-hero-form button {
    width: 100%;
  }

  .ss-icon {
    display: none;
  }

}

/* =========================================
   MORE FEATURES SLIDER
========================================= */

.ss-more-features {
  position: relative;
  padding: 100px 0;
  background: #070B14;
  overflow: hidden;
}

/* Heading */
.ss-section-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 25px;
}

.ss-section-title {
  font-size: 62px;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 800;
}

/* Slider */
.ss-features-slider {
  padding-top: 40px;
  overflow: visible;
}

/* Card */
.ss-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  overflow: hidden;
  transition: .4s ease;
  height: 100%;
  backdrop-filter: blur(14px);
}

.ss-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(89, 216, 255, .25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .4),
    0 0 40px rgba(89, 216, 255, .08);
}

/* Image */
.ss-feature-image {
  height: 240px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.ss-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s ease;
}

.ss-feature-card:hover .ss-feature-image img {
  transform: scale(1.05);
}

/* Colors */
.ss-feature-image.pink {
  background: #f6b1b5;
}

.ss-feature-image.purple {
  background: #c7b4ff;
}

.ss-feature-image.orange {
  background: #f7ba84;
}

.ss-feature-image.cyan {
  background: #9de7de;
}

.ss-feature-image.blue {
  background: #9ec8ff;
}

/* Content */
.ss-feature-content {
  padding: 16px;
}

.ss-feature-content h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.ss-feature-content p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Link */
.ss-feature-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #59D8FF;
  font-size: 14px;
  font-weight: 600;
  transition: .3s ease;
}

.ss-feature-content a i {
  transition: .3s ease;
}

.ss-feature-content a:hover i {
  transform: translateX(6px);
}

/* Navigation */
.ss-slider-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.ss-prev,
.ss-next {
  position: relative;
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
  margin: 0 !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
}

.ss-prev::after,
.ss-next::after {
  display: none;
}

.ss-prev:hover,
.ss-next:hover {
  background: linear-gradient(135deg, #6E44FF, #59D8FF);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(110, 68, 255, .35);
}

.ss-features-slider .swiper-slide {
  transition: .4s ease;
  opacity: .45;
  transform: scale(.92);
}

.ss-features-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media(max-width:991px) {

  .ss-section-title {
    font-size: 54px;
  }

  .ss-feature-content h3 {
    font-size: 28px;
  }

}

@media(max-width:767px) {

  .ss-more-features {
    padding: 80px 0;
  }

  .ss-section-title {
    font-size: 40px;
  }

  .ss-feature-image {
    height: 220px;
  }

  .ss-feature-content {
    padding: 24px;
  }

  .ss-feature-content p {
    font-size: 16px;
  }

}

/* =========================================
   CTA SECTION - MATCHING DARK THEME
========================================= */

.ss-cta-section {
  position: relative;
  padding: 120px 0;
  background: #070B14;
  overflow: hidden;
}

.ss-cta-box {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  border-radius: 36px;

  background:
    radial-gradient(circle at top left,
      rgba(110, 68, 255, .18),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(89, 216, 255, .12),
      transparent 35%),

    linear-gradient(180deg,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .03));

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* Small Glow */
.ss-cta-box::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(110, 68, 255, .18);

  border-radius: 50%;

  filter: blur(120px);

  top: -250px;
  right: -150px;

  pointer-events: none;
}

.ss-cta-box::after {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  background: rgba(89, 216, 255, .08);

  border-radius: 50%;

  filter: blur(120px);

  bottom: -250px;
  left: -120px;

  pointer-events: none;
}

/* Content */
.ss-cta-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: auto;
  text-align: center;
}

/* Badge */
.ss-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 100px;

  margin-bottom: 32px;

  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);

  color: rgba(255, 255, 255, .75);

  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(12px);
}

/* Heading */
.ss-cta-content h2 {
  font-size: 82px;
  line-height: .95;
  letter-spacing: -4px;
  color: #fff;
  margin-bottom: 28px;
  font-weight: 800;
}

/* Text */
.ss-cta-content p {
  max-width: 760px;

  margin: auto auto 50px;

  color: rgba(255, 255, 255, .68);

  font-size: 22px;
  line-height: 1.8;
}

/* Buttons */
.ss-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.ss-btn-primary {
  height: 72px;
  padding: 0 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-radius: 20px;

  background: linear-gradient(135deg,
      #6E44FF,
      #8B5CF6,
      #59D8FF);

  color: #fff;

  font-size: 18px;
  font-weight: 700;

  border: none;

  transition: .4s ease;

  box-shadow: 0 20px 40px rgba(110, 68, 255, .35);
}

.ss-btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 25px 60px rgba(110, 68, 255, .45);

  color: #fff;
}

.ss-btn-primary i {
  transition: .3s ease;
}

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

/* Secondary Button */
.ss-btn-secondary {
  height: 72px;
  padding: 0 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(12px);

  color: #fff;

  font-size: 18px;
  font-weight: 700;

  transition: .4s ease;
}

.ss-btn-secondary:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, .08);

  border-color: rgba(89, 216, 255, .3);

  color: #fff;
}

/* Bottom Text */
.ss-cta-bottom {
  margin-top: 36px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: rgba(255, 255, 255, .55);

  font-size: 15px;
  font-weight: 500;
}

.ss-cta-bottom span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #59ff9f;

  box-shadow: 0 0 12px #59ff9f;
}

/* Responsive */
@media(max-width:1200px) {

  .ss-cta-content h2 {
    font-size: 72px;
  }

}

@media(max-width:991px) {

  .ss-cta-box {
    padding: 90px 30px;
  }

  .ss-cta-content h2 {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .ss-cta-content p {
    font-size: 18px;
  }

}

@media(max-width:767px) {

  .ss-cta-section {
    padding: 80px 0;
  }

  .ss-cta-box {
    padding: 70px 20px;
    border-radius: 28px;
  }

  .ss-cta-content h2 {
    font-size: 42px;
    line-height: 1.05;
  }

  .ss-cta-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .ss-btn-primary,
  .ss-btn-secondary {
    width: 100%;
  }

  .ss-cta-bottom {
    flex-direction: column;
  }

}

/* =========================================
   WHY SECTION
========================================= */

.ss-why-section {
  position: relative;
  padding: 90px 0;
  background: #070B14;
  overflow: hidden;
}

/* Heading */
.ss-why-heading {
  margin-bottom: 70px;
}

.ss-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 12px 22px;

  border-radius: 100px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);

  color: #59D8FF;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;

  margin-bottom: 28px;
}

.ss-why-heading h2 {
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 800;
}

/* Cards */
.ss-why-card {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  transition: .4s ease;
  margin-bottom: 24px;
  overflow: hidden;
}

.ss-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 216, 255, .25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .4),
    0 0 40px rgba(89, 216, 255, .08);
}

/* Icon */
.ss-why-icon {
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg,
      #6E44FF,
      #59D8FF);

  color: #fff;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(110, 68, 255, .3);
}

/* Content */
.ss-why-content {
  position: relative;
  flex: 1;
}

.ss-why-content h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ss-why-content p {
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Arrow */
.ss-arrow {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(255, 255, 255, .25);
  font-size: 24px;
}

/* Image Box */
.ss-why-image-box {
  position: relative;
}

/* Badge */
.ss-why-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 100px;
  background: rgba(7, 11, 20, .7);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.ss-why-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #59ff9f;
  box-shadow: 0 0 12px #59ff9f;
}

/* Main Image */
.ss-why-image {
  width: 100%;
  height: 524px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .45);
}

/* Stats */
.ss-why-stats {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  display: flex;
  gap: 18px;
}

/* Stat Card */
.ss-stat-card {
  flex: 1;
  padding: 26px 20px;
  border-radius: 24px;
  background: rgba(14, 18, 28, .9);
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  text-align: center;
  transition: .4s ease;
}

.ss-stat-card.active {
  transform: translateY(-14px);
  border-color: rgba(89, 216, 255, .3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, .35),
    0 0 40px rgba(89, 216, 255, .08);
}

.ss-stat-icon {
  color: #59D8FF;
  font-size: 28px;
  margin-bottom: 12px;
}

.ss-stat-card h4 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ss-stat-card p {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media(max-width:1200px) {
  .ss-why-heading h2 {
    font-size: 58px;
  }

  .ss-why-content h3 {
    font-size: 26px;
  }

}

@media(max-width:991px) {

  .ss-why-section {
    padding-bottom: 180px;
  }

  .ss-why-heading h2 {
    font-size: 48px;
  }

  .ss-why-stats {
    bottom: -90px;
  }

}

@media(max-width:767px) {

  .ss-why-section {
    padding: 80px 0 220px;
  }

  .ss-why-heading {
    margin-bottom: 50px;
  }

  .ss-why-heading h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .ss-why-card {
    flex-direction: column;
    padding: 26px;
  }

  .ss-why-content h3 {
    font-size: 24px;
  }

  .ss-why-content p {
    font-size: 16px;
  }

  .ss-why-stats {
    flex-direction: column;
    width: calc(100% - 40px);
    bottom: -180px;
  }

  .ss-stat-card.active {
    transform: none;
  }

}

/* =========================================
   FEATURE SUBPAGES (Publish, etc.)
========================================= */

.ss-page-hero {
  padding-bottom: 100px;
}

.ss-page-hero .ss-title {
  font-size: clamp(2.75rem, 3.5vw + 1.25rem, 4.75rem);
  letter-spacing: -0.05em;
}

@media (min-width: 992px) {
  .ss-page-hero .ss-subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
  }

  .ss-page-hero .ss-hero-form {
    justify-content: flex-start;
  }

  .ss-page-hero .ss-users {
    text-align: left;
  }
}

.ss-page-hero-visual {
  position: relative;
  z-index: 2;
}

.ss-page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% -8% -12%;
  background: linear-gradient(135deg, rgba(110, 68, 255, 0.35), rgba(89, 216, 255, 0.2));
  filter: blur(60px);
  border-radius: 40%;
  z-index: 0;
  pointer-events: none;
}

.ss-page-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(110, 68, 255, 0.15);
}

/* Feature detail sections */
.ss-feature-showcase {
  position: relative;
  background: #070B14;
  overflow: hidden;
}

.ss-feature-showcase:nth-of-type(even) {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(110, 68, 255, 0.08), transparent 55%),
    #070B14;
}

.ss-feature-showcase .ss-feature-block-heading {
  margin-bottom: 0;
}

.ss-feature-showcase .ss-why-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.ss-feature-showcase h2 {
  font-size: clamp(1.85rem, 2vw + 1.1rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.ss-feature-showcase .lead-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 520px;
}

.ss-feature-showcase .ss-feature-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.ss-feature-showcase .ss-feature-visual img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.ss-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 480px;
}

@media (min-width: 576px) {
  .ss-platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .ss-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }
}

.ss-platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ss-platform-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.ss-platform-chip i {
  font-size: 18px;
  width: 22px;
  text-align: center;
  opacity: 0.95;
}

/* =========================================
   AUTH (LOGIN / SIGNUP)
========================================= */

body.ss-auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #070b14;
}

body.ss-auth-page .main {
  min-height: 100vh;
  min-height: 100dvh;
}

body.ss-auth-split-page .main {
  min-height: 0;
}

.ss-auth-page .ss-auth-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 42px;
  padding-bottom: 42px;
  background: transparent;
  overflow: visible;
}

.ss-auth-page .ss-auth-hero .ss-grid,
.ss-auth-page .ss-auth-hero .ss-gradient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.ss-auth-page .ss-auth-hero>.container {
  position: relative;
  z-index: 1;
}

.ss-auth-card {
  position: relative;
  z-index: 2;
  padding: 40px 36px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 576px) {
  .ss-auth-card {
    padding: 32px 22px 28px;
  }
}

.ss-auth-card-head .ss-badge {
  margin-bottom: 22px;
}

.ss-auth-heading {
  font-size: clamp(1.65rem, 1.1rem + 2.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.ss-auth-lead {
  margin: 0 auto;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.ss-auth-form {
  margin-top: 28px;
}

.ss-auth-field {
  margin-bottom: 18px;
}

.ss-auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.ss-auth-field input[type="email"],
.ss-auth-field input[type="password"],
.ss-auth-field input[type="text"] {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  padding: 0 18px;
  color: #fff;
  outline: none;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ss-auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.ss-auth-field input:focus {
  border-color: rgba(89, 216, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(89, 216, 255, 0.12);
}

.ss-auth-inline-link {
  font-size: 13px;
  font-weight: 600;
  color: #59d8ff;
  text-decoration: none;
}

.ss-auth-inline-link:hover {
  color: #8ae6ff;
  text-decoration: underline;
}

.ss-auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px !important;
}

.ss-auth-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #6e44ff;
  cursor: pointer;
}

.ss-auth-checkbox label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  cursor: pointer;
}

.ss-auth-checkbox label a {
  color: #59d8ff;
  text-decoration: none;
  font-weight: 600;
}

.ss-auth-checkbox label a:hover {
  text-decoration: underline;
}

.ss-auth-submit {
  width: 100%;
  margin-top: 10px;
  height: 54px;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #6e44ff, #be46ff, #59d8ff);
  box-shadow: 0 14px 36px rgba(110, 68, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ss-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(110, 68, 255, 0.42);
}

.ss-auth-divider {
  position: relative;
  text-align: center;
  margin: 28px 0 22px;
}

.ss-auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ss-auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 11, 20, 0.92);
}

.ss-auth-social {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 480px) {
  .ss-auth-social {
    grid-template-columns: 1fr;
  }
}

.ss-auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ss-auth-social-btn i {
  font-size: 17px;
  line-height: 1;
}

.ss-auth-social-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.ss-auth-social-btn--google {
  background: #fff;
  color: #1f1f1f;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ss-auth-social-btn--google:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.ss-auth-social-btn--facebook {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

.ss-auth-social-btn--facebook:hover {
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.45);
}

.ss-auth-social-btn--apple {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.ss-auth-social-btn--apple:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.ss-auth-social-btn--x {
  background: #0f0f0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ss-auth-social-btn--x:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

/* Icon-only social row (signup) */
.ss-auth-social--icons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ss-auth-social--icons .ss-auth-social-btn {
  gap: 0;
  min-height: 48px;
  height: 48px;
  padding: 0;
}

.ss-auth-social--icons .ss-auth-social-btn i {
  font-size: 20px;
}

@media (max-width: 480px) {
  .ss-auth-social--icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ss-auth-switch {
  margin-top: 26px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.ss-auth-switch a {
  color: #59d8ff;
  font-weight: 700;
  text-decoration: none;
}

.ss-auth-switch a:hover {
  color: #8ae6ff;
  text-decoration: underline;
}

/* Signup split layout (form left, showcase right) */
html.ss-auth-split-page,
html.ss-auth-split-page body.ss-auth-split-page {
  height: 100%;
  overflow: hidden;
}

body.ss-auth-split-page {
  overflow: hidden;
}

body.ss-auth-split-page .main.ss-auth-split {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.ss-auth-split-form {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background: #070b14;
  overflow: hidden;
}

.ss-auth-split-form-inner {
  width: 100%;
  max-width: 600px;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 68, 255, 0.4) transparent;
}

.ss-auth-split-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.ss-auth-split-logo img {
  max-height: 44px;
  width: auto;
}

.ss-auth-split-page .ss-auth-card {
  padding: 28px 26px 24px;
}

.ss-auth-split-page .ss-auth-card-head .ss-badge {
  margin-bottom: 14px;
}

.ss-auth-split-page .ss-auth-heading {
  font-size: clamp(1.45rem, 1rem + 1.5vw, 1.85rem);
  margin-bottom: 8px;
}

.ss-auth-split-page .ss-auth-lead {
  font-size: 14px;
  max-width: none;
}

.ss-auth-split-page .ss-auth-form {
  margin-top: 18px;
}

.ss-auth-split-page .ss-auth-field {
  margin-bottom: 12px;
}

.ss-auth-split-page .ss-auth-field input[type="email"],
.ss-auth-split-page .ss-auth-field input[type="password"],
.ss-auth-split-page .ss-auth-field input[type="text"] {
  height: 46px;
  font-size: 15px;
}

.ss-auth-split-page .ss-auth-submit {
  height: 48px;
  font-size: 16px;
  margin-top: 6px;
}

.ss-auth-split-page .ss-auth-divider {
  margin: 18px 0 14px;
}

.ss-auth-split-page .ss-auth-switch {
  margin-top: 18px;
  text-align: center;
}

.ss-auth-split-showcase {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f0b1e;
}

.ss-auth-split-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ss-auth-split-showcase-bg .ss-grid,
.ss-auth-split-showcase-bg .ss-gradient {
  position: absolute;
  inset: 0;
}

.ss-auth-split-showcase-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: 100%; */
  max-height: 100dvh;
}

.ss-auth-showcase-slider {
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.ss-auth-showcase-slider .swiper-slide {
  height: auto;
}

.ss-auth-slide {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ss-auth-slide-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(110, 68, 255, 0.12);
}

.ss-auth-slide-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(32vh, 240px);
  object-fit: cover;
  object-position: top center;
}

.ss-auth-slide-content {
  text-align: left;
  padding: 0 4px;
}

.ss-auth-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #59d8ff;
  margin-bottom: 10px;
}

.ss-auth-slide-tag i {
  font-size: 14px;
}

.ss-auth-slide-content h2 {
  font-size: clamp(1.35rem, 1vw + 1rem, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.ss-auth-slide-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.ss-auth-showcase-pagination {
  position: relative !important;
  margin-top: 20px !important;
  bottom: auto !important;
}

.ss-auth-showcase-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}

.ss-auth-showcase-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, #6e44ff, #59d8ff);
}

.ss-auth-showcase-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ss-auth-showcase-stats li {
  text-align: center;
}

.ss-auth-showcase-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ss-auth-showcase-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 991.98px) {
  body.ss-auth-split-page .main.ss-auth-split {
    flex-direction: column;
  }

  .ss-auth-split-form,
  .ss-auth-split-showcase {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }

  .ss-auth-split-showcase {
    display: none;
  }

  .ss-auth-split-form {
    padding: 20px 20px;
  }

  .ss-auth-split-form-inner {
    max-width: 480px;
  }
}

@media (max-height: 720px) {
  .ss-auth-split-page .ss-auth-card {
    padding: 20px 20px 18px;
  }

  .ss-auth-split-page .ss-auth-form {
    margin-top: 12px;
  }

  .ss-auth-split-page .ss-auth-field {
    margin-bottom: 8px;
  }

  .ss-auth-split-page .ss-auth-field input[type="email"],
  .ss-auth-split-page .ss-auth-field input[type="password"],
  .ss-auth-split-page .ss-auth-field input[type="text"] {
    height: 42px;
  }

  .ss-auth-split-page .ss-auth-divider {
    margin: 12px 0 10px;
  }

  .ss-auth-split-page .ss-auth-social--icons .ss-auth-social-btn {
    min-height: 42px;
    height: 42px;
  }

  .ss-auth-split-page .ss-auth-social--icons .ss-auth-social-btn i {
    font-size: 18px;
  }

  .ss-auth-slide-visual img {
    max-height: min(26vh, 180px);
  }
}

/* =========================================
   PRICING PAGE
========================================= */

.ss-pricing-page.is-yearly .show-monthly-only {
  display: none !important;
}

.ss-pricing-page:not(.is-yearly) .show-yearly-only {
  display: none !important;
}

.ss-pricing-hero-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.25rem;
}

.ss-pricing-hero-toggle-wrap.ss-pricing-toggle--compact {
  margin-top: 0;
}

.ss-pricing-billing-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.ss-pricing-billing-btn:hover {
  color: #fff;
}

.ss-pricing-billing-btn.active {
  background: linear-gradient(135deg, rgba(110, 68, 255, 0.95), rgba(89, 216, 255, 0.75));
  color: #070b14;
  box-shadow: 0 8px 28px rgba(110, 68, 255, 0.35);
}

.ss-save-pill {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(93, 255, 133, 0.15);
  color: #5dff85;
  font-size: 12px;
  font-weight: 700;
}

.ss-pricing-cards-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(110, 68, 255, 0.12), transparent 55%),
    #070b14;
  padding-top: 40px;
  padding-bottom: 80px;
  margin-top: -40px;
}

.ss-pricing-tier-card {
  position: relative;
  height: 100%;
  padding: 28px 26px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ss-pricing-tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(89, 216, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.ss-pricing-tier-card.popular {
  border-color: rgba(110, 68, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(110, 68, 255, 0.2),
    0 28px 70px rgba(0, 0, 0, 0.5);
}

.ss-pricing-tier-card .popular-label {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #be46ff;
}

.ss-tier-save {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #5dff85;
  margin-bottom: 10px;
}

.ss-tier-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 4px;
}

.ss-tier-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.ss-tier-price-block {
  margin-bottom: 22px;
}

.ss-tier-amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.ss-tier-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.ss-tier-billed-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

.ss-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.ss-tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.ss-tier-features li i.bi-check2-circle {
  color: #59d8ff;
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ss-tier-muted-icon {
  color: rgba(255, 255, 255, 0.28);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.ss-tier-muted-text {
  color: rgba(255, 255, 255, 0.38);
}

.ss-tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #070b14;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ss-tier-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.12);
  color: #070b14;
}

.ss-pricing-tier-card.popular .ss-tier-cta {
  background: linear-gradient(135deg, #6e44ff, #59d8ff);
  color: #fff;
  border-color: transparent;
}

.ss-pricing-compare-section {
  background: #070b14;
  padding-bottom: 100px;
}

.ss-compare-title {
  font-size: clamp(1.85rem, 2vw + 1.1rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.ss-compare-save-note {
  font-size: 14px;
  font-weight: 600;
  color: #5dff85;
}

.ss-pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ss-pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.ss-pricing-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  vertical-align: bottom;
  padding: 18px 14px;
  background: #0a1020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-align: center;
}

.ss-pricing-table thead th:first-child {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 4;
  text-align: left;
  min-width: 200px;
  box-shadow: 12px 0 18px -10px rgba(0, 0, 0, 0.65);
}

.ss-pricing-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 11, 20, 0.98);
  box-shadow: 12px 0 18px -10px rgba(0, 0, 0, 0.55);
}

.ss-pricing-table tbody td {
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.ss-pricing-table .bi-check-lg {
  color: #59d8ff;
  font-size: 1.1rem;
}

.ss-pricing-table .cell-dash {
  color: rgba(255, 255, 255, 0.22);
}

.ss-pt-cat th {
  padding: 14px 14px 10px !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: static !important;
  box-shadow: none !important;
}

.ss-pt-plan {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.ss-pt-price {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.ss-pt-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(190, 70, 255, 0.2);
  color: #e9c6ff;
  vertical-align: middle;
}

.ss-pricing-table thead th:nth-child(4) {
  background: linear-gradient(180deg, rgba(110, 68, 255, 0.18), #0a1020 55%);
}

/* =========================================
   LEGAL PAGES (Privacy Policy, etc.)
========================================= */

.ss-legal-page .ss-legal-hero {
  padding-bottom: 48px;
}

.ss-legal-page .ss-legal-hero .ss-title {
  font-size: clamp(2.25rem, 3vw + 1rem, 3.5rem);
}

.ss-legal-meta {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.ss-legal-content {
  position: relative;
  background: #070b14;
  padding-top: 0;
  padding-bottom: 100px;
}

.ss-legal-article {
  padding: 40px 36px 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(110, 68, 255, 0.1), transparent 60%),
    rgba(10, 16, 32, 0.85);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.ss-legal-toc {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ss-legal-toc-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.ss-legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .ss-legal-toc ol {
    columns: 2;
  }
}

.ss-legal-toc li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.ss-legal-toc a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ss-legal-toc a:hover {
  color: #c9b5ff;
}

.ss-legal-article section {
  margin-bottom: 2.25rem;
  scroll-margin-top: 120px;
}

.ss-legal-article section:last-child {
  margin-bottom: 0;
}

.ss-legal-article h2 {
  font-size: clamp(1.35rem, 1.5vw + 0.75rem, 1.65rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.ss-legal-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 1.25rem;
  margin-bottom: 0.65rem;
}

.ss-legal-article p,
.ss-legal-article li {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.ss-legal-article p {
  margin-bottom: 1rem;
}

.ss-legal-article p:last-child {
  margin-bottom: 0;
}

.ss-legal-article ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.ss-legal-article li {
  margin-bottom: 0.5rem;
}

.ss-legal-article li strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.ss-legal-article a {
  color: #b99cff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.ss-legal-article a:hover {
  color: #e0d4ff;
}

.ss-legal-contact-list {
  list-style: none;
  padding-left: 0;
}

.ss-legal-contact-list li {
  margin-bottom: 0.65rem;
}

.footer-bottom-links a.active {
  color: #fff;
}

@media (max-width: 767.98px) {
  .ss-legal-article {
    padding: 28px 22px 32px;
    border-radius: 18px;
  }
}

/* =========================================
   ABOUT & CONTACT PAGES
========================================= */

.ss-about-story-lead {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.ss-about-values {
  background: #070b14;
  padding-top: 0;
}

.ss-about-value-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 16, 32, 0.75);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.ss-about-value-card:hover {
  border-color: rgba(110, 68, 255, 0.35);
  transform: translateY(-4px);
}

.ss-about-value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  font-size: 22px;
  color: #c9b5ff;
  background: rgba(110, 68, 255, 0.15);
}

.ss-about-value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.65rem;
}

.ss-about-value-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.ss-about-page .ss-hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .ss-about-page .ss-hero-form {
    justify-content: flex-start;
  }
}

.ss-contact-page .ss-contact-main {
  padding-top: 0;
  padding-bottom: 100px;
}

.ss-contact-departments {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ss-contact-dept-card {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 16, 32, 0.6);
}

.ss-contact-dept-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ss-contact-dept-card h3 i {
  color: #b99cff;
}

.ss-contact-dept-card p {
  margin: 0 0 0.5rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.ss-contact-dept-card a {
  font-size: 14px;
  font-weight: 600;
  color: #b99cff;
  text-decoration: none;
}

.ss-contact-dept-card a:hover {
  color: #e0d4ff;
}

.ss-contact-form-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.ss-contact-page .dt-contact-content p a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.ss-contact-page .dt-contact-content p a:hover {
  color: #c9b5ff;
}

.ss-contact-page .dt-contact-form select.form-control {
  appearance: none;
  cursor: pointer;
}