/* Fonts */
:root {
  --default-font: "IM Fell Double Pica", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "IM Fell Double Pica", serif;
  --nav-font: "IM Fell Double Pica", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #faf5f0;
--default-color: #8b4513;
--heading-color: #654321;
--accent-color: #a0522d;
--surface-color: #ffffff;
--contrast-color: #2c1810;
--bg-color: #f5ebe0;
--nav-color: #8b4513;
--nav-hover-color: #a0522d;
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #faf5f0;
--nav-dropdown-color: #2c1810;
--nav-dropdown-hover-color: #a0522d;


}

/* Color Presets */

.light-background {
  --background-color: #faf5f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2c1810;
  --default-color: #8b4513;
  --heading-color: #a0522d;
  --surface-color: #3d2817;
  --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: #ef4444;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #16a34a;
  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(--default-color);
  background-color: var(--bg-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  ;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

  .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 {
    padding: 8px 11px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li a {
    border-bottom: 1px solid var(--accent-color);

    margin: 0 1rem;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;

    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

  .navmenu .dropdown ul ul {
    background-color: rgba(34, 197, 94, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(34, 197, 94, 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(15, 10, 26, 0.95);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-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: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-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: color-mix(in srgb, var(--default-color), transparent 20%);
  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;
}

/* New Footer Styles */
.footer .footer-info {
  margin-bottom: 30px;
}

.footer .footer-info .footer-logo h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.footer .footer-info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 0;
}

.footer .social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-links .social-link:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

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

.footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.footer .footer-contact .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.footer .footer-contact .contact-item span {
  line-height: 1.6;
}

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

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

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

/* Header Nav Link Styles */
.header .navmenu .nav-link {
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  font-size: 24px;
}

.header .navmenu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.header .navmenu .nav-link:hover::after,
.header .navmenu .nav-link.active::after {
  width: 100%;
}

/*--------------------------------------------------------------
# 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,
.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: 90vh;
  position: relative;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.15), transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(74, 222, 128, 0.1), transparent 50%);
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(34, 197, 94, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(74, 222, 128, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(192, 132, 252, 0.4), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(34, 197, 94, 0.3), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(74, 222, 128, 0.2), transparent);
  background-size: 200% 200%;
  animation: particles-move 20s linear infinite;
}

@keyframes particles-move {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(74, 222, 128, 0.2));
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--default-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--contrast-color);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  flex-wrap: wrap;
}

.review-desc-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: var(--contrast-color);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
}

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

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

.btn-hero-secondary {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--default-color);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero-trust {
  margin-top: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  font-weight: 500;
}

.trust-badge i {
  color: var(--accent-color);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  height: 600px;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glow-pulse 4s ease-in-out infinite;
}

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

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(74, 222, 128, 0.15));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
  animation: float 6s ease-in-out infinite;
}

.float-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 10px;
  color: var(--contrast-color);
  font-size: 20px;
}

.float-text {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
}

.float-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.float-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1.5s;
}

.float-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 3s;
}

.float-4 {
  bottom: 15%;
  right: 5%;
  animation-delay: 4.5s;
}

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

.hero-main-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
}

.visual-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(26, 15, 46, 0.9), rgba(45, 27, 61, 0.9));
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.4);
}

.visual-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.visual-card h4 {
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.visual-card p {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 0.9rem;
  margin: 0;
}

.visual-card-1 {
  top: -80px;
  left: 0;
  animation: card-float-1 4s ease-in-out infinite;
}

.visual-card-2 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: card-float-2 5s ease-in-out infinite;
}

.visual-card-3 {
  bottom: -60px;
  left: 20%;
  animation: card-float-3 6s ease-in-out infinite;
}

@keyframes card-float-1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes card-float-2 {
  0%, 100% { transform: translateY(-50%) rotate(2deg); }
  50% { transform: translateY(-65%) rotate(-2deg); }
}

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

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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;;
  border-radius: 1rem;
  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: #1a0f2e;
  line-height: 1.5;
}

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


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

/* Gallery Section - Old testimonials styles removed */

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

  .pricing-section,
  .reviews-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) {
  .plan-price {
    font-size: 2rem;
  }

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.plans {
  padding: 120px 0;
  position: relative;
}

.plan-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.25);
  border-color: var(--default-color);
}

.plan-card.plan-card-popular {
  border-color: var(--default-color);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(74, 222, 128, 0.1));
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.plan-card.plan-card-popular:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.3);
}

.plan-popular-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(34, 197, 94, 0.1);
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.plan-price .plan-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--default-color);
}

