
/* Fonts */
:root {
  --default-font: "Cabin", sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cabin", sans-serif;
  --nav-font: "Cabin", 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: #0a1929;
--default-color: #e8f4f8;
--heading-color: #4a90e2;
--accent-color: #2d4a7c;
--surface-color: #1b263b;
--contrast-color: #ffffff;
--nav-color: #e8f4f8;
--nav-hover-color: #6bb6ff;
--nav-mobile-background-color: #1b263b;
--nav-dropdown-background-color: #0d1b2a;
--nav-dropdown-color: #e8f4f8;
--nav-dropdown-hover-color: #6bb6ff;
--gradient-primary: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%);
--gradient-secondary: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
--gradient-accent: linear-gradient(135deg, #1e3a5f 0%, #4a90e2 100%);
--shadow-primary: 0 10px 30px rgba(45, 74, 124, 0.4);
--shadow-secondary: 0 5px 15px rgba(45, 74, 124, 0.3);

}

/* Color Presets */

.light-background {
  --background-color: #1b263b;
  --surface-color: #2d4a7c;
}

.dark-background {
  --background-color: #0a1929;
  --default-color: #e8f4f8;
  --heading-color: #6bb6ff;
  --surface-color: #0d1b2a;
  --contrast-color: #ffffff;
}


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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: var(--gradient-primary);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: var(--shadow-primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .logo {
  line-height: 1;
}

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

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #6bb6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header .logo h1:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.5));
}


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



  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# 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: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .navmenu a:hover::before {
    left: 100%;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .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: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 20px 20px;
    margin: 0;
    border-radius: 0;
    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);
    -webkit-overflow-scrolling: touch;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 5px;
    width: 35px;
    height: 35px;
    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);
    background-color: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    margin: 0 10px;
  }

  .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: fixed;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

/* Дополнительные стили для мобильного меню */
@media (max-width: 1199px) {
  .navmenu ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--nav-mobile-background-color);
    padding: 80px 20px 20px 20px;
    margin: 0;
    z-index: 9998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-nav-active .navmenu ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--gradient-primary);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 20px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 16px 28px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .newsletter-input-group {
    margin: 0.5rem 1rem !important;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer .footer-top p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(78, 205, 196, 0.3);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  transition: all 0.3s ease;
  background: rgba(78, 205, 196, 0.1);
  position: relative;
  z-index: 2;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}


.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 100px 0 80px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 50%, #1b263b 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(107, 182, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

.hero h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff, #6bb6ff, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.6));
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .download-btn {
  color: var(--contrast-color);
  background: var(--gradient-accent);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero .download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero .download-btn:hover::before {
  left: 100%;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  display: flex;
  align-items: center;
}

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

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600; 
  font-size: 16px;
  letter-spacing: 1.2px; 
  padding: 12px 32px; 
  border-radius: 8px; 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px; 
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.about .read-more:hover i {
  transform: translateX(6px); 
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features .icon-box {
  display: flex;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.1);
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.features .icon-box:hover::before {
  left: 100%;
}

.features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

.features .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.features .icon-box i {
  font-size: 48px;
  line-height: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
  position: relative;
  z-index: 2;
}

.features .icon-box:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.features .icon-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.feature-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .features-item {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
}

.feature-details .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
}

.feature-details .features-item:hover ul i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  box-shadow: var(--shadow-primary);
  box-sizing: content-box;
  padding: 40px 40px 40px 80px;
  margin: 30px 15px;
  min-height: 220px;
  position: relative;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.testimonials .testimonial-item:hover::before {
  left: 100%;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 15px;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-secondary);
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 8px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  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: 20px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

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

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

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

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

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

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories .success-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}

.success-stories .success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

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

.success-stories .success-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.success-stories .success-card.featured {
  border-color: var(--heading-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 107, 107, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.success-stories .success-card.featured:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.success-stories .success-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-secondary);
  position: relative;
  z-index: 2;
}

