/* Fonts */
:root {
  --default-font: "Lacquer", system-ui, -apple-system, "Segoe UI", Lacquer, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lacquer", sans-serif;
  --nav-font: "Lacquer", 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: #1a1a2e;
  --default-color: #ffffff;
  --heading-color: #ff6b6b;
  --accent-color: #4ecdc4;
  --surface-color: #16213e;
  --contrast-color: #ffffff;
  --bg-color: #0f3460;
  --nav-color: #ffffff;
  --nav-hover-color: #4ecdc4;
  --nav-mobile-background-color: #16213e;
  --nav-dropdown-background-color: #0f3460;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #4ecdc4;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  --shadow-primary: 0 10px 30px rgba(102, 126, 234, 0.3);
  --shadow-secondary: 0 15px 35px rgba(240, 147, 251, 0.3);
  --shadow-accent: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* Color Presets */

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #2c3e50;
  --heading-color: #e74c3c;
}

.dark-background {
  --background-color: #1a1a2e;
  --default-color: #ffffff;
  --heading-color: #ff6b6b;
  --surface-color: #16213e;
  --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;
  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(--contrast-color);
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  transition: all 0.5s ease;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header .logo img {
  max-height: 40px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.sitename {
  border-radius: 20%;
}

.header .logo h3 {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--gradient-accent);
  font-size: 14px;
  padding: 12px 30px;
  margin: 0 0 0 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-accent);
  border: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

/*--------------------------------------------------------------
# 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: 12px 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;
    border: 2px solid transparent;
  }

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

  .navmenu li a {
    border: 2px solid transparent;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    border-color: var(--accent-color);
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 15px 0;
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(20px);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 12px 25px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border: none;
    margin: 0;
    border-radius: 0;
  }

  .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);
    background: rgba(78, 205, 196, 0.1);
  }

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

/* 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: all 0.3s ease;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
    transform: scale(1.1);
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 20px 0;
    margin: 0;
    background: rgba(15, 52, 96, 0.98);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 25px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 15px;
    margin: 5px 15px;
    border: 1px solid transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(78, 205, 196, 0.2);
    border-radius: 50%;
    color: var(--accent-color);
  }

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--accent-color);
    transform: translateX(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: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--accent-color);
  background-color: var(--default-color);
  font-size: 14px;
  position: relative;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  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;
  ;
}

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

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

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--heading-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--heading-color);
  line-height: 1;
}

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

.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;
  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;
  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 {
  color: var(--default-color);
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

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

/*--------------------------------------------------------------
# Section Spacing
--------------------------------------------------------------*/
.section {
  padding: 80px 0;
  position: relative;
}

.section.light-background {
  background: var(--light-background);
}

.section.dark-background {
  background: var(--dark-background);
}

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

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

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

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero .download-btn:hover {
  background: var(--accent-color);
  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 ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  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;
  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-color: var(--bg-color);
  color: var(--contrast-color);
  margin-bottom: 1rem;
}

.features .icon-box {
  display: flex;
  align-items: center;
  width: 30%;
  margin: 1rem;
}

.features .icon-box {
  background: var(--bg-primary);
  border-bottom: 5px solid #f0f0f0;;
  padding: 0.5rem 0;
}

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

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

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

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

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

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 26px;
}

.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: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #e0e0e0;
  ;
  background-color: var(--background-color);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 15px;
}

.feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.feature-item strong {
  font-size: 18px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card {
  background-color: var(--background-color);
  ;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

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

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  ;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: var(--gradient-secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.faq .section-title {
  position: relative;
  z-index: 2;
}

.faq .section-title h2 {
  color: var(--contrast-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.faq .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq .faq-container {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.faq .faq-container .faq-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 0;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.faq .faq-container .faq-item:hover::before {
  opacity: 0.1;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.faq .faq-container .faq-item .faq-card {
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item .faq-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.faq .faq-container .faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--contrast-color);
}

.faq .faq-container .faq-item h3 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

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

.faq .faq-container .faq-item .faq-text {
  flex: 1;
}

.faq .faq-container .faq-item .faq-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 15px 0 0 0;
  font-size: 1rem;
  opacity: 0.9;
}

.faq .faq-container .faq-item .faq-text h3 {
  margin-bottom: 15px;
}

.faq .faq-container .faq-item .faq-text h3 span {
  color: var(--accent-color);
  font-weight: 700;
}

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

/* FAQ Animation States */
.faq .faq-container .faq-item.faq-active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.faq .faq-container .faq-item.faq-active .faq-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-color);
}

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

.faq .faq-container .faq-item.faq-active .faq-text p {
  opacity: 1;
}

/* FAQ Grid Layout */
.faq .faq-container .row {
  margin: 0 -15px;
}

.faq .faq-container .faq-elem {
  padding: 0 15px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq .faq-container .faq-item .faq-card {
    padding: 20px;
  }
  
  .faq .faq-container .faq-item .faq-icon {
    font-size: 2rem;
    margin-right: 15px;
  }
  
  .faq .faq-container .faq-item h3 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--gradient-accent);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
  opacity: 0.2;
}

.contact .section-title {
  position: relative;
  z-index: 2;
}

.contact .section-title h2 {
  color: var(--contrast-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact .info-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.contact .info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact .info-item:hover::before {
  opacity: 0.1;
}

.contact .info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact .info-item i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
  transition: all 0.3s ease;
}

.contact .info-item:hover i {
  transform: scale(1.1);
  color: var(--contrast-color);
}

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.contact .info-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}

.contact .php-email-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.contact .php-email-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

.contact .php-email-form:hover::before {
  opacity: 0.05;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: var(--contrast-color);
  font-size: 1rem;
  padding: 15px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px 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.7);
  font-weight: 400;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}

.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.3), 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 15px 40px rgba(102, 126, 234, 0.4);
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact .php-email-form .error-message {
  background: rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.5);
  color: #e74c3c;
}

.contact .php-email-form .sent-message {
  background: rgba(46, 204, 113, 0.2);
  border-color: rgba(46, 204, 113, 0.5);
  color: #2ecc71;
}

.contact .php-email-form .loading {
  background: rgba(52, 152, 219, 0.2);
  border-color: rgba(52, 152, 219, 0.5);
  color: #3498db;
}

/* Contact Form Grid */
.contact .php-email-form .row {
  margin: 0 -15px;
}

.contact .php-email-form .col-md-6,
.contact .php-email-form .col-md-12,
.contact .php-email-form .col-12 {
  padding: 0 15px;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 30px 20px;
  }
  
  .contact .info-item {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .contact .section-title h2 {
    font-size: 2.5rem;
  }
}

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Lacquer", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  ;
  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;
  ;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: var(--accent-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(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

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

.about_elem {
  margin-bottom: 2rem;
}


.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #999;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff6347;
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #e76f51;
}

.swiper-pagination.hidden {
  display: none;
}

.swiper-pagination .swiper-pagination-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
  font-size: 20px;
  color: #ff6347;
  transition: color 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
  color: #e76f51;
}

.testimonial-img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.growth-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.growth h2 {
  color: var(--contrast-color);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.growth .lead {
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.growth .btn-primary {
  background: var(--gradient-accent);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow-accent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.growth .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.growth .features {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.growth .features .section-title h2 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.growth .features .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.growth .icon-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.growth .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.growth .icon-box:hover::before {
  opacity: 0.1;
}

.growth .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.growth .icon-box i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
  transition: all 0.3s ease;
}

.growth .icon-box:hover i {
  transform: scale(1.1);
  color: var(--contrast-color);
}

.growth .icon-box h4 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.growth .icon-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

.btn-getstarted {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  box-shadow: var(--shadow-primary);
}

.btn-getstarted:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.download-btn {
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

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

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

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
  color: var(--contrast-color);
}

.buy-btn {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-accent);
  border: none;
  cursor: pointer;
}

.buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Disclaimers
--------------------------------------------------------------*/
.disclaimer-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.disclaimer-box p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.disclaimer-box strong {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Google Ads Compliance
--------------------------------------------------------------*/
/* Ensure all text is readable and compliant */
.testimonial-item p,
.faq-item p,
.about p,
.features p,
.hero p {
  line-height: 1.6;
  color: var(--default-color);
}

/* Remove any potentially misleading elements */
.pricing-item .featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.pricing-item .featured::before {
  content: 'Más Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Ensure clear pricing information */
.pricing-item h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 15px 0;
}

.pricing-item h4 sup {
  font-size: 1rem;
  vertical-align: super;
}

/* Clear call-to-action buttons */
.buy-btn,
.download-btn,
.btn-primary {
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-btn:hover,
.download-btn:hover,
.btn-primary:hover {
  text-decoration: none;
  color: var(--contrast-color);
}