.plan-price .plan-amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plan-price .plan-period {
  font-size: 1rem;
  color: var(--contrast-color);
  opacity: 0.7;
}

.plan-description {
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.95rem;
  margin: 0;
}

.plan-savings {
  margin-top: 15px;
  padding: 10px 15px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 600;
}

.pricing-savings i {
  color: #fbbf24;
  margin-right: 5px;
}

.plan-body {
  flex: 1;
  margin-bottom: 30px;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: var(--contrast-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-features li i {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features li .bi-check-circle-fill {
  color: #10b981;
}

.pricing-features li .bi-x-circle {
  color: rgba(255, 255, 255, 0.3);
}

.plan-features-list li .plan-na {
  opacity: 0.5;
  text-decoration: line-through;
}

.plan-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(34, 197, 94, 0.1);
}

.btn-plan {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  margin-bottom: 12px;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: white;
}

.btn-plan-popular {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.plan-note {
  font-size: 0.85rem;
  color: var(--contrast-color);
  opacity: 0.7;
  margin: 0;
}

.plan-comparison {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px;
  margin-top: 50px;
}

.plan-comparison-table {
  margin: 0;
  color: var(--contrast-color);
}

.comparison-table thead th {
  background: rgba(34, 197, 94, 0.1);
  color: var(--heading-color);
  font-weight: 700;
  padding: 15px;
  text-align: center;
  border: none;
}

.comparison-table tbody td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.05);
}

.pricing-faq {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px;
}

.faq-item-simple {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

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

.faq-item-simple h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.faq-item-simple h5 i {
  color: var(--default-color);
}

.faq-item-simple p {
  color: var(--contrast-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

.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;
  border-radius: 1rem;
}

.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: #10b981;
  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: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: none;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.pricing .buy-btn:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: var(--contrast-color);
}

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

.pricing .featured .pricing-item {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.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 .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 1rem
  ;
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.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: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.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 .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  ;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.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: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
  ;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding: 60px 0;
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  color: var(--contrast-color);
  border: 2px solid rgba(34, 197, 94, 0.3);
  padding: 0;
  font-family: "IM Fell Double Pica", serif;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.2), 0 0 0 1px rgba(34, 197, 94, 0.1);
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

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

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--default-color), var(--accent-color));
}

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

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
}

#cookie-popup .popup-message {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

#cookie-popup .popup-message::before {
  content: '🍪';
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

#cookie-popup .popup-message p {
  flex: 1;
  color: var(--contrast-color);
  font-size: 15px;
  line-height: 1.7;
}

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

#cookie-popup .popup-message a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

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

#cookie-popup button {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  position: relative;
  overflow: hidden;
}

#cookie-popup button::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;
}

#cookie-popup button:hover::before {
  width: 300px;
  height: 300px;
}

#cookie-popup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

#cookie-popup button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

#cookie-popup .cookie-decline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid rgba(34, 197, 94, 0.3);
  box-shadow: none;
}

#cookie-popup .cookie-decline:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--default-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* New Section Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Hero Section */
.hero {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 10, 26, 0.8), rgba(22, 11, 36, 0.9)), url('../img/main.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(34,197,94,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

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

.hero-description {
  font-size: 1.2rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-cards .card {
  position: absolute;
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.floating-cards .card i {
  font-size: 2rem;
  color: var(--default-color);
}

.floating-cards .card span {
  color: var(--contrast-color);
  font-weight: 600;
}

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

.card-2 {
  top: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 4.5s;
}

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

/* About Section */
.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

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

.feature-content p {
  color: var(--contrast-color);
  line-height: 1.6;
}

.about-visual {
  position: relative;
  height: 400px;
}

.progress-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
  backdrop-filter: blur(10px);
}

.ring-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 20%;
  animation: rotate 20s linear infinite;
}

.ring-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 30%;
  animation: rotate 15s linear infinite reverse;
}