.success-stories .success-card:hover .success-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.success-stories .success-icon i {
  font-size: 40px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.success-stories .success-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-stories .success-description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.success-stories .success-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.success-stories .success-author strong {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.success-stories .success-author span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.success-stories .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-stories .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.success-stories .cta-button i {
  transition: transform 0.3s ease;
}

.success-stories .cta-button:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.faq .faq-container .faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  position: relative;
  padding: 30px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-secondary);
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.faq .faq-container .faq-item:hover::before {
  left: 100%;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 50px 0 60px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.faq .faq-container .faq-item h3 span {
  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-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  line-height: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
  z-index: 2;
}

.faq .faq-container .faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 18px;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--accent-color);
  z-index: 2;
}

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

.faq .faq-container .faq-active {
  background: var(--gradient-accent);
  transition: all 0.4s ease;
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-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);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, var(--background-color) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact .info-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 42px;
  line-height: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.contact .info-item:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  height: 100%;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .php-email-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 15px;
  color: var(--default-color);
  background-color: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
}



.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: 0;
  padding: 15px 40px;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type=submit]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  background: var(--background-color);
}

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

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

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

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

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

#cookie-popup button:hover {
  background: var(--heading-color);
}

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

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

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Feature Slider
--------------------------------------------------------------*/
.feature-slider {
  position: relative;
  padding-bottom: 60px;
}

.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--heading-color);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-slider .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
}