.ring-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 50%;
  animation: rotate 25s linear infinite;
}

.ring-content {
  text-align: center;
  color: var(--contrast-color);
}

.ring-content i {
  font-size: 1.5rem;
  color: var(--default-color);
  margin-bottom: 5px;
}

.ring-content span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.feature-card-new {
  background: linear-gradient(135deg, rgba(26, 15, 46, 0.6), rgba(45, 27, 61, 0.6));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 0;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

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

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

.feature-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.4);
  border-color: var(--accent-color);
}

.feature-card-new.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
}

.feature-card-new.featured::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
  animation: featured-glow 3s ease-in-out infinite;
}

@keyframes featured-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.feature-card-header {
  padding: 32px 32px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(74, 222, 128, 0.2));
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-color: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-wrapper i {
  -webkit-text-fill-color: var(--contrast-color);
  filter: brightness(0) invert(1);
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.feature-card-body {
  padding: 0 32px 24px 32px;
}

.feature-card-body h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-card-body p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-card-footer {
  padding: 0 32px 32px 32px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  padding-top: 24px;
}

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

.feature-link:hover {
  color: var(--accent-color);
  gap: 12px;
}

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

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

.feature-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
  border-color: var(--default-color);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-card .feature-icon i {
  font-size: 2rem;
}

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

.feature-card p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.faq-header:hover {
  background: rgba(34, 197, 94, 0.1);
}

.faq-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.faq-header i {
  font-size: 1.2rem;
  color: var(--default-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-content p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.how-it-works {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.how-it-works-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.how-it-works-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

.how-it-works-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(34, 197, 94, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.3;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.step-card-new {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

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

.step-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.25);
  border-color: var(--default-color);
}

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

.step-card-new.featured-step {
  border-color: var(--default-color);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(74, 222, 128, 0.1));
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.step-card-new.featured-step:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.3);
}

.step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-number-wrapper {
  position: relative;
}

.step-number-large {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.step-card-new:hover .step-number-large {
  opacity: 0.3;
}

.step-number-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card-new:hover .step-number-glow {
  opacity: 1;
}

.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.step-card-new:hover .step-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

.step-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.step-card-body {
  margin-bottom: 30px;
}

.step-card-body h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.step-card-body p {
  color: var(--contrast-color);
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.step-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--contrast-color);
  font-size: 0.95rem;
}

.step-features-list li i {
  color: var(--default-color);
  font-size: 1rem;
}

.step-card-footer {
  margin-top: auto;
}

.step-progress {
  width: 100%;
  height: 6px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.step-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--default-color), var(--accent-color));
  border-radius: 10px;
  transition: width 0.6s ease;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.how-it-works-cta {
  margin-top: 40px;
}

.how-it-works-cta p {
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-form {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  color: var(--contrast-color);
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--default-color);
  box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
  color: var(--contrast-color);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

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

.contact-details p {
  color: var(--contrast-color);
  margin: 0;
  line-height: 1.4;
}

/* Testimonials Section */
.reviews {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.reviews-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.8) 0%, rgba(236, 253, 245, 0.6) 100%);
}

.reviews-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
  opacity: 0.5;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.review-card {
  background: linear-gradient(135deg, #ffffff, rgba(250, 245, 255, 0.8));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
  overflow: hidden;
}

.testimonial-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(74, 222, 128, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.2);
  border-color: var(--default-color);
}

.testimonial-card-new:hover::before {
  opacity: 1;
}

.testimonial-card-new.review-card-popular {
  border-color: var(--default-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 245, 255, 0.9));
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
}

.testimonial-card-new.featured-testimonial:hover {
  transform: scale(1.03) translateY(-12px);
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.3);
}

.review-popular-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  z-index: 2;
}

.review-quote-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 4rem;
  color: rgba(34, 197, 94, 0.1);
  line-height: 1;
  z-index: 1;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-rating-new i {
  color: #fbbf24;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-rating-text {
  margin-left: 5px;
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1rem;
}

.review-text {
  color: #1a0f2e;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.review-author-avatar {
  flex-shrink: 0;
}

.review-avatar-gradient {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-card-new:hover .review-avatar-gradient {
  transform: scale(1.1) rotate(5deg);
}

.avatar-gradient i {
  font-size: 1.8rem;
  color: white;
}

.author-info-new h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.author-info-new span {
  color: #1a0f2e;
  font-size: 0.9rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 5px;
}

.review-author-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 600;
}

.author-verified i {
  font-size: 0.9rem;
}

.review-description {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  position: relative;
  z-index: 2;
}

.review-desc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--default-color);
}

.stat-item i {
  font-size: 1rem;
}

.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 245, 255, 0.7));
  border-radius: 24px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.reviews-summary-item {
  text-align: center;
}

.summary-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.reviews-summary-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.reviews-summary-label {
  font-size: 0.9rem;
  color: #1a0f2e;
  opacity: 0.7;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 20px;
    justify-content: space-around;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .floating-cards .card {
    position: relative;
    margin-bottom: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-card-new {
    margin-bottom: 24px;
  }

  .feature-card-header {
    padding: 24px 24px 0 24px;
  }

  .feature-card-body {
    padding: 0 24px 20px 24px;
  }

  .feature-card-footer {
    padding: 0 24px 24px 24px;
  }

  .hero-visual {
    height: 350px;
    margin-top: 40px;
  }

  .float-element {
    padding: 12px 16px;
    font-size: 12px;
  }

  .float-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .visual-card {
    padding: 16px;
  }

  .visual-card h4 {
    font-size: 1rem;
  }

  .visual-card p {
    font-size: 0.8rem;
  }

  /* How It Works Section - Mobile */
  .how-it-works {
    padding: 80px 0;
  }

  .step-card-new {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .step-card-new.featured-step {
    transform: scale(1);
  }

  .step-card-new.featured-step:hover {
    transform: translateY(-12px);
  }

  .step-number-large {
    font-size: 3rem;
  }

  .step-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .step-icon-wrapper i {
    font-size: 1.5rem;
  }

  .step-card-body h4 {
    font-size: 1.3rem;
  }

  .step-card-body p {
    font-size: 0.95rem;
  }

  .how-it-works-cta {
    margin-top: 30px;
  }

  /* Testimonials Section - Mobile */
  .reviews {
    padding: 80px 0;
  }

  .review-card {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .testimonial-card-new.review-card-popular {
    transform: scale(1);
  }

  .testimonial-card-new.featured-testimonial:hover {
    transform: translateY(-12px);
  }

  .review-quote-icon {
    font-size: 3rem;
    top: 20px;
    left: 20px;
  }

  .review-text {
    font-size: 1rem;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .summary-number {
    font-size: 2rem;
  }

  /* Pricing Section - Mobile */
  .plans {
    padding: 80px 0;
  }

  .pricing-card-new {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .pricing-card-new.featured-pricing {
    transform: scale(1);
  }

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

  .plan-price .plan-amount {
    font-size: 2.5rem;
  }

  .plan-comparison {
    padding: 25px 15px;
    overflow-x: auto;
  }

  .plan-comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 8px;
  }

  .pricing-faq {
    padding: 25px 20px;
  }

  /* About Page - Mobile */
  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-visual-card {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-year {
    margin: 0 auto;
  }

  /* Contact Page - Mobile */
  .contact-hero-title {
    font-size: 2rem;
  }

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

  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }

  /* FAQ Page - Mobile */
  .getting-started-card,
  .help-card {
    margin-bottom: 30px;
  }

  /* Privacy/Cookie/Terms Pages - Mobile */
  .privacy-sidebar,
  .cookie-sidebar,
  .terms-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .privacy-main-content,
  .cookie-main-content,
  .terms-main-content {
    padding: 30px 20px;
  }

  .privacy-hero-title,
  .cookie-hero-title,
  .terms-hero-title {
    font-size: 2rem;
  }

  .privacy-usage-grid,
  .cookie-reasons-grid,
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-table,
  .cookie-table {
    font-size: 0.85rem;
  }

  .privacy-table th,
  .privacy-table td,
  .cookie-table th,
  .cookie-table td {
    padding: 10px;
  }

  /* Thanks Page - Mobile */
  .thanks-title {
    font-size: 2.5rem;
  }

  .thanks-icon-circle {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .action-cards {
    grid-template-columns: 1fr;
  }

  /* Cookie Popup - Mobile */
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    transform: translateX(0) translateY(100px);
  }

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

  #cookie-popup .popup-content {
    padding: 20px;
    gap: 15px;
  }

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

  #cookie-popup button {
    width: 100%;
  }

  /* Banner Section - Mobile */
  .banner-section {
    min-height: auto;
  }

  .banner-visual-area {
    min-height: auto;
    padding: 60px 30px;
  }

  .banner-content-area {
    min-height: auto;
    padding: 60px 30px;
  }

  .banner-title {
    font-size: 2.8rem;
  }

  .banner-description {
    font-size: 1.1rem;
  }

  .banner-action-group {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-btn-primary,
  .banner-btn-link {
    width: 100%;
    justify-content: center;
  }

  .banner-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .banner-trust-divider {
    display: none;
  }

  .banner-stats-panel {
    margin-bottom: 40px;
  }

  .banner-stat-value {
    font-size: 2rem;
  }

  /* Solutions - Mobile */
  .solutions {
    padding: 60px 0;
  }

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

  /* Process - Mobile */
  .process {
    padding: 60px 0;
  }

  .process-step-card {
    margin-bottom: 30px;
  }

  .process-step-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}


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

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

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

.footer-legal {
  text-align: center;
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-legal p {
  margin-bottom: 10px;
}

.footer-legal a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-legal strong {
  color: var(--heading-color);
  font-weight: 600;
}

.about_elem {
  margin-bottom: 2rem;
}

/* Impressum Section */
.impressum {
  padding: 80px 0;
}

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

.impressum-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.impressum-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.impressum-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.impressum-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.impressum-section p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

.impressum-section p:last-child {
  margin-bottom: 0;
}

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

.impressum-section a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum-section a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* About Hero Stats */
.about-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-hero-stats .stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.about-hero-stats .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.about-hero-stats .stat-label {
  font-size: 0.95rem;
  color: var(--contrast-color);
  font-weight: 500;
  opacity: 0.9;
}

/* About Hero Section */
.about-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

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

.about-hero-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.about-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-visual-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.about-visual-card:hover {
  transform: translateX(10px);
  border-color: var(--default-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.about-visual-card .visual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.about-visual-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.about-visual-card p {
  color: var(--contrast-color);
  opacity: 0.8;
  margin: 0;
  font-size: 0.95rem;
}

/* Story Section */
.story {
  padding: 80px 0;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--contrast-color);
  margin-bottom: 20px;
  opacity: 0.9;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.timeline-year {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--contrast-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

/* Mission Cards */
.mission-card-new {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.mission-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--default-color);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.mission-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.mission-card-new h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.mission-card-new p {
  color: var(--contrast-color);
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* Value Cards */
.value-card-new {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card-new:hover {
  transform: translateY(-5px);
  border-color: var(--default-color);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.2);
}

.value-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.value-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.value-content p {
  color: var(--contrast-color);
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* Contact Hero */
.contact-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

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

.contact-hero-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.form-description {
  color: var(--contrast-color);
  opacity: 0.8;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.contact-form-new .form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-new .form-control:focus {
  outline: none;
  border-color: var(--default-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact-form-new .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* New form styles (transferred from old form) */
.contact-form-new .form-field-group {
  margin-bottom: 25px;
}

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

.contact-form-new .required-star {
  color: #ef4444;
  margin-left: 4px;
}

.contact-form-new .form-input-new,
.contact-form-new .form-textarea-new {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form-new .form-input-new:focus,
.contact-form-new .form-textarea-new:focus {
  outline: none;
  border-color: var(--default-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact-form-new .form-input-new::placeholder,
.contact-form-new .form-textarea-new::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-new .form-input-new.is-invalid,
.contact-form-new .form-textarea-new.is-invalid {
  border-color: #ef4444;
}

.contact-form-new .form-input-new.is-valid,
.contact-form-new .form-textarea-new.is-valid {
  border-color: #16a34a;
}

.contact-form-new .invalid-feedback {
  display: none;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 5px;
}

.contact-form-new .form-input-new.is-invalid ~ .invalid-feedback,
.contact-form-new .form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.contact-form-new .form-submit-button {
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  margin-top: 10px;
}

.contact-form-new .form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
}

.contact-form-new .form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form-new .form-status {
  margin-top: 15px;
}

.contact-form-new .form-status .error-message {
  display: none;
  background: #ef4444;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 12px;
}

.contact-form-new .form-status .sent-message {
  display: none;
  color: #ffffff;
  background: #16a34a;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 12px;
}

.contact-form-new .form-status .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 12px;
}

.contact-form-new .form-status .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);
  border-radius: 50%;
  animation: php-email-form-loading 1s linear infinite;
}

.contact-info-wrapper {
  height: 100%;
}

.info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(5px);
  border-color: var(--default-color);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.info-card-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.info-card-content p {
  color: var(--contrast-color);
  margin: 0 0 5px 0;
  line-height: 1.6;
  opacity: 0.9;
}

.info-note {
  font-size: 0.85rem;
  color: var(--default-color);
  opacity: 0.8;
  font-style: italic;
}

/* Getting Started Cards */
.getting-started-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.getting-started-card:hover {
  transform: translateY(-8px);
  border-color: var(--default-color);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.step-icon-wrapper {
  margin-bottom: 25px;
}

.step-number-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.getting-started-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.getting-started-card p {
  color: var(--contrast-color);
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

/* Help Cards */
.help-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.help-card:hover {
  transform: translateY(-8px);
  border-color: var(--default-color);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.help-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.help-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.help-card p {
  color: var(--contrast-color);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

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

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

/* Privacy Policy Page */
.privacy-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.privacy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.privacy-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

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

.privacy-hero-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.privacy-content {
  padding: 80px 0;
}

.privacy-sidebar {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
}

.privacy-sidebar h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-nav li {
  margin-bottom: 12px;
}

.privacy-nav a {
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}

.privacy-nav a:hover {
  color: var(--default-color);
  background: rgba(34, 197, 94, 0.1);
  padding-left: 16px;
}

.privacy-main-content {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
}

.privacy-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-section p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

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

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

.privacy-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--default-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-info-box {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--default-color);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.privacy-info-box p {
  margin: 0;
  color: var(--contrast-color);
  line-height: 1.8;
}

.privacy-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.usage-item {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.usage-item:hover {
  border-color: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.usage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.usage-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.usage-item p {
  color: var(--contrast-color);
  opacity: 0.9;
  margin: 0;
  font-size: 0.95rem;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.privacy-table thead {
  background: rgba(34, 197, 94, 0.15);
}

.privacy-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  color: var(--heading-color);
  border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.privacy-table td {
  padding: 15px;
  color: var(--contrast-color);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.privacy-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.1);
}

.privacy-note {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--default-color);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.privacy-note p {
  margin: 0;
}

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.right-item {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.right-item:hover {
  border-color: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.right-item i {
  font-size: 2.5rem;
  color: var(--default-color);
  margin-bottom: 15px;
}

.right-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.right-item p {
  color: var(--contrast-color);
  opacity: 0.9;
  margin: 0;
  font-size: 0.9rem;
}

.privacy-contact-box {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 25px 0;
}

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

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

.contact-item-box i {
  font-size: 1.8rem;
  color: var(--default-color);
  margin-top: 5px;
}

.contact-item-box strong {
  display: block;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-item-box p {
  margin: 0;
  color: var(--contrast-color);
  opacity: 0.9;
}

.privacy-update {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(34, 197, 94, 0.2);
}

.privacy-update p {
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Cookie Policy Page */
.cookie-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.cookie-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cookie-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

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

.cookie-hero-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.cookie-content {
  padding: 80px 0;
}

.cookie-sidebar {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
}

.cookie-sidebar h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.cookie-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-nav li {
  margin-bottom: 12px;
}

.cookie-nav a {
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}

.cookie-nav a:hover {
  color: var(--default-color);
  background: rgba(34, 197, 94, 0.1);
  padding-left: 16px;
}

.cookie-main-content {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
}

.cookie-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.cookie-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.cookie-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.cookie-section p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

.cookie-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.reason-item {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-item:hover {
  border-color: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.reason-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.reason-item p {
  color: var(--contrast-color);
  opacity: 0.9;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-type-card {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
}

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

.cookie-type-header i {
  font-size: 2rem;
  color: var(--default-color);
}

.cookie-type-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.cookie-table thead {
  background: rgba(34, 197, 94, 0.15);
}

.cookie-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  color: var(--heading-color);
  border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.cookie-table td {
  padding: 15px;
  color: var(--contrast-color);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.cookie-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.1);
}

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

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

.cookie-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--default-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.cookie-management-box {
  background: rgba(34, 197, 94, 0.05);
  border-left: 4px solid var(--default-color);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.cookie-management-box h4 {
  margin-top: 0;
}

.third-party-cookies {
  margin: 25px 0;
}

.third-party-item {
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.third-party-item h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.third-party-item p {
  margin: 0;
}

.third-party-item a {
  color: var(--default-color);
  text-decoration: none;
}

.third-party-item a:hover {
  text-decoration: underline;
}

.cookie-contact-box {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 25px 0;
}

.cookie-contact-box p {
  margin: 0;
}

.cookie-update {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(34, 197, 94, 0.2);
}

.cookie-update p {
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Terms Page */
.terms-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.terms-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.terms-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

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

.terms-hero-description {
  font-size: 1.1rem;
  color: var(--contrast-color);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.terms-content {
  padding: 80px 0;
}

.terms-sidebar {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
}

.terms-sidebar h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.terms-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-nav li {
  margin-bottom: 12px;
}

.terms-nav a {
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}

.terms-nav a:hover {
  color: var(--default-color);
  background: rgba(34, 197, 94, 0.1);
  padding-left: 16px;
}

.terms-main-content {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
}

.terms-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.terms-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.terms-section p {
  color: var(--contrast-color);
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

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

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

.terms-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--default-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.terms-info-box {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--default-color);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.terms-info-box p {
  margin: 0;
  color: var(--contrast-color);
  line-height: 1.8;
}

.terms-contact-box {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 25px 0;
}

.terms-contact-box p {
  margin: 0;
}

.terms-update {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(34, 197, 94, 0.2);
}

.terms-update p {
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Thanks Page */
.thanks-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.thanks-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(74, 222, 128, 0.1) 100%);
}

.thanks-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(34, 197, 94, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(74, 222, 128, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(34, 197, 94, 0.2), transparent);
  background-size: 200% 200%;
  animation: particle-float 20s ease-in-out infinite;
}

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

.thanks-icon-wrapper {
  margin-bottom: 30px;
}

.thanks-icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 4rem;
  color: white;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
  animation: success-pulse 2s ease-in-out infinite;
}

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

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

.thanks-description {
  font-size: 1.2rem;
  color: var(--contrast-color);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

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

.thanks-info-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.info-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.thanks-info-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.thanks-info-card p {
  color: var(--contrast-color);
  line-height: 1.8;
  opacity: 0.9;
  margin: 0;
}

.thanks-actions h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.action-card {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  border-color: var(--default-color);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
}

.action-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.action-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.action-card p {
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

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

.thanks-contact-box {
  background: linear-gradient(135deg, var(--surface-color), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
}

.thanks-contact-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.thanks-contact-box p {
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: white;
}

.contact-hours {
  font-size: 0.9rem;
  color: var(--contrast-color);
  opacity: 0.8;
}

/* Banner Section */
.banner-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.banner-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.banner-accent-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(74, 222, 128, 0.02) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Banner Visual Area */
.banner-visual-area {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(74, 222, 128, 0.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  z-index: 1;
}

.banner-visual-content {
  width: 100%;
  max-width: 500px;
}

.banner-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.banner-stat-card {
  background: #ffffff;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.banner-stat-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.15);
}

.banner-stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.banner-stat-info {
  flex: 1;
}

.banner-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 8px;
}

.banner-stat-label {
  font-size: 0.95rem;
  color: var(--contrast-color);
  opacity: 0.8;
  font-weight: 500;
}

.banner-feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.banner-showcase-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--default-color);
  border-radius: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.banner-showcase-item:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.banner-showcase-item i {
  color: var(--default-color);
  font-size: 1.3rem;
}

/* Banner Content Area */
.banner-content-area {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  z-index: 1;
}

.banner-content-wrapper {
  width: 100%;
  max-width: 650px;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 30px;
  margin-bottom: 25px;
}

.banner-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--default-color);
  border-radius: 50%;
  animation: banner-pulse 2s ease-in-out infinite;
}

@keyframes banner-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.banner-tag span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
}

.banner-title {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.banner-title-accent {
  position: relative;
  color: var(--default-color);
}

.banner-title-accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(34, 197, 94, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.banner-description {
  font-size: 1.3rem;
  color: var(--contrast-color);
  line-height: 1.75;
  margin-bottom: 45px;
  opacity: 0.9;
}

.banner-action-group {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.banner-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--default-color);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  border: 2px solid var(--default-color);
}

.banner-btn-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  color: white;
}

.banner-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-btn-link:hover {
  color: var(--default-color);
  gap: 15px;
}

.banner-btn-link i {
  font-size: 1.2rem;
}

.banner-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 45px;
}

.banner-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  color: var(--contrast-color);
  font-weight: 500;
}

.banner-feature-item i {
  color: var(--default-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.banner-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 35px;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  flex-wrap: wrap;
}

.banner-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--contrast-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.banner-trust-item i {
  color: var(--default-color);
  font-size: 1.2rem;
}

.banner-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(34, 197, 94, 0.2);
}


/* Solutions Section */
.solutions {
  padding: 100px 0;
}

.feature-card-redesigned {
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.feature-card-redesigned:hover {
  transform: translateY(-10px);
  border-color: var(--default-color);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.solution-card-popular {
  border-color: var(--default-color);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(74, 222, 128, 0.02));
}

.solution-popular-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.solution-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.solution-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.solution-number {
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--default-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.solution-card-body {
  flex: 1;
  margin-bottom: 25px;
}

.feature-card-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.feature-card-content p {
  color: var(--contrast-color);
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--contrast-color);
  font-size: 0.95rem;
}

.benefit-item i {
  color: var(--default-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.solution-card-footer {
  margin-top: auto;
}

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

.feature-action-link:hover {
  color: var(--accent-color);
  gap: 12px;
}

/* Process Section */
.process {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.process-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(74, 222, 128, 0.02) 100%);
}

.step-card-redesigned {
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px 35px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.step-card-redesigned:hover {
  transform: translateY(-10px);
  border-color: var(--default-color);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.process-step-popular {
  border-color: var(--default-color);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(74, 222, 128, 0.03));
}

.process-popular-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.step-header-redesigned {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.step-number-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.process-number {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--default-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.8rem;
}

.process-step-body {
  flex: 1;
  margin-bottom: 30px;
}

.step-content-redesigned h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.step-content-redesigned p {
  color: var(--contrast-color);
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.process-step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--contrast-color);
  font-size: 0.95rem;
}

.step-feature-item i {
  color: var(--default-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step-footer {
  height: 6px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
}

.process-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--default-color), var(--accent-color));
  border-radius: 10px;
  transition: width 1s ease;
}

.process-cta {
  margin-top: 50px;
}

.btn-process {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--default-color), var(--accent-color));
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-how-it-works:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: white;
}

.process-cta-note {
  margin-top: 20px;
  color: var(--contrast-color);
  opacity: 0.8;
  font-size: 0.95rem;
}

.swiper-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0 3%;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


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

.growth {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(74, 222, 128, 0.8)), url('assets/img/main.jpg');
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 100px 0;
}

.lead  {
  color: var(--contrast-color);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}