.feature_example {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  color: var(--default-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature_example::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.feature_example:hover::before {
  left: 100%;
}

.feature_example:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--heading-color);
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-content i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.feature-card:hover .feature-content i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.read-more:hover::before {
  left: 100%;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer div a {
  display: inline-block;
  margin-right: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

footer div a:last-child {
  margin-right: 0;
}

footer div a:hover {
  color: var(--accent-color);
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

/*--------------------------------------------------------------
# Footer Info
--------------------------------------------------------------*/
.footer-info h3 {
  color: var(--heading-color);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-info p {
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer ul li a {
  color: rgba(232, 244, 248, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer ul li a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.footer-contact p {
  color: rgba(232, 244, 248, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}


.footer-bottom {
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom .copyright p {
  color: rgba(168, 213, 226, 0.8);
  margin: 0;
}

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

.footer-bottom .footer-links a {
  color: rgba(168, 213, 226, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# FAQ Container
--------------------------------------------------------------*/
.faq-container .faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-container .faq-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.faq-header:hover {
  background: rgba(124, 58, 237, 0.05);
}

.faq-icon {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-header h3 {
  flex: 1;
  margin: 0;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

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

.faq-content {
  padding: 0 25px 25px 25px;
  color: rgba(232, 244, 248, 0.9);
  line-height: 1.6;
  display: none;
}

.faq-item.faq-active .faq-content {
  display: block;
}

/*--------------------------------------------------------------
# Testimonial Card
--------------------------------------------------------------*/
.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  transition: left 0.6s;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--accent-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonial-info p {
  color: var(--accent-color);
  margin: 0 0 10px 0;
  font-size: 14px;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #ffc107;
  font-size: 14px;
}

.testimonial-content p {
  color: rgba(232, 244, 248, 0.9);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-stats .stat {
  background: rgba(124, 58, 237, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--accent-color);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.trust-indicators {
  background: rgba(22, 27, 34, 0.5);
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}

.trust-stat h3 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-stat p {
  color: rgba(232, 244, 248, 0.8);
  margin: 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(74, 144, 226, 0.1);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(74, 144, 226, 0.2);
  border-color: #4a90e2;
  transform: rotate(5deg) scale(1.1);
}

.contact-icon i {
  font-size: 20px;
  color: #4a90e2;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon i {
  color: #6bb6ff;
}

.contact-details h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.contact-details p {
  color: rgba(232, 244, 248, 0.8);
  margin: 0;
  line-height: 1.5;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.contact-form-wrapper .form-control {
  background: rgba(10, 25, 41, 0.8);
  border: 2px solid rgba(74, 144, 226, 0.2);
  color: var(--default-color);
  border-radius: 10px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: #4a90e2;
  background: rgba(10, 25, 41, 0.9);
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
  transform: translateY(-2px);
}

.contact-form-wrapper .form-control::placeholder {
  color: rgba(168, 213, 226, 0.8);
}

.btn-submit {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-options {
  margin-top: 50px;
}

.contact-option {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-option:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
}

.contact-option:hover::before {
  transform: scaleX(1);
}

.contact-option i {
  font-size: 3rem;
  color: #4a90e2;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-option:hover i {
  color: #6bb6ff;
  transform: scale(1.2) rotate(5deg);
}

.contact-option h4 {
  color: #6bb6ff;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-option:hover h4 {
  color: #4a90e2;
}

.contact-option p {
  color: rgba(232, 244, 248, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.form-check {
  text-align: left;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  color: rgba(232, 244, 248, 0.8);
  font-size: 14px;
}

.form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Feature Card
--------------------------------------------------------------*/
.feature-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  transition: left 0.6s;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-content h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.feature-content p {
  color: rgba(232, 244, 248, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-list li {
  color: rgba(240, 246, 252, 0.7);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  list-style-type: none;
}

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

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

.feature-link:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.tech-stack {
  background: rgba(22, 27, 34, 0.5);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

.tech-stack h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  min-width: 100px;
}

.tech-logo:hover {
  transform: translateY(-3px);
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--accent-color);
}

.tech-logo i {
  font-size: 32px;
  color: var(--accent-color);
}

.tech-logo span {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Content
--------------------------------------------------------------*/
.about-content h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.about-content p {
  color: rgba(232, 244, 248, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.about-features {
  margin-bottom: 30px;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.about-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.about-features .feature-item span {
  color: rgba(232, 244, 248, 0.9);
  font-size: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
}

.about-stats .stat-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.about-stats .stat-item h4 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-stats .stat-item p {
  color: rgba(240, 246, 252, 0.7);
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mission-vision {
  margin-top: 50px;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mission-icon, .vision-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon i, .vision-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.mission-card h4, .vision-card h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.mission-card p, .vision-card p {
  color: rgba(232, 244, 248, 0.8);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Footer Brand
--------------------------------------------------------------*/
.footer-brand .footer-logo {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-description {
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.footer-links h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

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

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

.footer-links ul li a {
  color: rgba(240, 246, 252, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.footer-contact h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact .contact-item strong {
  color: var(--heading-color);
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-contact .contact-item p {
  color: rgba(240, 246, 252, 0.7);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}


.footer-bottom {
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  padding-top: 20px;
  margin-top: 30px;
}

.copyright p {
  color: rgba(168, 213, 226, 0.8);
  margin: 0;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(168, 213, 226, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.footer-wrapper {
  background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
  color: #e8f4f8;
  border-top: 1px solid rgba(74, 144, 226, 0.3);
}

.footer-top {
  padding: 3rem 0;
}

.footer-logo {
  color: #4a90e2;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: #a8d5e2;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-twitter {
  background: #4a90e2;
  color: white;
}

.social-link-linkedin {
  background: #2d4a7c;
  color: white;
}

.social-link-github {
  background: #1e3a5f;
  color: white;
}

.social-link-youtube {
  background: #3d5a80;
  color: white;
}

.social-link-instagram {
  background: linear-gradient(45deg, #2d4a7c 0%, #3d5a80 25%, #4a90e2 50%, #5ba3f5 75%, #6bb6ff 100%);
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-newsletter {
  background: rgba(27, 38, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.5);
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.newsletter-title {
  color: #6bb6ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.newsletter-text {
  color: #a8d5e2;
  margin-bottom: 1.5rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-input {
  flex: 1;
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  background: rgba(13, 27, 42, 0.5);
  color: #e8f4f8;
}

.newsletter-button {
  background: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 74, 124, 0.4);
}

.newsletter-privacy {
  color: #87ceeb;
  font-size: 0.875rem;
}

.newsletter-link {
  color: #4a90e2;
  text-decoration: none;
}

.newsletter-link:hover {
  text-decoration: underline;
}

.footer-links-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.footer-links-title {
  color: #6bb6ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #a8d5e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #4a90e2;
}

.footer-contact-title {
  color: #6bb6ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.footer-contact-icon-building {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
}

.footer-contact-icon-geo {
  background: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%);
  color: white;
}

.footer-contact-icon-phone {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
}

.footer-contact-icon-email {
  background: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%);
  color: white;
}

.footer-contact-icon-globe {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
}

.footer-contact-icon-card {
  background: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%);
  color: white;
}

.footer-contact-icon-shield {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
}

.footer-contact-icon-receipt {
  background: linear-gradient(135deg, #2d4a7c 0%, #4a90e2 100%);
  color: white;
}

.footer-contact-icon-support {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
}

.footer-contact-icon-support {
  background: #6bb6ff;
  color: white;
}

.footer-contact-text {
  flex: 1;
}

.footer-contact-label {
  color: #e8f4f8;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  color: #a8d5e2;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.copyright-text {
  color: #a8d5e2;
  margin: 0;
}

.copyright-brand {
  color: #4a90e2;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: #a8d5e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #4a90e2;
}

.disclaimer-section {
  background: #0a1929;
  padding: 20px 0;
  border-top: 1px solid rgba(45, 74, 124, 0.3);
}

.disclaimer-text {
  color: rgba(168, 213, 226, 0.8);
  margin: 0;
  font-size: 14px;
}

.disclaimer-link {
  color: var(--accent-color);
  text-decoration: none;
}

.disclaimer-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-stats {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 15px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .newsletter-button {
    border-radius: 0 0 15px 15px;
    width: 100%;
  }
  
  .footer-contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contact-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Advanced Animations & Scroll Effects
--------------------------------------------------------------*/

/* Scroll Reveal Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(74, 144, 226, 0.8), 0 0 60px rgba(107, 182, 255, 0.4);
  }
}

/* Scroll-triggered animations */
.scroll-reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
  opacity: 1;
}

.scroll-reveal.fade-up {
  transform: translateY(50px);
}

.scroll-reveal.fade-up.revealed {
  transform: translateY(0);
}

.scroll-reveal.fade-down {
  transform: translateY(-50px);
}

.scroll-reveal.fade-down.revealed {
  transform: translateY(0);
}

.scroll-reveal.fade-left {
  transform: translateX(-50px);
}

.scroll-reveal.fade-left.revealed {
  transform: translateX(0);
}

.scroll-reveal.fade-right {
  transform: translateX(50px);
}

.scroll-reveal.fade-right.revealed {
  transform: translateX(0);
}

.scroll-reveal.scale {
  transform: scale(0.8);
}

.scroll-reveal.scale.revealed {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Enhanced Hero Section - Complete Redesign
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1929 0%, #0d1b2a 30%, #1b263b 70%, #0a1929 100%);
  isolation: isolate;
}

.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 182, 255, 0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(74, 144, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 226, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-block {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(107, 182, 255, 0.1) 100%);
  border: 1px solid rgba(74, 144, 226, 0.4);
  border-radius: 100px;
  color: #6bb6ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.hero-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  border-radius: 50%;
  color: white;
  font-size: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.hero-title-text {
  display: inline-block;
  position: relative;
}

.hero-title-main {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 50%, #6bb6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-title-accent {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 50%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.hero-title-brand {
  color: #4a90e2;
  position: relative;
}

.hero-title-accent-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.hero-title-accent-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 144, 226, 0.5) 0%, transparent 100%);
  max-width: 200px;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(232, 244, 248, 0.85);
  margin-bottom: 3rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hero-stat-item:hover {
  transform: translateY(-5px);
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6bb6ff;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
  line-height: 1;
}

.hero-stat-item:hover .hero-stat-number {
  color: #4a90e2;
  transform: scale(1.1);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(232, 244, 248, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 226, 0.3) 50%, transparent 100%);
  flex-shrink: 0;
}

.hero-visual-block {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-card {
  position: absolute;
  background: rgba(27, 38, 59, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 6s ease-in-out infinite;
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(74, 144, 226, 0.6);
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.4);
}

.hero-card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  width: 280px;
}

.hero-card-2 {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
  width: 280px;
  height: 100px;
  transform: translateY(-50%);
}

.hero-card-3 {
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
  width: 280px;
  height: 100px;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(107, 182, 255, 0.2) 100%);
  border-radius: 12px;
  color: #6bb6ff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #e8f4f8;
  margin-bottom: 0.25rem;
}

.hero-card-content p {
  font-size: 0.875rem;
  color: rgba(232, 244, 248, 0.6);
  margin: 0;
}

.hero-design-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-design-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(74, 144, 226, 0.2);
  animation: rotate 20s linear infinite;
}

.hero-design-circle-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 20%;
  animation-duration: 25s;
}

.hero-design-circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-duration: 30s;
  animation-direction: reverse;
}

.hero-design-square {
  position: absolute;
  border: 2px solid rgba(107, 182, 255, 0.15);
}

.hero-design-square-1 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  animation: rotateSquare 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateSquare {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4), 0 0 0 0 rgba(74, 144, 226, 0.5);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

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

.hero-button-primary:hover::before {
  width: 300px;
  height: 300px;
}

.hero-button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.hero-button-primary:hover .hero-button-shine {
  left: 100%;
}

.hero-button-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.6), 0 0 0 8px rgba(74, 144, 226, 0.1);
}

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

.hero-button-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-button-primary:hover .hero-button-icon {
  transform: translateX(5px);
}

.hero-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: rgba(74, 144, 226, 0.08);
  border: 2px solid rgba(74, 144, 226, 0.3);
  color: #6bb6ff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-button-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
  transition: left 0.6s;
}

.hero-button-secondary:hover::before {
  left: 100%;
}

.hero-button-icon-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.2);
  border-radius: 50%;
  color: #6bb6ff;
  font-size: 0.875rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.hero-button-secondary:hover {
  background: rgba(74, 144, 226, 0.15);
  border-color: rgba(74, 144, 226, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.3);
}

.hero-button-secondary:hover .hero-button-icon-circle {
  background: rgba(74, 144, 226, 0.3);
  transform: scale(1.1) rotate(90deg);
}

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

.hero-visual-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.hero-main-visual {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(74, 144, 226, 0.2),
    inset 0 0 100px rgba(74, 144, 226, 0.1);
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(27, 38, 59, 0.6) 100%);
}

.hero-visual-gradient {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.hero-main-visual:hover .hero-image {
  transform: scale(1.1);
}

.hero-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(107, 182, 255, 0.08) 50%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.95) 0%, rgba(13, 27, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 144, 226, 0.4);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(74, 144, 226, 0.2);
  animation: floatCard 6s ease-in-out infinite;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-card-1 {
  top: 8%;
  right: -8%;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 15%;
  left: -8%;
  animation-delay: 2s;
}

.hero-card-3 {
  top: 45%;
  right: -5%;
  animation-delay: 4s;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(107, 182, 255, 0.2) 100%);
  border-radius: 12px;
  color: #6bb6ff;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.hero-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-card-title {
  font-weight: 700;
  color: #6bb6ff;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-card-subtitle {
  font-size: 0.75rem;
  color: rgba(232, 244, 248, 0.6);
  font-weight: 500;
}

.hero-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(20px);
  z-index: 0;
}

.hero-floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(74, 144, 226, 0.6);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(74, 144, 226, 0.3),
    0 0 40px rgba(74, 144, 226, 0.3);
}

.hero-floating-card:hover .hero-card-glow {
  opacity: 1;
}

.hero-floating-card:hover .hero-card-icon {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.5) 0%, rgba(107, 182, 255, 0.4) 100%);
  transform: rotate(5deg) scale(1.1);
  color: #ffffff;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 244, 248, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  animation: fadeInUp 1s ease-out 2s both;
}

.hero-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(74, 144, 226, 0.8) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/*--------------------------------------------------------------
# Enhanced Feature Cards - Complete Redesign
--------------------------------------------------------------*/
.features {
  position: relative;
  overflow: hidden;
}

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

.features-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 182, 255, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.section-title-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(107, 182, 255, 0.1) 100%);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 100px;
  color: #6bb6ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.95) 0%, rgba(13, 27, 42, 0.9) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, #6bb6ff 50%, #4a90e2 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.feature-card-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(74, 144, 226, 0.3),
    0 0 40px rgba(74, 144, 226, 0.2);
}

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

.feature-card:hover .feature-card-hover-effect {
  width: 300px;
  height: 300px;
}

.feature-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-icon-wrapper {
  position: relative;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(107, 182, 255, 0.15) 100%);
  border: 2px solid rgba(74, 144, 226, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.feature-icon i {
  font-size: 2.25rem;
  color: #6bb6ff;
  transition: all 0.5s ease;
}

.feature-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, transparent 70%);
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(15px);
  z-index: 1;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.35) 0%, rgba(107, 182, 255, 0.3) 100%);
  border-color: rgba(74, 144, 226, 0.6);
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.feature-card:hover .feature-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.feature-card:hover .feature-icon-glow {
  opacity: 1;
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(107, 182, 255, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-number {
  opacity: 0.8;
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #6bb6ff;
  font-weight: 700;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.feature-card:hover .feature-content h4 {
  color: #4a90e2;
}

.feature-content p {
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(232, 244, 248, 0.7);
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.feature-list li i {
  color: #4a90e2;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-list li {
  color: rgba(232, 244, 248, 0.9);
  transform: translateX(5px);
}

.feature-card:hover .feature-list li i {
  color: #6bb6ff;
  transform: scale(1.2);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #4a90e2;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  padding: 0.5rem 0;
}

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

.feature-link i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.feature-card:hover .feature-link {
  color: #6bb6ff;
}

.feature-card:hover .feature-link span {
  transform: translateX(3px);
}

.feature-card:hover .feature-link i {
  transform: translateX(8px);
}

/*--------------------------------------------------------------
# Enhanced Testimonial Cards
--------------------------------------------------------------*/
.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.9) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(74, 144, 226, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: #4a90e2;
  transform: scale(1.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: #6bb6ff;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.testimonial-info p {
  color: rgba(232, 244, 248, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.rating i {
  color: #4a90e2;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .rating i {
  color: #6bb6ff;
  transform: scale(1.2);
}

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

.testimonial-content p {
  color: rgba(232, 244, 248, 0.9);
  line-height: 1.8;
  font-style: italic;
}

/*--------------------------------------------------------------
# Enhanced Tech Stack
--------------------------------------------------------------*/
.tech-stack {
  text-align: center;
  padding: 3rem 0;
}

.tech-stack h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #6bb6ff;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(74, 144, 226, 0.05);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 120px;
}

.tech-logo i {
  font-size: 2.5rem;
  color: #4a90e2;
  transition: all 0.3s ease;
}

.tech-logo span {
  color: rgba(232, 244, 248, 0.8);
  font-weight: 600;
  font-size: 0.875rem;
}

.tech-logo:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(74, 144, 226, 0.15);
  border-color: #4a90e2;
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.tech-logo:hover i {
  color: #6bb6ff;
  transform: scale(1.2) rotate(5deg);
}

/*--------------------------------------------------------------
# Enhanced Trust Indicators
--------------------------------------------------------------*/
.trust-indicators {
  padding: 3rem 0;
}

.trust-stat {
  padding: 2rem;
  background: rgba(74, 144, 226, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-5px);
  background: rgba(74, 144, 226, 0.1);
  border-color: #4a90e2;
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.trust-stat h3 {
  font-size: 2rem;
  color: #4a90e2;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.trust-stat:hover h3 {
  color: #6bb6ff;
}

.trust-stat p {
  color: rgba(232, 244, 248, 0.7);
  margin: 0;
}

/*--------------------------------------------------------------
# Enhanced Section Titles
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #6bb6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.125rem;
  color: rgba(232, 244, 248, 0.7);
  margin-top: 1rem;
}

/*--------------------------------------------------------------
# Enhanced Form Elements
--------------------------------------------------------------*/
.form-control {
  background: rgba(13, 27, 42, 0.5);
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(13, 27, 42, 0.8);
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: rgba(232, 244, 248, 0.5);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
}

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

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

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(74, 144, 226, 0.3);
  color: #4a90e2;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(74, 144, 226, 0.1);
  border-color: #4a90e2;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/*--------------------------------------------------------------
# Enhanced Contact Items
--------------------------------------------------------------*/
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(74, 144, 226, 0.05);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 15px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  background: rgba(74, 144, 226, 0.1);
  border-color: #4a90e2;
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(74, 144, 226, 0.1);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(74, 144, 226, 0.2);
  border-color: #4a90e2;
  transform: rotate(5deg) scale(1.1);
}

.contact-icon i {
  font-size: 1.5rem;
  color: #4a90e2;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon i {
  color: #6bb6ff;
}

.contact-details h4 {
  color: #6bb6ff;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-details p {
  color: rgba(232, 244, 248, 0.7);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Enhanced FAQ Section
--------------------------------------------------------------*/
.faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
}

.faq-item.active {
  border-color: #4a90e2;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.25);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-header {
  padding-left: 2rem;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon i {
  color: #4a90e2;
  font-size: 1.25rem;
}

.faq-item.active .faq-icon {
  background: rgba(74, 144, 226, 0.2);
  transform: rotate(360deg);
}

.faq-header h3 {
  flex: 1;
  font-size: 1.125rem;
  color: #6bb6ff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-header h3 span {
  color: #4a90e2;
  font-weight: 700;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle i {
  color: #4a90e2;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: rgba(74, 144, 226, 0.2);
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-content p {
  color: rgba(232, 244, 248, 0.8);
  line-height: 1.8;
  margin: 0;
}

/*--------------------------------------------------------------
# Enhanced About Section
--------------------------------------------------------------*/
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(27, 38, 59, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6bb6ff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.about-badge i {
  font-size: 1.5rem;
  color: #4a90e2;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(74, 144, 226, 0.05);
  border-left: 3px solid rgba(74, 144, 226, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(74, 144, 226, 0.1);
  border-left-color: #4a90e2;
  transform: translateX(10px);
}

.feature-item i {
  color: #4a90e2;
  font-size: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(74, 144, 226, 0.05);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(74, 144, 226, 0.1);
  border-color: #4a90e2;
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.stat-item h4 {
  font-size: 2rem;
  color: #4a90e2;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.stat-item:hover h4 {
  color: #6bb6ff;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(13, 27, 42, 0.8) 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
}

.mission-card:hover::before, .vision-card:hover::before {
  transform: scaleX(1);
}

.mission-icon, .vision-icon {
  width: 60px;
  height: 60px;
  background: rgba(74, 144, 226, 0.1);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.mission-icon i, .vision-icon i {
  font-size: 1.75rem;
  color: #4a90e2;
  transition: all 0.4s ease;
}

.mission-card:hover .mission-icon, .vision-card:hover .vision-icon {
  background: rgba(74, 144, 226, 0.2);
  border-color: #4a90e2;
  transform: rotate(5deg) scale(1.1);
}

.mission-card:hover .mission-icon i, .vision-card:hover .vision-icon i {
  color: #6bb6ff;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Enhanced Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
}

.scroll-top i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.scroll-top:hover i {
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Parallax Effects
--------------------------------------------------------------*/
.parallax-element {
  transition: transform 0.3s ease-out;
}

/*--------------------------------------------------------------
# Loading States
--------------------------------------------------------------*/
@keyframes skeleton {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton {
  animation: skeleton 1.5s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(74, 144, 226, 0.1) 0px, rgba(74, 144, 226, 0.2) 40px, rgba(74, 144, 226, 0.1) 80px);
  background-size: 200px 100%;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  position: relative;
  overflow: hidden;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.95) 0%, rgba(13, 27, 42, 0.9) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid rgba(74, 144, 226, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card-featured {
  border-color: rgba(74, 144, 226, 0.5);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #6bb6ff;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(232, 244, 248, 0.7);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #6bb6ff;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: rgba(232, 244, 248, 0.6);
  font-weight: 500;
}

.pricing-description {
  color: rgba(232, 244, 248, 0.7);
  font-size: 0.9375rem;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(232, 244, 248, 0.8);
  font-size: 0.9375rem;
}

.pricing-features li i {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-features li i.bi-check-circle-fill {
  color: #4a90e2;
  font-size: 1rem;
}

.pricing-features li i.bi-x-circle {
  color: rgba(232, 244, 248, 0.3);
  font-size: 1rem;
}

.pricing-footer {
  margin-top: 2rem;
  text-align: center;
}

.pricing-button {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(107, 182, 255, 0.15) 100%);
  border: 2px solid rgba(74, 144, 226, 0.4);
  color: #6bb6ff;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1rem;
}

.pricing-button:hover {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.pricing-button-featured {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  color: white;
  border-color: transparent;
}

.pricing-button-featured:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.pricing-note {
  font-size: 0.875rem;
  color: rgba(232, 244, 248, 0.6);
  margin: 0;
}

.pricing-note-section {
  padding: 2rem;
  background: rgba(74, 144, 226, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.pricing-note-section p {
  margin: 0;
  color: rgba(232, 244, 248, 0.8);
  font-size: 0.9375rem;
}

.pricing-note-section a {
  color: #6bb6ff;
  text-decoration: underline;
}

.pricing-note-section a:hover {
  color: #4a90e2;
}

/*--------------------------------------------------------------
# Content Section (Privacy, Terms, Cookie Pages)
--------------------------------------------------------------*/
.content-section {
  padding: 6rem 0;
}

.content-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.content-section .section-title h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.content-section .section-title p {
  color: rgba(232, 244, 248, 0.8);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

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

.content-section .content h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(74, 144, 226, 0.3);
}

.content-section .content h3:first-child {
  margin-top: 0;
}

.content-section .content p {
  color: rgba(232, 244, 248, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.content-section .content ul li {
  color: rgba(232, 244, 248, 0.9);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.7;
}

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

.content-section .content strong {
  color: var(--heading-color);
  font-weight: 600;
}

.content-section .content span {
  color: rgba(232, 244, 248, 0.8);
}

@media (max-width: 768px) {
  .content-section {
    padding: 4rem 0;
  }
  
  .content-section .section-title h2 {
    font-size: 2rem;
  }
  
  .content-section .content h3 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Thanks Section
--------------------------------------------------------------*/
.thanks {
  padding: 6rem 0;
  text-align: center;
}

.thanks-icon {
  font-size: 5rem;
  color: #4a90e2;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6bb6ff;
  margin-bottom: 1.5rem;
}

.thanks-description {
  font-size: 1.125rem;
  color: rgba(232, 244, 248, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.thanks-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.thanks-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(232, 244, 248, 0.9);
  font-size: 1rem;
}

.thanks-info-item i {
  color: #4a90e2;
  font-size: 1.25rem;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-icon {
    font-size: 4rem;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .thanks-actions .hero-button-primary,
  .thanks-actions .hero-button-secondary {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Hero Section Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-visual-block {
    min-height: 400px;
    margin-top: 3rem;
  }
  
  .hero-card {
    position: relative;
    width: 100% !important;
    margin-bottom: 1.5rem;
  }
  
  .hero-card-1,
  .hero-card-2,
  .hero-card-3 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
  
  .hero-design-circle-1,
  .hero-design-circle-2 {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 144, 226, 0.3) 50%, transparent 100%);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-button-primary,
  .hero-button-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Hero Pricing Section
--------------------------------------------------------------*/
.hero-pricing-section {
  position: relative;
  min-height: auto;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1929 0%, #0d1b2a 30%, #1b263b 70%, #0a1929 100%);
  isolation: isolate;
}

.hero-pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-pricing-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.hero-pricing-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-pricing-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 182, 255, 0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero-pricing-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

.hero-pricing-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(74, 144, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 226, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  animation: gridMove 20s linear infinite;
}

.hero-pricing-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.hero-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(107, 182, 255, 0.1) 100%);
  border: 1px solid rgba(74, 144, 226, 0.4);
  border-radius: 100px;
  color: #6bb6ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.hero-pricing-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  border-radius: 50%;
  color: white;
  font-size: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-pricing-badge-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

.hero-pricing-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-pricing-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.hero-pricing-title-text {
  display: inline-block;
  position: relative;
}

.hero-pricing-title-main {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 50%, #6bb6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

.hero-pricing-title-accent {
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 50%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.hero-pricing-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(232, 244, 248, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.hero-pricing-section .pricing-card {
  position: relative;
  z-index: 2;
  background: rgba(27, 38, 59, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-pricing-section .pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
}

.hero-pricing-section .pricing-card-featured {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(107, 182, 255, 0.1) 100%);
  border: 2px solid rgba(74, 144, 226, 0.5);
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.4);
}

.hero-pricing-section .pricing-card-featured:hover {
  box-shadow: 0 30px 80px rgba(74, 144, 226, 0.5);
}

@media (max-width: 992px) {
  .hero-pricing-section {
    padding: 120px 0 80px;
  }
  
  .hero-pricing-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-pricing-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero-pricing-section {
    padding: 100px 0 60px;
  }
  
  .hero-pricing-header {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Responsive Enhancements
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .hero-visual-container {
    height: 400px;
  }
  
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    gap: 0.5rem;
  }
  
  .hero-title-line {
    gap: 0.75rem;
  }
  
  .hero-title-accent-line {
    max-width: 100px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-stat-item {
    padding: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-button-primary,
  .hero-button-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-visual-container {
    height: 300px;
  }
  
  .hero-scroll-indicator {
    bottom: 20px;
  }
  
  .tech-logos {
    gap: 1rem;
  }
  
  .tech-logo {
    min-width: 100px;
    padding: 1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}
