@charset "UTF-8";



:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost", sans-serif;
  --nav-font: "Poppins", sans-serif;
}


:root {
  --background-color: #ffffff;
  
  --default-color: #444444;
  
  --heading-color: #37517e;
  
  --accent-color: #47b2e4;
  
  --surface-color: #ffffff;
  
  --contrast-color: #ffffff;
  
}


:root {
  --nav-color: #ffffff;
  
  --nav-hover-color: #47b2e4;
  
  --nav-mobile-background-color: #ffffff;
  
  --nav-dropdown-background-color: #ffffff;
  
  --nav-dropdown-color: #444444;
  
  --nav-dropdown-hover-color: #47b2e4;
  
}



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

.medium-background {
  --background-color: #deedfd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #deedfd;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
}


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


.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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


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

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

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

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

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

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


.header {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-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: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.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;
  border-radius: 50px;
  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;
  }
}


.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}


.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}



@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    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:last-child a {
    padding-right: 0;
  }

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

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

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

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

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

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

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

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

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

  .navmenu .megamenu {
    position: static;
  }

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

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

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

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}


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

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-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;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

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

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

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

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


.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-main {
  padding: 70px 0 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

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

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

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

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer .footer-main .footer-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

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

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

  .footer .footer-main .app-buttons {
    justify-content: center;
  }

  .footer .footer-main .social-icons {
    justify-content: center;
  }

  .footer .footer-bottom .copyright,
  .footer .footer-bottom .credits {
    text-align: center;
  }
}


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

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

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

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


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

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

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

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


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  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;
}

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


section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

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


.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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


.hero {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}


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

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(var(--accent-color-rgb, 0, 102, 204), 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(var(--accent-color-rgb, 0, 102, 204), 0.1) 0%, transparent 50%);
  animation: gradient-shift 8s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes gradient-shift {

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

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

@keyframes grid-move {
  0% {
    transform: translateY(0);
  }

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


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

.hero .row {
  height: 100%;
  align-items: center;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(var(--accent-color-rgb, 0, 102, 204), 0.12);
  border: 1px solid rgba(var(--accent-color-rgb, 0, 102, 204), 0.3);
  border-radius: 50px;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(var(--accent-color-rgb, 0, 102, 204), 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(var(--accent-color-rgb, 0, 102, 204), 0.6);
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(var(--accent-color-rgb, 0, 102, 204), 0.6);
  }

  50% {
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb, 0, 102, 204), 0.9);
  }
}


.hero h1 {
  margin: 0 0 28px 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero .gradient-text {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #00ffff 30%) 50%, var(--accent-color) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
  display: inline-block;
  font-weight: 900;
}

@keyframes gradient-flow {

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

  50% {
    background-position: 100% 50%;
  }
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0 0 40px 0;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 640px;
}


.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0;
  border: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
  position: relative;
}

.stat-item:first-child {
  padding-left: 0;
}

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

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(var(--accent-color-rgb, 0, 102, 204), 0.3) 50%,
      transparent 100%);
}

.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}


.hero-cta {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  align-items: center;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(var(--accent-color-rgb, 0, 102, 204), 0.35);
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(var(--accent-color-rgb, 0, 102, 204), 0.35);
  }

  50% {
    box-shadow: 0 8px 40px rgba(var(--accent-color-rgb, 0, 102, 204), 0.5);
  }
}

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

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

.hero .btn-get-started:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(var(--accent-color-rgb, 0, 102, 204), 0.5);
}

.hero .btn-get-started i {
  font-size: 20px;
  transition: transform 0.3s;
}

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

.hero .btn-watch-video {
  font-size: 17px;
  transition: all 0.3s;
  color: var(--default-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .btn-watch-video:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--accent-color-rgb, 0, 102, 204), 0.3);
}

.hero .btn-watch-video .play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--accent-color-rgb, 0, 102, 204), 0.2);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hero .btn-watch-video .play-icon i {
  color: var(--accent-color);
  font-size: 22px;
  margin-left: 3px;
}

.hero .btn-watch-video:hover .play-icon {
  background: var(--accent-color);
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(var(--accent-color-rgb, 0, 102, 204), 0.6);
}

.hero .btn-watch-video:hover .play-icon i {
  color: var(--contrast-color);
}


.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-text {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  letter-spacing: 0.3px;
}


.hero-image-wrapper {
  position: relative;
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(var(--accent-color-rgb, 0, 102, 204), 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero .animated {
  animation: float-smooth 8s ease-in-out infinite;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) brightness(1.05);
  max-width: 100%;
  height: auto;
}

@keyframes float-smooth {

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

  25% {
    transform: translateY(-20px) rotate(1deg);
  }

  50% {
    transform: translateY(-15px) rotate(-1deg);
  }

  75% {
    transform: translateY(-25px) rotate(0.5deg);
  }
}


.floating-card {
  position: absolute;
  background: rgba(var(--background-color-rgb, 255, 255, 255), 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--accent-color-rgb, 0, 102, 204), 0.3);
  border-radius: 18px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  z-index: 2;
  animation: float-card-enhanced 4s ease-in-out infinite;
  transition: transform 0.3s;
  white-space: nowrap;
}

.floating-card:hover {
  transform: scale(1.08) !important;
}

.floating-card i {
  font-size: 26px;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 6px rgba(var(--accent-color-rgb, 0, 102, 204), 0.4));
}

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

.card-2 {
  top: 45%;
  left: -8%;
  animation-delay: 1.3s;
}

.card-3 {
  bottom: 15%;
  right: 5%;
  animation-delay: 2.6s;
}

@keyframes float-card-enhanced {

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

  33% {
    transform: translateY(-15px) translateX(5px);
  }

  66% {
    transform: translateY(-8px) translateX(-5px);
  }
}


.hero .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 10;
  cursor: pointer;
}

.hero .scroll-indicator i {
  font-size: 24px;
  color: var(--accent-color);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}


@media (max-width: 1400px) {
  .hero h1 {
    font-size: 56px;
  }

  .stat-number {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 20px;
  }

  .stat-number {
    font-size: 44px;
  }

  .hero-stats {
    gap: 0;
  }

  .stat-item {
    padding: 0 24px;
  }
}

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

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 19px;
  }

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

  .stat-item {
    padding: 0 20px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-divider {
    height: 50px;
  }

  .floating-card {
    font-size: 14px;
    padding: 12px 18px;
  }

  .floating-card i {
    font-size: 22px;
  }

  .hero-image-wrapper {
    padding: 20px;
    margin-top: 40px;
  }
}

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

  .hero p {
    font-size: 18px;
  }

  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 40px 0;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0;
    flex: 1;
    min-width: calc(33.333% - 19px);
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 36px;
  }

  .hero .btn-get-started {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero .btn-watch-video {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  .floating-card {
    display: none;
  }

  .hero-badge {
    font-size: 13px;
    padding: 8px 16px;
    margin-bottom: 24px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item {
    min-width: calc(50% - 12px);
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }
}


.cards .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.cards .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.cards .why-box p {
  margin-bottom: 30px;
}

.cards .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.cards .why-box .more-btn i {
  font-size: 14px;
}

.cards .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.cards .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards .icon-box i {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

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

.cards .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cards .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}


.features-11 {
  --default-color: #555;
  --heading-color: #333;
}

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

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

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

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

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

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

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

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

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

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

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

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


.features-12 .intro-block h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.features-12 .intro-block .lead {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.features-12 .features-list .feature-card {
  background: var(--surface-color);
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.features-12 .features-list .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.features-12 .features-list .feature-card:hover .icon-wrap {
  background: var(--accent-color);
}

.features-12 .features-list .feature-card:hover .icon-wrap i {
  color: var(--contrast-color);
}

.features-12 .features-list .feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: background 0.3s ease;
}

.features-12 .features-list .feature-card .icon-wrap i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.features-12 .features-list .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.features-12 .features-list .feature-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.features-12 .images-stack {
  position: relative;
  width: 100%;
}

.features-12 .images-stack .main-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.features-12 .images-stack .main-img img {
  width: 100%;
  object-fit: cover;
}

.features-12 .images-stack .side-img {
  position: absolute;
  left: 5%;
  bottom: -10%;
  width: 40%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.features-12 .images-stack .side-img img {
  width: 100%;
  object-fit: cover;
}

.features-12 .images-stack .stats-badge {
  position: absolute;
  top: 10%;
  right: 8%;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-12 .images-stack .stats-badge i {
  font-size: 32px;
  color: var(--accent-color);
}

.features-12 .images-stack .stats-badge h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

.features-12 .images-stack .stats-badge span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 992px) {
  .features-12 .images-stack .side-img {
    width: 50%;
    bottom: -12%;
  }

  .features-12 .images-stack .stats-badge {
    top: 5%;
    right: 6%;
  }
}

@media (max-width: 768px) {
  .features-12 .images-stack .main-img img {
    height: 320px;
  }

  .features-12 .images-stack .side-img {
    display: none;
  }
}

@media (max-width: 768px) {
  .features-12 .intro-block h3 {
    font-size: 28px;
  }

  .features-12 .intro-block .lead {
    font-size: 15px;
  }

  .features-12 .features-list .feature-card {
    padding: 20px 18px;
  }

  .features-12 .features-list .feature-card .icon-wrap {
    width: 56px;
    height: 56px;
  }

  .features-12 .features-list .feature-card .icon-wrap i {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .features-12 .images-stack {
    margin-bottom: 120px;
  }
}


.services-8 .service-block {
  height: 100%;
  padding: 40px 30px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.services-8 .service-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.services-8 .service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-8 .service-block:hover::before {
  transform: scaleX(1);
}

.services-8 .service-block:hover .icon-wrap i {
  color: var(--contrast-color);
}

.services-8 .service-block:hover .icon-wrap .icon-bg {
  transform: scale(1);
  opacity: 1;
}

.services-8 .service-block:hover .details-link {
  color: var(--accent-color);
}

.services-8 .service-block .icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-8 .service-block .icon-wrap i {
  font-size: 32px;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  line-height: 1;
}

.services-8 .service-block .icon-wrap .icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s ease;
}

.services-8 .service-block .icon-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

.services-8 .service-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-8 .service-block p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.services-8 .service-block .details-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.services-8 .service-block .details-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services-8 .service-block .details-link:hover {
  color: var(--accent-color);
}

.services-8 .service-block .details-link:hover i {
  transform: translateX(4px);
}

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

  to {
    transform: rotate(360deg);
  }
}


.services-9 .content-block {
  margin-right: 30px;
}

.services-9 .content-block .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services-9 .content-block .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.services-9 .content-block .description {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

.services-9 .content-block .button-wrapper {
  margin-top: 2rem;
}

.services-9 .content-block .button-wrapper .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-9 .content-block .button-wrapper .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services-9 .content-block {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

.services-9 .services-list .service-item {
  position: relative;
  padding: 2.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-9 .services-list .service-item:first-child {
  padding-top: 0;
}

.services-9 .services-list .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.services-9 .services-list .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.services-9 .services-list .service-item:hover .service-content h4 a {
  color: var(--accent-color);
}

.services-9 .services-list .service-icon {
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services-9 .services-list .service-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services-9 .services-list .service-content {
  position: relative;
  width: 100%;
}

.services-9 .services-list .service-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.services-9 .services-list .service-content h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.services-9 .services-list .service-content h4 a:hover {
  color: var(--accent-color);
}

.services-9 .services-list .service-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .services-9 .services-list .service-item {
    padding: 2rem 0;
  }

  .services-9 .services-list .service-icon {
    height: 4rem;
    width: 4rem;
    margin-right: 1rem;
  }

  .services-9 .services-list .service-icon i {
    font-size: 2rem;
  }

  .services-9 .services-list .service-content h4 {
    font-size: 1.25rem;
  }

  .services-9 .services-list .service-content p {
    font-size: 0.9rem;
  }
}


.services-10 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services-10 .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services-10 .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services-10 .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services-10 .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services-10 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services-10 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-10 .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services-10 .service-item.item-cyan i {
  color: #0dcaf0;
}

.services-10 .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services-10 .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services-10 .service-item.item-orange i {
  color: #fd7e14;
}

.services-10 .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services-10 .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services-10 .service-item.item-teal i {
  color: #20c997;
}

.services-10 .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services-10 .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services-10 .service-item.item-red i {
  color: #df1529;
}

.services-10 .service-item.item-red:hover .icon i {
  color: #fff;
}

.services-10 .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services-10 .service-item.item-indigo i {
  color: #6610f2;
}

.services-10 .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services-10 .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services-10 .service-item.item-pink i {
  color: #f3268c;
}

.services-10 .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services-10 .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}


.features .features-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 1199px) {
  .features .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image image" "left right";
  }

  .features .features-grid .center-image {
    grid-area: image;
    justify-self: center;
  }

  .features .features-grid .left-column {
    grid-area: left;
  }

  .features .features-grid .right-column {
    grid-area: right;
  }
}

@media (max-width: 768px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "left" "right";
  }
}

.features .features-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.features .feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 16px;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features .feature-card:hover .icon-wrapper {
  background-color: var(--accent-color);
}

.features .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.features .feature-card .icon-wrapper {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.features .feature-card .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.features .feature-card .content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.features .feature-card .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .center-image {
  position: relative;
  align-self: center;
}

.features .center-image .device-wrapper {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.features .center-image .device-wrapper img {
  max-height: 550px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.features .center-image .device-wrapper .shape-decoration {
  position: absolute;
  width: 150%;
  height: 70%;
  top: 15%;
  left: -25%;
  background: linear-gradient(140deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

@media (max-width: 991px) {
  .features .feature-card {
    padding: 1.5rem;
  }

  .features .feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .features .feature-card .icon-wrapper i {
    font-size: 24px;
  }

  .features .feature-card .content h3 {
    font-size: 17px;
  }

  .features .center-image .device-wrapper img {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .features .features-column {
    gap: 1.5rem;
  }

  .features .center-image {
    margin: 2rem 0;
  }

  .features .center-image .device-wrapper img {
    max-height: 400px;
  }

  .features .center-image .shape-decoration {
    width: 120%;
    height: 60%;
  }
}


.features-3 .features-content h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.features-3 .features-content .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.features-3 .features-image {
  position: relative;
}

.features-3 .features-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features-3 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.features-3 .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}

.features-3 .feature-item:hover {
  transform: translateY(-5px);
}

.features-3 .feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}

.features-3 .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4834d4 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

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

.features-3 .feature-content h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

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

@media (max-width: 991px) {
  .features-3 .features-content {
    text-align: center;
  }

  .features-3 .features-content h2 {
    font-size: 28px;
  }

  .features-3 .features-grid {
    margin-top: 60px;
    gap: 30px;
  }

  .features-3 .feature-item {
    gap: 16px;
  }

  .features-3 .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features-3 .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .features-3 .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .features-3 .features-content h2 {
    font-size: 24px;
  }

  .features-3 .features-content .lead {
    font-size: 16px;
  }
}


.features-5 .features-image {
  overflow: hidden;
  margin-bottom: 2rem;
}

.features-5 .features-image .overlay-badge {
  position: absolute;
  bottom: 20px;
  left: -10px;
  padding: 10px 20px;
  background-color: var(--accent-color);
  border-radius: 0 30px 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.features-5 .features-image .overlay-badge .badge-text {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-5 .features-image .overlay-badge i {
  font-size: 1.2rem;
}

.features-5 .features-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features-5 .features-content h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.features-5 .features-content h3:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  margin-top: 12px;
}

.features-5 .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .features-5 .features-grid {
    grid-template-columns: 1fr;
  }
}

.features-5 .features-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.features-5 .features-grid .feature-item:hover {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  transform: translateY(-5px);
}

.features-5 .features-grid .feature-item .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.features-5 .features-grid .feature-item .icon-wrapper i {
  color: var(--accent-color);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.features-5 .features-grid .feature-item:hover .icon-wrapper {
  background-color: var(--accent-color);
}

.features-5 .features-grid .feature-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.features-5 .features-grid .feature-item .feature-text h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.features-5 .features-grid .feature-item .feature-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}


.features-6 {
  padding: 0;
}

.features-6 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/bg-4.webp") center center;
  background-size: cover;
}

.features-6 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .features-6 .content {
    padding: 80px;
  }
}

.features-6 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

.features-6 .content ul {
  list-style: none;
  padding: 0;
}

.features-6 .content ul li {
  padding-bottom: 10px;
}

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

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

.features-6 .content .read-more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.features-6 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.features-6 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

.features-6 .content .read-more:hover i {
  margin-left: 10px;
}

.features-6 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}


.steps {
  
}

.steps .timeline-container {
  position: relative;
  padding: 30px 0;
}

.steps .timeline-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.steps .timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.steps .timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.steps .timeline-item:last-child {
  margin-bottom: 0;
}

.steps .timeline-item.left .timeline-content {
  padding-right: 50px;
  text-align: right;
}

.steps .timeline-item.left .timeline-content .timeline-marker {
  right: -35px;
}

.steps .timeline-item.right .timeline-content {
  padding-left: 50px;
  margin-left: 50%;
}

.steps .timeline-item.right .timeline-content .timeline-marker {
  left: -35px;
}

.steps .timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.steps .timeline-item:hover .timeline-marker .step-icon {
  color: var(--contrast-color);
}

.steps .timeline-item:hover .timeline-body {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.steps .timeline-content {
  position: relative;
  width: 50%;
}

.steps .timeline-marker {
  position: absolute;
  top: 15px;
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps .timeline-marker .step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  border: 3px solid var(--surface-color);
}

.steps .timeline-marker .step-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.steps .timeline-body {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.steps .timeline-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.steps .timeline-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .timeline-track::before {
    left: 30px;
  }

  .steps .timeline-item.left .timeline-content,
  .steps .timeline-item.right .timeline-content {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .steps .timeline-item.left .timeline-content .timeline-marker,
  .steps .timeline-item.right .timeline-content .timeline-marker {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  .steps .timeline-item {
    margin-bottom: 50px;
  }

  .steps .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .steps .timeline-marker .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .steps .timeline-marker .step-icon {
    font-size: 1.3rem;
  }

  .steps .timeline-body {
    padding: 20px;
  }

  .steps .timeline-body h3 {
    font-size: 1.2rem;
  }

  .steps .timeline-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .steps .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .steps .timeline-marker .step-icon {
    font-size: 1.1rem;
  }

  .steps .timeline-item.left .timeline-content,
  .steps .timeline-item.right .timeline-content {
    padding-left: 70px;
  }
}


.stats .stats-overview {
  height: 100%;
  padding: 30px;
}

.stats .stats-overview h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.stats .stats-overview h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .stats .stats-overview h3::after {
    margin: 0;
  }
}

.stats .stats-overview p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.stats .stats-card {
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats .stats-card .stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.stats .stats-card .stats-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stats-card .stats-content {
  flex-grow: 1;
}

.stats .stats-card .stats-content .stats-number {
  display: flex;
  align-items: baseline;
}

.stats .stats-card .stats-content .stats-number .purecounter {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.stats .stats-card .stats-content .stats-number .plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 2px;
}

.stats .stats-card .stats-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 0;
  font-weight: 500;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats .stats-card {
    padding: 15px;
  }

  .stats .stats-card .stats-icon {
    width: 50px;
    height: 50px;
  }

  .stats .stats-card .stats-icon i {
    font-size: 20px;
  }

  .stats .stats-card .stats-content .stats-number .purecounter {
    font-size: 28px;
  }

  .stats .stats-card .stats-content .stats-number .plus {
    font-size: 20px;
  }
}


.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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;
  border-radius: 0;
  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] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}


.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}


.blog-comments {
  padding: 20px 0;
}

.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}


.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
  padding-top: 10px;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}


.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

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

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}


.hero-3 {
  padding-top: 120px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 95%));
  padding-bottom: 120px;
}

.hero-3 .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-3 .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-3 .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(15, 42, 68, 0.75) 100%);
}

.hero-3 .container {
  z-index: 2;
}

.hero-3 .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-3 .badge-label i {
  font-size: 16px;
}

.hero-3 h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

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

.hero-3 .lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-3 .hero-actions {
  margin-bottom: 80px;
}

.hero-3 .hero-actions .btn-main {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-3 .hero-actions .btn-main:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-3 .hero-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-3 .hero-actions .btn-outline:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

.hero-3 .hero-counters {
  background: var(--accent-color);
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero-3 .hero-counters .counter-item {
  text-align: center;
}

.hero-3 .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero-3 .hero-counters .counter-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .hero-3 {
    padding: 80px 0 0;
  }

  .hero-3 h1 {
    font-size: 40px;
  }

  .hero-3 .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero-3 {
    padding: 64px 0 0;
  }

  .hero-3 h1 {
    font-size: 32px;
  }

  .hero-3 .lead {
    font-size: 16px;
  }

  .hero-3 .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero-3 .hero-actions .btn-main,
  .hero-3 .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-3 .hero-counters {
    padding: 24px 16px;
  }

  .hero-3 .hero-counters .counter-item h3 {
    font-size: 28px;
  }
}


.about-5 .showcase-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about-5 .showcase-image img {
  border-radius: 8px;
  width: 100%;
  display: block;
}

.about-5 .showcase-image .overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-5 .showcase-image .overlay-badge i {
  font-size: 16px;
}

.about-5 .intro-content .tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.about-5 .intro-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .about-5 .intro-content h2 {
    font-size: 1.75rem;
  }
}

.about-5 .intro-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
}

.about-5 .stat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.about-5 .stat-badges .stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.3s ease;
}

.about-5 .stat-badges .stat-badge:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-5 .stat-badges .stat-badge strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.about-5 .stat-badges .stat-badge span {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-5 .highlights-section {
  margin-top: 64px;
  margin-bottom: 48px;
}

.about-5 .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.about-5 .highlight-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about-5 .highlight-item:hover .highlight-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-5 .highlight-item .highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 8px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.about-5 .highlight-item .highlight-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.about-5 .highlight-item .highlight-body p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-5 .action-banner {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .about-5 .action-banner {
    padding: 32px 24px;
  }
}

.about-5 .action-banner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about-5 .action-banner h3 {
    font-size: 1.5rem;
  }
}

.about-5 .action-banner>.row>.col-lg-8>p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.about-5 .action-banner .trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-5 .action-banner .trust-indicators .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-5 .action-banner .trust-indicators .trust-item i {
  font-size: 18px;
  color: var(--accent-color);
}

.about-5 .action-banner .btn-register {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.about-5 .action-banner .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.about-5 .action-banner .btn-agenda {
  display: inline-block;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-left: 12px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.about-5 .action-banner .btn-agenda:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .about-5 .action-banner .btn-agenda {
    margin-left: 0;
  }
}


.about-6 {
  position: relative;
  background: var(--background-color);
}

.about-6 .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 992px) {
  .about-6 .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-6 .image-showcase {
  position: relative;
}

.about-6 .main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-6 .main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-6 .main-image img {
    height: 360px;
  }
}

.about-6 .main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%);
}

.about-6 .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
}

.about-6 .experience-badge .years {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-6 .experience-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about-6 .floating-card {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-color);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  z-index: 3;
}

@media (max-width: 768px) {
  .about-6 .floating-card {
    right: 16px;
    bottom: -24px;
    padding: 16px 20px;
  }
}

.about-6 .floating-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
}

.about-6 .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-6 .floating-card .card-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.about-6 .floating-card .card-content span {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-6 .content-block {
  padding-left: 16px;
}

@media (max-width: 992px) {
  .about-6 .content-block {
    padding-left: 0;
    padding-top: 32px;
  }
}

.about-6 .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.about-6 .section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.about-6 h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about-6 h2 {
    font-size: 1.875rem;
  }
}

.about-6 .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.about-6 .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.about-6 .feature-item {
  display: flex;
  gap: 20px;
}

.about-6 .feature-item .feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000000 20%) 100%);
  border-radius: 12px;
}

.about-6 .feature-item .feature-icon i {
  font-size: 1.375rem;
  color: var(--contrast-color);
}

.about-6 .feature-item .feature-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.about-6 .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-6 .action-area {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .about-6 .action-area {
    gap: 24px;
  }
}

.about-6 .btn-primary-action {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-6 .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about-6 .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-6 .contact-info i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 1.125rem;
}

.about-6 .contact-info .info-text span {
  display: block;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}

.about-6 .contact-info .info-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about-6 .stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--accent-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .about-6 .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-6 .stats-banner {
    grid-template-columns: 1fr;
  }
}

.about-6 .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px;
  position: relative;
  transition: background 0.3s ease;
}

.about-6 .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

@media (max-width: 992px) {
  .about-6 .stat-item:not(:last-child)::after {
    display: none;
  }
}

.about-6 .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
}

@media (max-width: 768px) {
  .about-6 .stat-item {
    padding: 24px;
  }
}

.about-6 .stat-item>i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.about-6 .stat-item .stat-content .stat-number,
.about-6 .stat-item .stat-content .stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.about-6 .stat-item .stat-content .stat-text {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin-top: 4px;
}


.about-7 .intro-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 25%));
  border-radius: 16px;
  padding: 48px 40px;
  margin-bottom: 56px;
  text-align: center;
}

.about-7 .intro-banner .banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-7 .intro-banner .banner-content .badge-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.about-7 .intro-banner .banner-content h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.about-7 .intro-banner .banner-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-7 .intro-banner .banner-content .banner-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.about-7 .intro-banner .banner-content .banner-stats .single-stat {
  text-align: center;
}

.about-7 .intro-banner .banner-content .banner-stats .single-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.about-7 .intro-banner .banner-content .banner-stats .single-stat .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-7 .features-row {
  margin-bottom: 64px;
}

.about-7 .features-row .feature-block {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.about-7 .features-row .feature-block:hover {
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-8px);
}

.about-7 .features-row .feature-block.featured {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-7 .features-row .feature-block .feature-icon {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-7 .features-row .feature-block .feature-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.about-7 .features-row .feature-block h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-7 .features-row .feature-block p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

.about-7 .audience-wrapper {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about-7 .audience-wrapper .audience-intro {
  padding-right: 24px;
}

.about-7 .audience-wrapper .audience-intro h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-7 .audience-wrapper .audience-intro>p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-7 .audience-wrapper .audience-intro blockquote {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 3px solid var(--accent-color);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
}

.about-7 .audience-wrapper .audience-intro blockquote p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.about-7 .audience-wrapper .audience-intro blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.875rem;
}

.about-7 .audience-wrapper .audience-intro .action-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-7 .audience-wrapper .audience-intro .action-links .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-7 .audience-wrapper .audience-intro .action-links .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

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

.about-7 .audience-wrapper .audience-intro .action-links .text-link i {
  transition: transform 0.3s ease;
}

.about-7 .audience-wrapper .audience-intro .action-links .text-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.about-7 .audience-wrapper .audience-intro .action-links .text-link:hover i {
  transform: translateX(4px);
}

.about-7 .audience-wrapper .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-7 .audience-wrapper .audience-grid .audience-card {
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-7 .audience-wrapper .audience-grid .audience-card:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.about-7 .audience-wrapper .audience-grid .audience-card:hover i {
  color: var(--accent-color);
  transform: scale(1.15);
}

.about-7 .audience-wrapper .audience-grid .audience-card i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 12px;
  display: block;
  transition: all 0.3s ease;
}

.about-7 .audience-wrapper .audience-grid .audience-card h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-7 .audience-wrapper .audience-grid .audience-card p {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .about-7 .audience-wrapper .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-7 .intro-banner {
    padding: 40px 24px;
  }

  .about-7 .intro-banner .banner-content h3 {
    font-size: 1.875rem;
  }

  .about-7 .intro-banner .banner-content .banner-stats {
    gap: 32px;
  }

  .about-7 .intro-banner .banner-content .banner-stats .single-stat .stat-number {
    font-size: 1.75rem;
  }

  .about-7 .audience-wrapper {
    padding: 32px 24px;
  }

  .about-7 .audience-wrapper .audience-intro {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .about-7 .audience-wrapper .audience-intro .action-links {
    justify-content: center;
  }

  .about-7 .audience-wrapper .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-7 .intro-banner .banner-content h3 {
    font-size: 1.5rem;
  }

  .about-7 .intro-banner .banner-content p {
    font-size: 0.95rem;
  }

  .about-7 .intro-banner .banner-content .banner-stats {
    gap: 24px;
  }

  .about-7 .intro-banner .banner-content .banner-stats .single-stat .stat-number {
    font-size: 1.5rem;
  }

  .about-7 .intro-banner .banner-content .banner-stats .single-stat .stat-label {
    font-size: 0.8rem;
  }

  .about-7 .features-row {
    margin-bottom: 48px;
  }

  .about-7 .audience-wrapper .audience-intro h3 {
    font-size: 1.5rem;
  }

  .about-7 .audience-wrapper .audience-intro .action-links {
    flex-direction: column;
    gap: 16px;
  }

  .about-7 .audience-wrapper .audience-intro .action-links .primary-btn {
    width: 100%;
    text-align: center;
  }

  .about-7 .audience-wrapper .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-7 .audience-wrapper .audience-grid .audience-card {
    padding: 16px 12px;
  }

  .about-7 .audience-wrapper .audience-grid .audience-card i {
    font-size: 1.25rem;
  }

  .about-7 .audience-wrapper .audience-grid .audience-card h5 {
    font-size: 0.875rem;
  }

  .about-7 .audience-wrapper .audience-grid .audience-card p {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .about-7 .intro-banner .banner-content .banner-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-7 .audience-wrapper {
    padding: 24px 16px;
  }

  .about-7 .audience-wrapper .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.about-2 {
  padding: 100px 0 140px;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 50%);
}

.about-2 .image-column {
  position: relative;
  height: 100%;
  min-height: 600px;
}

@media (max-width: 992px) {
  .about-2 .image-column {
    min-height: 500px;
    margin-bottom: 60px;
  }
}

.about-2 .image-column .main-image {
  position: relative;
  height: 100%;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
  box-shadow: 30px 30px 80px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateX(-15px);
}

@media (max-width: 992px) {
  .about-2 .image-column .main-image {
    border-radius: 30px;
    transform: translateX(0);
  }
}

.about-2 .image-column .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-2 .image-column .main-image:hover img {
  transform: scale(1.08);
}

.about-2 .image-column .main-image .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, color-mix(in srgb, var(--accent-color), transparent 30%), transparent);
}

.about-2 .image-column .badge-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  padding: 30px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 60%);
  backdrop-filter: blur(10px);
}

@media (max-width: 576px) {
  .about-2 .image-column .badge-card {
    left: 20px;
    right: 20px;
    padding: 25px;
  }
}

.about-2 .image-column .badge-card .badge-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-2 .image-column .badge-card .badge-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.about-2 .image-column .badge-card .badge-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-2 .image-column .badge-card .badge-text .badge-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
}

.about-2 .image-column .badge-card .badge-text .badge-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-2 .content-column {
  padding: 60px 60px 60px 80px;
}

@media (max-width: 992px) {
  .about-2 .content-column {
    padding: 0 15px;
  }
}

.about-2 .content-column .section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-2 .content-column h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .about-2 .content-column h2 {
    font-size: 36px;
  }
}

.about-2 .content-column h2 .gradient-text {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-2 .content-column .intro-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-2 .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .about-2 .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.about-2 .feature-grid .feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-2 .feature-grid .feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-2 .feature-grid .feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
}

.about-2 .feature-grid .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

.about-2 .feature-grid .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-2 .feature-grid .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about-2 .feature-grid .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
}

.about-2 .feature-grid .feature-item .feature-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.about-2 .stats-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .about-2 .stats-wrapper {
    flex-direction: column;
  }
}

.about-2 .stats-wrapper .stat-box {
  flex: 1;
  padding: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.about-2 .stats-wrapper .stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-2 .stats-wrapper .stat-box .stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.about-2 .stats-wrapper .stat-box .stat-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-2 .action-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 576px) {
  .about-2 .action-buttons {
    flex-direction: column;
  }
}

.about-2 .action-buttons .btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: all 0.3s ease;
}

.about-2 .action-buttons .btn-gradient i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.about-2 .action-buttons .btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.about-2 .action-buttons .btn-gradient:hover i {
  transform: translateX(5px);
}

.about-2 .action-buttons .btn-video {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 30px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-2 .action-buttons .btn-video .play-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.about-2 .action-buttons .btn-video .play-icon i {
  font-size: 20px;
  color: var(--contrast-color);
  margin-left: 3px;
}

.about-2 .action-buttons .btn-video:hover {
  color: var(--accent-color);
}

.about-2 .action-buttons .btn-video:hover .play-icon {
  transform: scale(1.1);
}

.about-2 .shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.about-2 .shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--background-color);
}


.about-4 .content .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-4 .content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-4 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.about-4 .content .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.about-4 .content .features-list li {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  font-weight: 500;
}

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

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

.about-4 .content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.about-4 .image-composition {
  position: relative;
  padding: 2rem;
}

@media (max-width: 768px) {
  .about-4 .image-composition {
    padding: 1rem;
  }
}

.about-4 .image-composition .image-main {
  position: relative;
  z-index: 2;
}

.about-4 .image-composition .image-main img {
  border-radius: 8px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-4 .image-composition .image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  z-index: 3;
}

.about-4 .image-composition .image-secondary img {
  border-radius: 8px;
  border: 5px solid var(--background-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.about-4 .image-composition .stats-card {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .about-4 .image-composition .stats-card {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
  }
}

.about-4 .image-composition .stats-card .stats-item {
  text-align: center;
}

.about-4 .image-composition .stats-card .stats-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

@media (max-width: 992px) {
  .about-4 .image-composition .stats-card .stats-item h3 {
    font-size: 2rem;
  }
}

.about-4 .image-composition .stats-card .stats-item p {
  margin: 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 0.5rem;
}

.about-4 .image-composition::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  z-index: 1;
}


.cards-2 .feature-block {
  position: relative;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cards-2 .feature-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.cards-2 .feature-block:hover .icon-wrapper i {
  transform: scale(1.15);
}

.cards-2 .feature-block:hover .icon-wrapper .icon-ring {
  transform: scale(1.2);
  opacity: 0.15;
}

.cards-2 .feature-block:hover .card-accent-line {
  width: 100%;
}

.cards-2 .feature-block:hover .action-link {
  color: var(--accent-color);
}

.cards-2 .feature-block:hover .action-link i {
  transform: translateX(4px);
}

.cards-2 .feature-block .icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.cards-2 .feature-block .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.cards-2 .feature-block .icon-wrapper .icon-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed var(--accent-color);
  border-radius: 50%;
  opacity: 0.25;
  transition: all 0.4s ease;
}

.cards-2 .feature-block .block-content {
  flex: 1;
}

.cards-2 .feature-block .tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.cards-2 .feature-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.35;
}

.cards-2 .feature-block p {
  font-size: 14px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.cards-2 .feature-block .block-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.cards-2 .feature-block .action-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cards-2 .feature-block .action-link i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.cards-2 .feature-block .action-link:hover {
  color: var(--accent-color);
}

.cards-2 .feature-block .card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  transition: width 0.4s ease;
}

.cards-2 .feature-block.highlighted {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 93%), var(--surface-color) 40%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.cards-2 .feature-block.highlighted .highlight-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.cards-2 .feature-block.highlighted .highlight-tag i {
  font-size: 10px;
}

.cards-2 .feature-block.highlighted .icon-wrapper {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.cards-2 .feature-block.highlighted .card-accent-line {
  width: 60%;
}

@media (max-width: 768px) {
  .cards-2 .feature-block {
    padding: 32px 24px 24px;
  }

  .cards-2 .feature-block .icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .cards-2 .feature-block .icon-wrapper i {
    font-size: 24px;
  }

  .cards-2 .feature-block h3 {
    font-size: 18px;
  }

  .cards-2 .feature-block p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .cards-2 .feature-block {
    padding: 28px 20px 20px;
  }

  .cards-2 .feature-block .icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .cards-2 .feature-block .icon-wrapper i {
    font-size: 22px;
  }

  .cards-2 .feature-block .icon-wrapper .icon-ring {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
  }

  .cards-2 .feature-block .tag-label {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .cards-2 .feature-block h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .cards-2 .feature-block p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .cards-2 .feature-block .action-link {
    font-size: 13px;
  }

  .cards-2 .feature-block.highlighted .highlight-tag {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }
}


.hero-2 {
  padding-top: 120px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 95%));
  padding-bottom: 120px;
}

.hero-2 .hero-content .hero-badge {
  margin-bottom: 24px;
}

.hero-2 .hero-content .hero-badge .badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero-2 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

.hero-2 .hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

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

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

.hero-2 .hero-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  box-shadow: 0 4px 6px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-2 .hero-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.hero-2 .hero-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero-2 .hero-buttons .btn.btn-outline:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-2 .hero-visual {
  position: relative;
}

.hero-2 .hero-visual .product-mockup {
  position: relative;
}

.hero-2 .hero-visual .product-mockup .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  min-width: 140px;
  backdrop-filter: blur(10px);
}

.hero-2 .hero-visual .product-mockup .floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-2 .hero-visual .product-mockup .floating-card .card-content .card-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--heading-color);
}

.hero-2 .hero-visual .product-mockup .floating-card .card-content .card-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 2px;
}

.hero-2 .hero-visual .product-mockup .floating-card.card-1 {
  top: 20%;
  left: -60px;
  animation: float 6s ease-in-out infinite;
}

.hero-2 .hero-visual .product-mockup .floating-card.card-1 .card-icon {
  background: color-mix(in srgb, #10b981, transparent 90%);
  color: #10b981;
}

.hero-2 .hero-visual .product-mockup .floating-card.card-2 {
  top: 60%;
  right: -50px;
  animation: float 6s ease-in-out infinite 2s;
}

.hero-2 .hero-visual .product-mockup .floating-card.card-2 .card-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.hero-2 .hero-visual .product-mockup .floating-card.card-3 {
  bottom: 10%;
  left: -40px;
  animation: float 6s ease-in-out infinite 4s;
}

.hero-2 .hero-visual .product-mockup .floating-card.card-3 .card-icon {
  background: color-mix(in srgb, #f59e0b, transparent 90%);
  color: #f59e0b;
}

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

.hero-2 .hero-background .gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-2 .hero-background .gradient-blob.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, #10b981, transparent 85%));
  top: -200px;
  right: -200px;
  animation: rotate 20s linear infinite;
}

.hero-2 .hero-background .gradient-blob.blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, #f59e0b, transparent 85%), color-mix(in srgb, var(--accent-color), transparent 85%));
  bottom: -150px;
  left: -150px;
  animation: rotate 25s linear infinite reverse;
}

.hero-2 .hero-background .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(color-mix(in srgb, var(--accent-color), transparent 95%) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 95%) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

@keyframes float {

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

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

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

  to {
    transform: rotate(360deg);
  }
}

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

  .hero-2 .hero-visual .product-mockup .floating-card.card-1 {
    left: -30px;
  }

  .hero-2 .hero-visual .product-mockup .floating-card.card-2 {
    right: -30px;
  }

  .hero-2 .hero-visual .product-mockup .floating-card.card-3 {
    left: -20px;
  }
}

@media (max-width: 768px) {
  .hero-2 {
    padding: 80px 0 60px;
  }

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

  .hero-2 .hero-buttons .btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-2 .hero-trust .trust-logos {
    justify-content: center;
    gap: 16px;
  }

  .hero-2 .hero-trust .trust-logos .trust-logo {
    height: 28px;
  }

  .hero-2 .hero-visual .product-mockup .floating-card {
    display: none;
  }
}


.hero-4 {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 96%) 0%,
      var(--background-color) 40%,
      color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  overflow: hidden;
}

.hero-4::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
      transparent 70%);
  border-radius: 50%;
  top: -20%;
  right: -10%;
  animation: float-bg-1 8s ease-in-out infinite;
  z-index: 1;
}

.hero-4::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  filter: blur(40px);
  animation: float-bg-2 6s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes float-bg-1 {

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

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

@keyframes float-bg-2 {

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

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

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

.hero-4 .hero-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}


.hero-4 .hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-4 .hero-title .typed {
  background: linear-gradient(135deg,
      var(--accent-color) 0%,
      color-mix(in srgb, var(--accent-color), #8b5cf6 50%) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: gradient-shift-typed 3s ease infinite;
}

@keyframes gradient-shift-typed {

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

  50% {
    background-position: 100% 50%;
  }
}

.hero-4 .hero-title .typed::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg,
      var(--accent-color) 0%,
      color-mix(in srgb, var(--accent-color), #8b5cf6 50%) 100%);
  border-radius: 2px;
}

.hero-4 .hero-description {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}


.hero-4 .hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-4 .hero-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-4 .hero-actions .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-4 .hero-actions .action-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), #8b5cf6 30%) 0%,
      var(--accent-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-4 .hero-actions .action-btn.primary span,
.hero-4 .hero-actions .action-btn.primary i {
  position: relative;
  z-index: 1;
}

.hero-4 .hero-actions .action-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-4 .hero-actions .action-btn.primary:hover::before {
  opacity: 1;
}

.hero-4 .hero-actions .action-btn.secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero-4 .hero-actions .action-btn.secondary:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}


.hero-4 .hero-image-showcase {
  position: relative;
  margin-top: 20px;
}

.hero-4 .hero-image-showcase .image-wrapper {
  position: relative;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 25px 70px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero-4 .hero-image-showcase .image-wrapper img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  display: block;
}


.hero-4 .hero-image-showcase .floating-card {
  position: absolute !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(20px) !important;
  z-index: 10 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  
  width: max-content !important;
  height: max-content !important;
  min-height: unset !important;
  max-height: unset !important;
  min-width: unset !important;
  max-width: 280px !important;
}

.hero-4 .hero-image-showcase .floating-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%) !important;
}

.hero-4 .hero-image-showcase .floating-card.card-1 {
  top: 15% !important;
  left: -70px !important;
  right: auto !important;
  bottom: auto !important;
  animation: float-card-4-1 5s ease-in-out infinite !important;
}

.hero-4 .hero-image-showcase .floating-card.card-2 {
  bottom: 12% !important;
  right: -70px !important;
  top: auto !important;
  left: auto !important;
  animation: float-card-4-2 5s ease-in-out infinite 1s !important;
}

@keyframes float-card-4-1 {

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

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

@keyframes float-card-4-2 {

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

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

.hero-4 .hero-image-showcase .floating-card .card-content {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-direction: row !important;
  width: 100% !important;
}

.hero-4 .hero-image-showcase .floating-card .card-content .card-icon {
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
      color-mix(in srgb, var(--accent-color), transparent 90%) 100%) !important;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%) !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.hero-4 .hero-image-showcase .floating-card .card-content .card-icon i {
  color: var(--accent-color) !important;
  font-size: 20px !important;
}

.hero-4 .hero-image-showcase .floating-card .card-content .card-info {
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.hero-4 .hero-image-showcase .floating-card .card-content .card-info h4 {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--accent-color) !important;
  margin: 0 !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.hero-4 .hero-image-showcase .floating-card .card-content .card-info p {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--heading-color) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}

.hero-4 .hero-image-showcase .floating-card .card-content .card-info p:first-child {
  font-weight: 700 !important;
  color: var(--accent-color) !important;
  font-size: 14px !important;
}


@media (max-width: 1200px) {
  .hero-4 .hero-title {
    font-size: 48px;
  }
}

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

  .hero-4 .hero-title {
    font-size: 42px;
  }

  .hero-4 .floating-card.card-1 {
    left: -40px !important;
    top: 12% !important;
  }

  .hero-4 .floating-card.card-2 {
    right: -40px !important;
    bottom: 10% !important;
  }

  .hero-4 .hero-actions {
    margin-bottom: 50px;
  }

  .hero-4 .floating-card {
    padding: 16px 20px !important;
  }

  .hero-4 .floating-card .card-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .hero-4 .floating-card .card-icon i {
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .hero-4 {
    padding: 80px 0 40px;
  }

  .hero-4 .hero-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .hero-4 .hero-description {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .hero-4 .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 40px;
  }

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

  .hero-4 .floating-card {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero-4 {
    padding: 80px 0 40px;
  }

  .hero-4 .hero-title {
    font-size: 32px;
  }

  .hero-4 .hero-description {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .hero-4 .hero-actions {
    margin-bottom: 36px;
  }

  .hero-4 .hero-actions .action-btn {
    padding: 16px 32px;
    font-size: 15px;
  }
}


.services {
  position: relative;
  overflow: visible;
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services .services-grid {
    grid-template-columns: 1fr;
  }
}

.services .service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color) 12%, transparent);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .service-card:nth-child(even) {
  margin-top: 20px;
}

@media (max-width: 576px) {
  .services .service-card:nth-child(even) {
    margin-top: 0;
  }
}

.services .service-card--featured {
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color) 90%, #7c3aed), color-mix(in srgb, var(--accent-color) 60%, #7c3aed));
  border-color: transparent;
}

.services .service-card--featured .service-number {
  color: color-mix(in srgb, #fff 30%, transparent);
}

.services .service-card--featured .service-icon-wrap i {
  color: #fff;
}

.services .service-card--featured .icon-blob {
  background: color-mix(in srgb, #fff 15%, transparent);
}

.services .service-card--featured h3 a {
  color: #fff;
}

.services .service-card--featured h3 a:hover {
  color: color-mix(in srgb, #fff 75%, transparent);
}

.services .service-card--featured p {
  color: color-mix(in srgb, #fff 80%, transparent);
}

.services .service-card--featured .service-link {
  color: #fff;
  border-color: color-mix(in srgb, #fff 30%, transparent);
}

.services .service-card--featured .service-link:hover {
  background: color-mix(in srgb, #fff 15%, transparent);
  border-color: #fff;
}

.services .service-card--featured .card-decoration--dots::before,
.services .service-card--featured .card-decoration--dots::after {
  background: color-mix(in srgb, #fff 25%, transparent);
}

.services .service-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 24px 56px color-mix(in srgb, var(--accent-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.services .service-card:hover .service-icon-wrap i {
  transform: scale(1.2) rotate(8deg);
}

.services .service-card:hover .icon-blob {
  transform: scale(1.3);
}

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

.services .service-card--featured:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 24px 56px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

.services .card-inner {
  padding: 40px 32px 36px;
  position: relative;
  z-index: 2;
}

.services .service-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent-color) 45%, transparent);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.services .service-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-icon-wrap i {
  font-size: 34px;
  color: var(--accent-color);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services .service-icon-wrap .icon-blob {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  transition: transform 0.5s ease, border-radius 0.5s ease;
  z-index: 1;
}

.services h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.services h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services h3 a:hover {
  color: var(--accent-color);
}

.services p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 24px;
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-color);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 30px;
  border: 2px solid color-mix(in srgb, var(--accent-color) 35%, transparent);
  transition: all 0.35s ease;
}

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

.services .service-link:hover i {
  transform: translateX(4px);
}

.services .card-decoration {
  position: absolute;
  z-index: 1;
}

.services .card-decoration--circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 18px solid color-mix(in srgb, var(--accent-color) 8%, transparent);
  bottom: -30px;
  right: -30px;
}

.services .card-decoration--dots {
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
}

.services .card-decoration--dots::before,
.services .card-decoration--dots::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.services .card-decoration--dots::before {
  width: 14px;
  height: 14px;
  top: 0;
  right: 0;
}

.services .card-decoration--dots::after {
  width: 22px;
  height: 22px;
  bottom: 0;
  left: 0;
}

.services .card-decoration--triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-bottom: 40px solid color-mix(in srgb, var(--accent-color) 10%, transparent);
  bottom: 20px;
  right: 20px;
}

.services .floating-blob {
  position: absolute;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}

.services .floating-blob--1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 8%, transparent), color-mix(in srgb, #7c3aed 6%, transparent));
  top: -80px;
  left: -120px;
  animation-delay: 0s;
}

.services .floating-blob--2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, #7c3aed 6%, transparent), color-mix(in srgb, var(--accent-color) 8%, transparent));
  bottom: -60px;
  right: -80px;
  animation-delay: -4s;
  animation-duration: 10s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  50% {
    transform: translateY(-20px) scale(1.05);
    border-radius: 37% 63% 46% 54%/48% 55% 45% 52%;
  }
}


.cards-3 .resource-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cards-3 .resource-card .card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cards-3 .resource-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cards-3 .resource-card .card-image-wrapper .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  color: var(--contrast-color);
  z-index: 2;
}

.cards-3 .resource-card .card-image-wrapper .card-badge.badge-new {
  background: #22c55e;
}

.cards-3 .resource-card .card-image-wrapper .card-badge.badge-popular {
  background: var(--accent-color);
}

.cards-3 .resource-card .card-image-wrapper .card-badge.badge-trending {
  background: #f97316;
}

.cards-3 .resource-card .card-image-wrapper .card-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards-3 .resource-card .card-image-wrapper .card-overlay .overlay-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.cards-3 .resource-card .card-image-wrapper .card-overlay .overlay-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: scale(1);
}

.cards-3 .resource-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cards-3 .resource-card .card-body .card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.cards-3 .resource-card .card-body .card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cards-3 .resource-card .card-body .card-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.cards-3 .resource-card .card-body .card-title a:hover {
  color: var(--accent-color);
}

.cards-3 .resource-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
  flex: 1;
}

.cards-3 .resource-card .card-body .card-footer {
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards-3 .resource-card .card-body .card-footer .action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-3 .resource-card .card-body .card-footer .action-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.cards-3 .resource-card .card-body .card-footer .action-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.cards-3 .resource-card .card-body .card-footer .action-link:hover i {
  transform: translateX(4px);
}

.cards-3 .resource-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-4px);
}

.cards-3 .resource-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.cards-3 .resource-card:hover .card-image-wrapper .card-overlay {
  opacity: 1;
}

.cards-3 .resource-card:hover .card-image-wrapper .card-overlay .overlay-btn {
  transform: scale(1);
}

@media (max-width: 768px) {
  .cards-3 .resource-card .card-body {
    padding: 16px;
  }

  .cards-3 .resource-card .card-body .card-title {
    font-size: 16px;
  }
}


.services-4 {
  --panel-radius: 18px;
}

.services-4 .intro-panel {
  height: 100%;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color) 12%, var(--surface-color)), var(--surface-color));
  border: 1px solid color-mix(in srgb, var(--accent-color) 24%, transparent);
}

.services-4 .intro-panel .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.services-4 .intro-panel h3 {
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-4 .intro-panel p {
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--default-color) 84%, transparent);
  line-height: 1.7;
}

.services-4 .intro-panel .intro-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.services-4 .intro-panel .intro-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.services-4 .intro-panel .intro-link:hover i {
  transform: translateX(4px);
}

.services-4 .service-list-wrap {
  display: grid;
  gap: 16px;
}

.services-4 .service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.services-4 .service-item .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 14%, transparent);
  transition: all 0.3s ease;
}

.services-4 .service-item .service-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.services-4 .service-item .service-content p {
  margin-bottom: 10px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color) 82%, transparent);
}

.services-4 .service-item .service-content .service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  position: relative;
}

.services-4 .service-item .service-content .service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.services-4 .service-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color) 45%, transparent);
  box-shadow: 0 16px 28px color-mix(in srgb, var(--default-color) 12%, transparent);
}

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

.services-4 .service-item:hover .service-link::after {
  width: 100%;
}

@media (max-width: 992px) {
  .services-4 .intro-panel {
    padding: 28px;
  }

  .services-4 .intro-panel h3 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .services-4 .service-item {
    flex-direction: column;
    gap: 14px;
  }
}


.services-5 {
  padding: 60px 0;
}

.services-5 .services-row {
  position: relative;
}

.services-5 .services-headline {
  margin-bottom: 25px;
}

.services-5 .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services-5 .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-5 .services-description {
  margin-bottom: 30px;
}

.services-5 .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-5 .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services-5 .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services-5 .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-5 .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services-5 .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services-5 .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services-5 .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services-5 .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services-5 .service-card:hover .service-info h3 a,
.services-5 .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services-5 .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services-5 .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services-5 .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services-5 .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services-5 .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services-5 .service-content .service-action {
  margin-top: 20px;
}

.services-5 .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services-5 .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services-5 .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services-5 .services-headline .services-title {
    font-size: 2rem;
  }

  .services-5 .services-image-container .services-image {
    height: 350px;
  }

  .services-5 .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services-5 .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}


.features-8 .features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

@media (max-width: 768px) {
  .features-8 .features-header {
    margin-bottom: 60px;
  }
}

.features-8 .features-header .features-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.features-8 .features-header .features-label i {
  font-size: 16px;
}

.features-8 .features-header h2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 992px) {
  .features-8 .features-header h2 {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .features-8 .features-header h2 {
    font-size: 36px;
  }
}

.features-8 .features-header h2 .text-highlight {
  font-style: italic;
  color: var(--accent-color);
}

.features-8 .features-header .features-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

.features-8 .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .features-8 .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .features-8 .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.features-8 .features-grid .feature-card {
  padding: 40px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .features-8 .features-grid .feature-card {
    padding: 32px;
  }
}

.features-8 .features-grid .feature-card:hover {
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-8 .features-grid .feature-card:hover .card-icon {
  transform: translateY(-4px);
}

.features-8 .features-grid .feature-card:hover .card-link {
  color: var(--accent-color);
}

.features-8 .features-grid .feature-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 8px;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.features-8 .features-grid .feature-card .card-icon i {
  font-size: 26px;
  color: var(--accent-color);
}

.features-8 .features-grid .feature-card .card-content h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.features-8 .features-grid .feature-card .card-content p {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 20px;
}

.features-8 .features-grid .feature-card .card-content .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  color: var(--default-color);
  transition: all 0.3s ease;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.features-8 .features-grid .feature-card .card-content .card-link i {
  font-size: 14px;
}

.features-8 .features-grid .feature-card .card-content .card-link:hover {
  border-bottom-color: var(--accent-color);
}

.features-8 .features-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background-color: var(--surface-color);
  border-radius: 4px;
}

@media (max-width: 992px) {
  .features-8 .features-cta {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 48px;
  }
}

@media (max-width: 576px) {
  .features-8 .features-cta {
    padding: 40px 32px;
  }
}

.features-8 .features-cta .cta-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.features-8 .features-cta .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
}

.features-8 .features-cta .cta-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 576px) {
  .features-8 .features-cta .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.features-8 .features-cta .cta-buttons .btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.features-8 .features-cta .cta-buttons .btn-primary-custom {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.features-8 .features-cta .cta-buttons .btn-primary-custom:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: var(--accent-color);
}

.features-8 .features-cta .cta-buttons .btn-secondary-custom {
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-8 .features-cta .cta-buttons .btn-secondary-custom:hover {
  border-color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}


.features-9 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features-9 .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features-9 .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-9 .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features-9 .phone-wrap {
    position: relative;
  }
}

.features-9 .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features-9 .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features-9 .phone-wrap img {
    width: 100%;
  }
}

.features-9 .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.features-9 .details h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-9 .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features-9 .details .btn-get-started {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}

.features-9 .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.services-6 .section-intro {
  margin-bottom: 48px;
}

.services-6 .section-intro .intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services-6 .section-intro .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-6 .section-intro .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.services-6 .section-intro .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s;
}

.services-6 .section-intro .btn-view-all:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-6 .section-intro .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-6 .section-intro .intro-title {
    font-size: 28px;
  }

  .services-6 .section-intro .btn-view-all {
    margin-top: 16px;
  }
}

.services-6 .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.services-6 .service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.services-6 .service-item:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.services-6 .service-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.services-6 .service-item:hover .service-cta i {
  transform: translateX(4px);
}

.services-6 .service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services-6 .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.services-6 .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s;
}

.services-6 .badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-6 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

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

.services-6 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.services-6 .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.services-6 .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services-6 .feature-list li:last-child {
  margin-bottom: 0;
}

.services-6 .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s;
}

.services-6 .service-cta i {
  font-size: 16px;
  transition: transform 0.3s;
}

.services-6 .service-cta:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-6 .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 16px;
  padding: 48px;
  margin-top: 64px;
}

.services-6 .cta-banner .cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.services-6 .cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.services-6 .cta-banner p {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
  line-height: 1.6;
}

.services-6 .cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.services-6 .cta-banner .btn-primary i {
  font-size: 16px;
}

.services-6 .cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--accent-color);
}

.services-6 .cta-banner .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--contrast-color);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: 12px;
}

.services-6 .cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services-6 .cta-banner {
    padding: 40px 32px;
  }

  .services-6 .cta-banner h3 {
    font-size: 24px;
  }

  .services-6 .cta-banner .btn-primary,
  .services-6 .cta-banner .btn-secondary {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .services-6 .service-item {
    padding: 28px;
    margin-bottom: 24px;
  }

  .services-6 .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .services-6 .icon-wrapper i {
    font-size: 24px;
  }

  .services-6 h3 {
    font-size: 20px;
  }

  .services-6 p {
    font-size: 14px;
  }

  .services-6 .feature-list li {
    font-size: 13px;
  }

  .services-6 .feature-list li i {
    font-size: 14px;
  }

  .services-6 .cta-banner {
    padding: 32px 24px;
    margin-top: 48px;
  }

  .services-6 .cta-banner h3 {
    font-size: 22px;
  }

  .services-6 .cta-banner p {
    font-size: 15px;
  }
}


.hero-12 {
  padding-top: 140px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--heading-color), transparent 92%),
      color-mix(in srgb, var(--heading-color), transparent 96%));
  padding-bottom: 80px;
}

.hero-12::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      color-mix(in srgb, var(--accent-color), transparent 88%) 0%,
      transparent 70%);
  z-index: 0;
  animation: pulse-gradient 8s ease-in-out infinite;
}

@keyframes pulse-gradient {

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

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}


.hero-12::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-flow 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes grid-flow {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

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

.hero-12 .hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-12 .hero-content {
  padding-right: 20px;
}


.hero-12 .subtitle {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
  position: relative;
}

.hero-12 .subtitle::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 12px rgba(var(--accent-color-rgb, 0, 102, 204), 0.8);
  animation: badge-pulse-12 2s ease-in-out infinite;
}

@keyframes badge-pulse-12 {

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

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}


.hero-12 .main-title {
  margin: 0 0 28px 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.hero-12 .main-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
  max-width: 580px;
}


.hero-12 .hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.hero-12 .btn-primary {
  font-weight: 600;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  position: relative;
  overflow: hidden;
}

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

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

.hero-12 .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), white 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.hero-12 .btn-video {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 17px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s;
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-12 .btn-video .video-play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(var(--accent-color-rgb, 0, 102, 204), 0.15);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hero-12 .btn-video .video-play-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
  z-index: -1;
  opacity: 0.3;
  animation: pulse-play 2s infinite;
}

@keyframes pulse-play {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

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

.hero-12 .btn-video .video-play-circle i {
  color: var(--accent-color);
  font-size: 22px;
  margin-left: 3px;
  z-index: 1;
}

.hero-12 .btn-video:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-12 .btn-video:hover .video-play-circle {
  background: var(--accent-color);
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(var(--accent-color-rgb, 0, 102, 204), 0.5);
}

.hero-12 .btn-video:hover .video-play-circle i {
  color: var(--contrast-color);
}


.hero-12 .hero-stats {
  display: flex;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.hero-12 .hero-stats .stat-item .stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-12 .hero-stats .stat-item .stat-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-12 .hero-stats .stat-divider {
  height: 50px;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent 0%,
      color-mix(in srgb, var(--default-color), transparent 70%) 50%,
      transparent 100%);
  margin: 0 40px;
}


.hero-12 .hero-image {
  position: relative;
}

.hero-12 .hero-image .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-12 .hero-image .main-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  max-width: 90%;
  animation: float-hero-image 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

@keyframes float-hero-image {

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

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

.hero-12 .hero-image .pattern-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-12 .hero-image .pattern-circle.pattern-circle-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle,
      color-mix(in srgb, var(--accent-color), transparent 80%) 0%,
      transparent 70%);
  top: -40px;
  right: 10%;
  animation: float-circle-1 7s ease-in-out infinite;
  filter: blur(20px);
}

.hero-12 .hero-image .pattern-circle.pattern-circle-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle,
      color-mix(in srgb, var(--heading-color), transparent 85%) 0%,
      transparent 70%);
  bottom: 0;
  left: 5%;
  animation: float-circle-2 8s ease-in-out infinite 1s;
  filter: blur(15px);
}

@keyframes float-circle-1 {

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

  50% {
    transform: translate(-10px, -15px) scale(1.1);
  }
}

@keyframes float-circle-2 {

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

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

.hero-12 .hero-image .pattern-line {
  position: absolute;
  width: 140%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      color-mix(in srgb, var(--accent-color), transparent 50%) 0px,
      color-mix(in srgb, var(--accent-color), transparent 50%) 8px,
      transparent 8px,
      transparent 16px);
  opacity: 0.4;
  transform: rotate(-35deg);
  top: 50%;
  animation: slide-line 20s linear infinite;
}

@keyframes slide-line {
  0% {
    transform: rotate(-35deg) translateX(-25%);
  }

  100% {
    transform: rotate(-35deg) translateX(25%);
  }
}


@media (max-width: 1400px) {
  .hero-12 .main-title {
    font-size: 52px;
  }
}

@media (max-width: 1199px) {
  .hero-12 .main-title {
    font-size: 46px;
  }

  .hero-12 .main-subtitle {
    font-size: 19px;
  }

  .hero-12 .pattern-circle-1 {
    width: 180px !important;
    height: 180px !important;
  }

  .hero-12 .pattern-circle-2 {
    width: 110px !important;
    height: 110px !important;
  }
}

@media (max-width: 991px) {
  .hero-12 {
    padding: 100px 0 60px 0;
  }

  .hero-12 .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-12 .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-12 .hero-image {
    order: 0;
  }

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

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

  .hero-12 .main-title {
    font-size: 42px;
  }

  .hero-12 .main-subtitle {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .hero-12 {
    padding: 80px 0 40px 0;
  }

  .hero-12 .main-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .hero-12 .main-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .hero-12 .subtitle {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 24px;
  }

  .hero-12 .hero-buttons {
    gap: 16px;
  }

  .hero-12 .btn-primary {
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero-12 .pattern-circle-1 {
    width: 140px !important;
    height: 140px !important;
  }

  .hero-12 .pattern-circle-2 {
    width: 90px !important;
    height: 90px !important;
  }

  .hero-12 .hero-stats .stat-item .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-12 {
    padding: 80px 0 40px 0;
  }

  .hero-12 .main-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-12 .main-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .hero-12 .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 0;
  }

  .hero-12 .btn-primary {
    width: 100%;
    padding: 16px 28px;
    font-size: 15px;
  }

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

  .hero-12 .pattern-circle-1 {
    width: 120px !important;
    height: 120px !important;
  }

  .hero-12 .pattern-circle-2 {
    width: 70px !important;
    height: 70px !important;
  }

  .hero-12 .hero-stats {
    margin-top: 40px;
    padding-top: 28px;
  }

  .hero-12 .hero-stats .stat-divider {
    margin: 0 24px;
  }

  .hero-12 .hero-stats .stat-item .stat-number {
    font-size: 28px;
  }
}


.services-2 {
  padding: 60px 0;
}

.services-2 .services-row {
  position: relative;
}

.services-2 .services-headline {
  margin-bottom: 25px;
}

.services-2 .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services-2 .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-2 .services-description {
  margin-bottom: 30px;
}

.services-2 .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-2 .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services-2 .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services-2 .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-2 .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services-2 .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services-2 .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services-2 .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services-2 .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services-2 .service-card:hover .service-info h3 a,
.services-2 .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services-2 .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services-2 .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services-2 .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services-2 .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services-2 .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services-2 .service-content .service-action {
  margin-top: 20px;
}

.services-2 .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services-2 .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services-2 .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services-2 .services-headline .services-title {
    font-size: 2rem;
  }

  .services-2 .services-image-container .services-image {
    height: 350px;
  }

  .services-2 .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services-2 .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}


.services-3 {
  padding: 80px 0;
}

.services-3 .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services-3 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services-3 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.services-3 .service-item:hover {
  transform: scale(1.05);
}

.services-3 .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services-3 .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.services-3 .service-item h3 a {
  color: var(--heading-color);
}

.services-3 .service-item h3 a:hover {
  color: var(--accent-color);
}

.services-3 .service-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
  .services-3 h2 {
    font-size: 2rem;
  }
}


.features-4 .content-wrapper {
  padding: 60px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 20px 0 0 20px;
}

.features-4 .content-wrapper .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  align-self: flex-start;
}

.features-4 .content-wrapper h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.features-4 .content-wrapper p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 35px;
}

.features-4 .features-checklist .check-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.features-4 .features-checklist .check-item i {
  font-size: 20px;
  color: var(--accent-color);
}

.features-4 .features-checklist .check-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
}

.features-4 .features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 40px;
  background: var(--surface-color);
  border-radius: 0 20px 20px 0;
  height: 100%;
}

.features-4 .feature-card {
  background: var(--background-color);
  padding: 30px 25px;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features-4 .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
}

.features-4 .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-4 .feature-card.primary::before {
  background: linear-gradient(90deg, #3690e7, #4facfe);
}

.features-4 .feature-card.secondary::before {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.features-4 .feature-card.tertiary::before {
  background: linear-gradient(90deg, #f093fb, #f5576c);
}

.features-4 .feature-card.quaternary::before {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.features-4 .feature-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.features-4 .feature-card .card-header .icon-wrapper {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-4 .feature-card .card-header .icon-wrapper i {
  font-size: 22px;
  color: var(--accent-color);
}

.features-4 .feature-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

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

@media (max-width: 991px) {
  .features-4 .row {
    flex-direction: column;
  }

  .features-4 .content-wrapper {
    border-radius: 20px 20px 0 0;
    padding: 50px 30px;
  }

  .features-4 .content-wrapper h2 {
    font-size: 32px;
  }

  .features-4 .content-wrapper p {
    font-size: 16px;
  }

  .features-4 .features-cards {
    border-radius: 0 0 20px 20px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .features-4 .features-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-4 .content-wrapper {
    text-align: center;
    padding: 40px 25px;
  }

  .features-4 .content-wrapper h2 {
    font-size: 28px;
  }

  .features-4 .content-wrapper .section-badge {
    align-self: center;
  }

  .features-4 .feature-card {
    padding: 25px 20px;
  }

  .features-4 .feature-card .card-header {
    gap: 12px;
  }

  .features-4 .feature-card .card-header .icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .features-4 .feature-card .card-header .icon-wrapper i {
    font-size: 20px;
  }

  .features-4 .feature-card .card-header h4 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .features-4 .content-wrapper {
    padding: 30px 20px;
  }

  .features-4 .content-wrapper h2 {
    font-size: 24px;
  }

  .features-4 .features-cards {
    padding: 25px 20px;
  }
}


.features-7 .features-overview {
  display: flex;
  margin-bottom: 60px;
  gap: 40px;
}

@media (max-width: 991px) {
  .features-7 .features-overview {
    flex-direction: column;
  }
}

.features-7 .features-overview .main-heading {
  flex: 1;
  padding-right: 20px;
}

.features-7 .features-overview .main-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.features-7 .features-overview .main-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features-7 .features-overview .main-heading .achievement-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 576px) {
  .features-7 .features-overview .main-heading .achievement-badges {
    flex-direction: column;
    gap: 20px;
  }
}

.features-7 .features-overview .main-heading .achievement-badges .achievement {
  display: flex;
  align-items: center;
  gap: 15px;
}

.features-7 .features-overview .main-heading .achievement-badges .achievement .achievement-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-7 .features-overview .main-heading .achievement-badges .achievement .achievement-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.features-7 .features-overview .main-heading .achievement-badges .achievement .achievement-info {
  display: flex;
  flex-direction: column;
}

.features-7 .features-overview .main-heading .achievement-badges .achievement .achievement-info .achievement-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.features-7 .features-overview .main-heading .achievement-badges .achievement .achievement-info .achievement-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.features-7 .features-overview .features-card-wrapper {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-7 .features-overview .features-card-wrapper .features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .features-7 .features-overview .features-card-wrapper .features-row {
    grid-template-columns: 1fr;
  }
}

.features-7 .features-overview .features-card-wrapper .feature-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.features-7 .features-overview .features-card-wrapper .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-7 .features-overview .features-card-wrapper .feature-card.feature-primary {
  border-left: 4px solid var(--accent-color);
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-icon {
  margin-bottom: 20px;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status .status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status.active {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status.active .status-indicator {
  background-color: #198754;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status.pending {
  background-color: rgba(255, 159, 67, 0.1);
  color: #ff9f43;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status.pending .status-indicator {
  background-color: #ff9f43;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status.scheduled {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.features-7 .features-overview .features-card-wrapper .feature-card .feature-details .feature-status.scheduled .status-indicator {
  background-color: #6c757d;
}

.features-7 .additional-features {
  margin-bottom: 50px;
}

.features-7 .additional-features .additional-feature-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

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

.features-7 .additional-features .additional-feature-card .icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.features-7 .additional-features .additional-feature-card .icon-container i {
  font-size: 28px;
  color: var(--accent-color);
}

.features-7 .additional-features .additional-feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-7 .additional-features .additional-feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features-7 .additional-features .additional-feature-card .feature-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.features-7 .additional-features .additional-feature-card .feature-tag i {
  font-size: 14px;
}

.features-7 .additional-features .additional-feature-card .feature-tag.active {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-7 .additional-features .additional-feature-card .feature-tag.pending {
  background-color: rgba(255, 159, 67, 0.1);
  color: #ff9f43;
}

.features-7 .additional-features .additional-feature-card .feature-tag.scheduled {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

@media (max-width: 991px) {
  .features-7 .features-overview .main-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .features-7 .features-overview .main-heading h2 {
    font-size: 26px;
  }

  .features-7 .features-overview .main-heading p {
    font-size: 16px;
  }
}


.features-2 .features-intro {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .features-2 .features-intro {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.features-2 .features-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .features-2 .features-intro h2 {
    font-size: 32px;
  }
}

.features-2 .features-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.features-2 .features-intro .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 576px) {
  .features-2 .features-intro .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.features-2 .features-intro .highlights-grid .highlight-item {
  text-align: center;
}

.features-2 .features-intro .highlights-grid .highlight-item .highlight-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.features-2 .features-intro .highlights-grid .highlight-item .highlight-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.features-2 .featured-image-container {
  position: relative;
}

.features-2 .featured-image-container .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.features-2 .featured-image-container .floating-badge i {
  font-size: 18px;
}

.features-2 .features-grid {
  margin: 80px 0;
}

.features-2 .features-grid .feature-box {
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-2 .features-grid .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .features-grid .feature-box .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-2 .features-grid .feature-box .feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  opacity: 0.2;
  transform: scale(1.3);
  z-index: -1;
}

.features-2 .features-grid .feature-box .feature-icon-wrapper i {
  font-size: 32px;
  color: var(--contrast-color);
}

.features-2 .features-grid .feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-2 .features-grid .feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.features-2 .features-grid .feature-box .progress-indicator {
  width: 100%;
  height: 4px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.features-2 .features-grid .feature-box .progress-indicator .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 30%));
  border-radius: 2px;
  transition: width 1s ease;
}

.features-2 .features-grid .feature-box .progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}

.features-2 .advanced-features-section {
  margin-top: 80px;
}

.features-2 .advanced-features-section h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .features-2 .advanced-features-section h3 {
    font-size: 28px;
  }
}

.features-2 .advanced-features-section .advanced-feature-card {
  background-color: var(--surface-color);
  padding: 35px;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.features-2 .advanced-features-section .advanced-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.features-2 .advanced-features-section .advanced-feature-card:hover .feature-icon-bg {
  transform: scale(1.1) rotate(10deg);
  opacity: 0.15;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header .feature-number {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.enterprise {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.premium {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.standard {
  background-color: rgba(54, 144, 231, 0.1);
  color: var(--accent-color);
}

.features-2 .advanced-features-section .advanced-feature-card .feature-header .feature-status-badge.coming-soon {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content {
  position: relative;
  z-index: 2;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 8px;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li i {
  color: #28a745;
  font-size: 16px;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-content .feature-benefits li:last-child {
  margin-bottom: 0;
}

.features-2 .advanced-features-section .advanced-feature-card .feature-icon-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  color: var(--accent-color);
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-2 .features-intro .highlights-grid {
    margin-top: 30px;
  }

  .features-2 .features-grid {
    margin: 60px 0;
  }

  .features-2 .advanced-features-section {
    margin-top: 60px;
  }
}


.hero-5 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px 0;
}


.hero-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move-5 20s linear infinite;
  z-index: 1;
}

@keyframes grid-move-5 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-5::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(var(--accent-color-rgb, 0, 102, 204), 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: pulse-glow-5 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-glow-5 {

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

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-5 .container,
.hero-5 .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-5 .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}


.hero-5 .main-heading {
  margin-bottom: 32px;
}

.hero-5 .main-heading h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}


.hero-5 .divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      transparent 100%);
  border-radius: 2px;
  margin-bottom: 32px;
  animation: divider-grow 1s ease-out;
}

@keyframes divider-grow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 120px;
    opacity: 1;
  }
}


.hero-5 .description {
  margin-bottom: 48px;
}

.hero-5 .description p {
  font-size: 20px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  max-width: 600px;
}


.hero-5 .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(var(--accent-color-rgb, 0, 102, 204), 0.35);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

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

.hero-5 .cta-button .btn:hover::before {
  left: 100%;
}

.hero-5 .cta-button .btn span {
  margin-right: 10px;
  position: relative;
  z-index: 1;
}

.hero-5 .cta-button .btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-5 .cta-button .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 10%);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(var(--accent-color-rgb, 0, 102, 204), 0.5);
}

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


.hero-5 .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-5 .contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  width: 100%;
}

.hero-5 .highlight-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}


.hero-5 .highlight-card .card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(var(--accent-color-rgb, 0, 102, 204), 0.15) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

.hero-5 .highlight-card:hover .card-glow {
  opacity: 1;
  transform: translate(-10%, -10%);
}


.hero-5 .highlight-card .card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  transition: all 0.5s;
}

.hero-5 .highlight-card:hover .card-number {
  color: rgba(var(--accent-color-rgb, 0, 102, 204), 0.1);
  transform: scale(1.2);
}


.hero-5 .highlight-card .card-icon-wrapper {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  position: relative;
}

.hero-5 .highlight-card .card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg,
      rgba(var(--accent-color-rgb, 0, 102, 204), 0.25),
      rgba(var(--accent-color-rgb, 0, 102, 204), 0.15));
  border: 2px solid rgba(var(--accent-color-rgb, 0, 102, 204), 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.hero-5 .highlight-card .card-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg,
      var(--accent-color),
      transparent);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.hero-5 .highlight-card:hover .card-icon {
  transform: rotate(10deg) scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(var(--accent-color-rgb, 0, 102, 204), 0.4);
}

.hero-5 .highlight-card:hover .card-icon::before {
  opacity: 0.3;
}

.hero-5 .highlight-card .card-icon i {
  font-size: 36px;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 8px rgba(var(--accent-color-rgb, 0, 102, 204), 0.4));
  transition: all 0.3s;
}

.hero-5 .highlight-card:hover .card-icon i {
  transform: scale(1.1);
}


.hero-5 .highlight-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--default-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.hero-5 .highlight-card:hover h3 {
  color: var(--accent-color);
}

.hero-5 .highlight-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s;
}

.hero-5 .highlight-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


.hero-5 .highlight-card .card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(var(--accent-color-rgb, 0, 102, 204), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-5 .highlight-card .card-arrow i {
  font-size: 20px;
  color: var(--accent-color);
}

.hero-5 .highlight-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--accent-color);
}

.hero-5 .highlight-card:hover .card-arrow i {
  color: var(--contrast-color);
}


.hero-5 .highlight-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(var(--accent-color-rgb, 0, 102, 204), 0.5);
  transform: translateX(8px) translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--accent-color-rgb, 0, 102, 204), 0.2);
}


.hero-5 .highlight-card.card-primary {
  animation: float-card-primary 8s ease-in-out infinite;
}

.hero-5 .highlight-card.card-secondary {
  animation: float-card-secondary 8s ease-in-out infinite 1s;
}

.hero-5 .highlight-card.card-tertiary {
  animation: float-card-tertiary 8s ease-in-out infinite 2s;
}

@keyframes float-card-primary {

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

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

@keyframes float-card-secondary {

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

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

@keyframes float-card-tertiary {

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

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


@media (max-width: 1200px) {
  .hero-5 .main-heading h1 {
    font-size: 52px;
  }

  .hero-5 .description p {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .hero-5 {
    padding: 100px 0 60px 0;
  }

  .hero-5 .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }

  .hero-5 .main-heading h1 {
    font-size: 44px;
  }

  .hero-5 .contact-highlights {
    margin-top: 60px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-5 {
    padding: 80px 0 40px 0;
  }

  .hero-5 .main-heading {
    margin-bottom: 24px;
  }

  .hero-5 .main-heading h1 {
    font-size: 38px;
  }

  .hero-5 .description {
    margin-bottom: 40px;
  }

  .hero-5 .description p {
    font-size: 18px;
  }

  .hero-5 .divider {
    width: 100px;
    margin-bottom: 28px;
  }

  .hero-5 .cta-button .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero-5 .highlight-card {
    padding: 28px 24px;
  }

  .hero-5 .highlight-card .card-icon-wrapper,
  .hero-5 .highlight-card .card-icon {
    width: 64px;
    height: 64px;
  }

  .hero-5 .highlight-card .card-icon i {
    font-size: 32px;
  }

  .hero-5 .highlight-card h3 {
    font-size: 20px;
  }

  .hero-5 .highlight-card .card-number {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .hero-5 .main-heading h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-5 .description p {
    font-size: 16px;
  }

  .hero-5 .highlight-card {
    padding: 24px 20px;
  }

  .hero-5 .highlight-card h3 {
    font-size: 18px;
  }

  .hero-5 .highlight-card p {
    font-size: 14px;
  }
}



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

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

@media (max-width: 767.98px) {
  .contact-2 .info-box h3 {
    font-size: 1.75rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-2 .contact-form .form-control::placeholder,
.contact-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

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


.info .info-block {
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.info .info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.info .info-block .icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.info .info-block .icon i {
  font-size: 36px;
  color: var(--contrast-color);
}

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

.info .info-block p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.info .info-block:hover .icon {
  background: var(--accent-color);
}

.info .info-block:hover .icon i {
  color: var(--contrast-color);
}

.info .promo-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 300px;
  position: relative;
}

.info .promo-banner .banner-content {
  flex: 1;
  padding: 40px;
  color: var(--contrast-color);
}

.info .promo-banner .banner-content .badge {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.info .promo-banner .banner-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.info .promo-banner .banner-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.info .promo-banner .banner-content .offer-details {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.info .promo-banner .banner-content .offer-details .original-price {
  font-size: 18px;
  text-decoration: line-through;
  opacity: 0.7;
}

.info .promo-banner .banner-content .offer-details .discount-price {
  font-size: 28px;
  font-weight: 700;
}

.info .promo-banner .banner-content .offer-details .save-text {
  font-size: 14px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 4px 12px;
  border-radius: 15px;
}

.info .promo-banner .banner-content .btn {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.info .promo-banner .banner-content .btn:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.info .promo-banner .banner-image {
  flex: 0 0 40%;
  height: 300px;
  position: relative;
}

.info .promo-banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .info .promo-banner {
    flex-direction: column;
    text-align: center;
  }

  .info .promo-banner .banner-content {
    padding: 30px 20px;
  }

  .info .promo-banner .banner-content h3 {
    font-size: 24px;
  }

  .info .promo-banner .banner-content .offer-details {
    justify-content: center;
    flex-wrap: wrap;
  }

  .info .promo-banner .banner-image {
    flex: none;
    width: 100%;
  }
}

.info .info-alert {
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.info .info-alert:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.info .info-alert .alert-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info .info-alert .alert-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.info .info-alert .alert-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.info .info-alert .alert-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 576px) {
  .info .info-alert {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .info .info-alert .alert-content h5 {
    font-size: 16px;
  }

  .info .info-alert .alert-content p {
    font-size: 13px;
  }
}


.why-us {
  padding: 80px 0;
}

.why-us .intro-content {
  padding-right: 40px;
}

.why-us .intro-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-us .intro-content .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-us .intro-content .stats-row {
  display: flex;
  gap: 40px;
}

.why-us .intro-content .stats-row .stat-item .stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.why-us .intro-content .stats-row .stat-item .stat-unit {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.why-us .intro-content .stats-row .stat-item .stat-desc {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 5px;
}

@media (max-width: 991px) {
  .why-us .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .intro-content .stats-row {
    justify-content: center;
  }
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-us .features-grid .grid-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.why-us .features-grid .grid-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .features-grid .grid-item .grid-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .features-grid .grid-item .grid-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.why-us .features-grid .grid-item .grid-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.why-us .features-grid .grid-item .grid-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .highlight-cards {
  margin-top: 60px;
}

.why-us .highlight-cards .highlight-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us .highlight-cards .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.why-us .highlight-cards .highlight-card:hover::before {
  opacity: 1;
}

.why-us .highlight-cards .highlight-card:hover .card-link i {
  transform: translateX(5px);
}

.why-us .highlight-cards .highlight-card.featured {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 35%));
}

.why-us .highlight-cards .highlight-card.featured::before {
  display: none;
}

.why-us .highlight-cards .highlight-card.featured .card-header i {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured .card-header .card-badge {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured h4 {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.why-us .highlight-cards .highlight-card.featured .card-link {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-header i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-color);
}

.why-us .highlight-cards .highlight-card .card-header .card-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 20px;
}

.why-us .highlight-cards .highlight-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.why-us .highlight-cards .highlight-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.why-us .highlight-cards .highlight-card .card-link i {
  transition: transform 0.3s ease;
}

.why-us .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.why-us .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.why-us .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.why-us .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.why-us .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.why-us .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .why-us .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .why-us .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .why-us .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}

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

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

  .why-us .intro-content .stats-row {
    gap: 30px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-value {
    font-size: 36px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-unit {
    font-size: 24px;
  }

  .why-us .highlight-cards {
    margin-top: 40px;
  }

  .why-us .highlight-cards .highlight-card {
    padding: 28px 24px;
  }

  .why-us .highlight-cards .highlight-card h4 {
    font-size: 20px;
  }

  .why-us .cta-banner .cta-content h3 {
    font-size: 22px;
  }
}


.about-3 .showcase-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about-3 .showcase-image img {
  border-radius: 8px;
  width: 100%;
  display: block;
}

.about-3 .showcase-image .overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about-3 .showcase-image .overlay-badge i {
  font-size: 16px;
}

.about-3 .intro-content .tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.about-3 .intro-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .about-3 .intro-content h2 {
    font-size: 1.75rem;
  }
}

.about-3 .intro-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
}

.about-3 .stat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.about-3 .stat-badges .stat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.3s ease;
}

.about-3 .stat-badges .stat-badge:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-3 .stat-badges .stat-badge strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.about-3 .stat-badges .stat-badge span {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-3 .highlights-section {
  margin-top: 64px;
  margin-bottom: 48px;
}

.about-3 .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.about-3 .highlight-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about-3 .highlight-item:hover .highlight-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-3 .highlight-item .highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 8px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.about-3 .highlight-item .highlight-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.about-3 .highlight-item .highlight-body p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-3 .action-banner {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .about-3 .action-banner {
    padding: 32px 24px;
  }
}

.about-3 .action-banner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about-3 .action-banner h3 {
    font-size: 1.5rem;
  }
}

.about-3 .action-banner>.row>.col-lg-8>p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.about-3 .action-banner .trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-3 .action-banner .trust-indicators .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-3 .action-banner .trust-indicators .trust-item i {
  font-size: 18px;
  color: var(--accent-color);
}

.about-3 .action-banner .btn-register {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.about-3 .action-banner .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.about-3 .action-banner .btn-agenda {
  display: inline-block;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-left: 12px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.about-3 .action-banner .btn-agenda:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .about-3 .action-banner .btn-agenda {
    margin-left: 0;
  }
}


.features-10 {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.features-10::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 70%);
  pointer-events: none;
}

.features-10 .intro-row {
  margin-bottom: 64px;
}

.features-10 .intro-content {
  padding-right: 24px;
}

.features-10 .intro-content .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.features-10 .intro-content .label-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  position: relative;
}

.features-10 .intro-content .label-badge .dot::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.features-10 .intro-content .label-badge span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.features-10 .intro-content .main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.features-10 .intro-content .description {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 85%, transparent);
  margin-bottom: 0;
}

.features-10 .features-wrapper {
  position: relative;
}

.features-10 .feature-box {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.features-10 .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-color);
  transition: height 0.4s ease;
}

.features-10 .feature-box .featured-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent-color);
  color: var(--contrast-color);
  z-index: 2;
}

.features-10 .feature-box .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 20%, transparent), color-mix(in srgb, var(--accent-color) 5%, transparent));
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.4s ease;
}

.features-10 .feature-box .icon-wrapper::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-10 .feature-box .content h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.features-10 .feature-box .content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
}

.features-10 .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateX(8px);
  box-shadow: -8px 12px 32px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.features-10 .feature-box:hover::before {
  height: 100%;
}

.features-10 .feature-box:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.features-10 .feature-box:hover .icon-wrapper::after {
  opacity: 1;
}

.features-10 .feature-box.highlight {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, var(--default-color)));
  border-color: var(--accent-color);
  transform: scale(1.03);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.features-10 .feature-box.highlight::before {
  background: var(--contrast-color);
}

.features-10 .feature-box.highlight .icon-wrapper {
  background: color-mix(in srgb, var(--contrast-color) 25%, transparent);
  color: var(--contrast-color);
}

.features-10 .feature-box.highlight .icon-wrapper::after {
  border-color: color-mix(in srgb, var(--contrast-color) 40%, transparent);
}

.features-10 .feature-box.highlight .content h4 {
  color: var(--contrast-color);
}

.features-10 .feature-box.highlight .content p {
  color: color-mix(in srgb, var(--contrast-color) 90%, transparent);
}

.features-10 .feature-box.highlight:hover {
  transform: scale(1.06) translateX(8px);
  box-shadow: -8px 20px 56px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

.features-10 .trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 40px;
  border-radius: 100px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 8%, var(--surface-color)), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 6%, transparent);
  max-width: fit-content;
  margin: 0 auto;
}

.features-10 .trust-badge .stars-wrapper {
  display: flex;
  gap: 4px;
  color: #ffc107;
  font-size: 20px;
}

.features-10 .trust-badge .divider {
  width: 2px;
  height: 24px;
  background: color-mix(in srgb, var(--default-color) 15%, transparent);
}

.features-10 .trust-badge .trust-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.features-10 .trust-badge .trust-text strong {
  font-weight: 700;
  color: var(--accent-color);
}

.features-10 .trust-badge .verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

.features-10 .trust-badge .verified-badge i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .features-10 .intro-content {
    padding-right: 0;
    margin-bottom: 48px;
  }

  .features-10 .intro-content .main-title {
    font-size: 36px;
  }

  .features-10 .intro-row {
    margin-bottom: 48px;
  }

  .features-10 .feature-box.highlight {
    transform: scale(1);
  }

  .features-10 .feature-box.highlight:hover {
    transform: scale(1.02) translateX(8px);
  }
}

@media (max-width: 768px) {
  .features-10 {
    padding: 96px 0;
  }

  .features-10::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }

  .features-10 .intro-content .main-title {
    font-size: 32px;
  }

  .features-10 .intro-content .description {
    font-size: 16px;
  }

  .features-10 .trust-badge {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    border-radius: 24px;
  }

  .features-10 .trust-badge .divider {
    width: 40px;
    height: 2px;
  }

  .features-10 .trust-badge .trust-text {
    text-align: center;
  }
}


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

.about .image-block img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

.about .image-block .experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .image-block .experience-badge .badge-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--heading-font);
}

.about .image-block .experience-badge .badge-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about .info-block .lead-text {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--accent-color);
}

.about .feature-cards {
  margin-bottom: 36px;
}

.about .feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 24px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.about .feature-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.about .feature-card .feature-icon i {
  font-size: 22px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.about .feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.about .feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about .feature-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(-4px);
}

.about .feature-card:hover .feature-icon {
  background: var(--accent-color);
}

.about .feature-card:hover .feature-icon i {
  color: var(--contrast-color);
}

.about .cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.about .btn-shop {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-shop i {
  font-size: 18px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .btn-shop:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color), transparent 45%);
}

.about .btn-shop:hover i {
  transform: translateX(3px);
}

.about .trust-indicators {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about .trust-indicators .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .trust-indicators .trust-item i {
  font-size: 16px;
  color: #22c55e;
}

@media (max-width: 992px) {
  .about .image-block {
    max-width: 480px;
    margin: 0 auto 16px;
  }

  .about .cta-row {
    justify-content: center;
    text-align: center;
  }

  .about .info-block .lead-text {
    text-align: left;
  }

  .about .trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about .trust-indicators {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about .image-block .experience-badge {
    padding: 12px 18px;
  }

  .about .image-block .experience-badge .badge-number {
    font-size: 26px;
  }

  .about .image-block .experience-badge .badge-text {
    font-size: 11px;
  }
}


.services-7 .section-intro {
  margin-bottom: 48px;
}

.services-7 .section-intro .intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services-7 .section-intro .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-7 .section-intro .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.services-7 .section-intro .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s;
}

.services-7 .section-intro .btn-view-all:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-7 .section-intro .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-7 .section-intro .intro-title {
    font-size: 28px;
  }

  .services-7 .section-intro .btn-view-all {
    margin-top: 16px;
  }
}

.services-7 .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.services-7 .service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.services-7 .service-item:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.services-7 .service-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.services-7 .service-item:hover .service-cta i {
  transform: translateX(4px);
}

.services-7 .service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services-7 .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.services-7 .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s;
}

.services-7 .badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-7 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

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

.services-7 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.services-7 .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.services-7 .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services-7 .feature-list li:last-child {
  margin-bottom: 0;
}

.services-7 .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s;
}

.services-7 .service-cta i {
  font-size: 16px;
  transition: transform 0.3s;
}

.services-7 .service-cta:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-7 .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 16px;
  padding: 48px;
  margin-top: 64px;
}

.services-7 .cta-banner .cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.services-7 .cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.services-7 .cta-banner p {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
  line-height: 1.6;
}

.services-7 .cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.services-7 .cta-banner .btn-primary i {
  font-size: 16px;
}

.services-7 .cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--accent-color);
}

.services-7 .cta-banner .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--contrast-color);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: 12px;
}

.services-7 .cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services-7 .cta-banner {
    padding: 40px 32px;
  }

  .services-7 .cta-banner h3 {
    font-size: 24px;
  }

  .services-7 .cta-banner .btn-primary,
  .services-7 .cta-banner .btn-secondary {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .services-7 .service-item {
    padding: 28px;
    margin-bottom: 24px;
  }

  .services-7 .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .services-7 .icon-wrapper i {
    font-size: 24px;
  }

  .services-7 h3 {
    font-size: 20px;
  }

  .services-7 p {
    font-size: 14px;
  }

  .services-7 .feature-list li {
    font-size: 13px;
  }

  .services-7 .feature-list li i {
    font-size: 14px;
  }

  .services-7 .cta-banner {
    padding: 32px 24px;
    margin-top: 48px;
  }

  .services-7 .cta-banner h3 {
    font-size: 22px;
  }

  .services-7 .cta-banner p {
    font-size: 15px;
  }
}


.hero-6 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px 0;
}

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

.hero-6 .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-6 .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--background-color), transparent 5%) 0%,
      color-mix(in srgb, var(--background-color), transparent 15%) 100%);
}


.hero-6 .hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-drift 25s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes grid-drift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-6 .container {
  position: relative;
  z-index: 3;
  padding: 40px 15px;
}


.hero-6 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 35px;
  background: rgba(var(--accent-color-rgb, 0, 102, 204), 0.15);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--accent-color-rgb, 0, 102, 204), 0.3);
  box-shadow: 0 4px 15px rgba(var(--accent-color-rgb, 0, 102, 204), 0.2);
  position: relative;
}

.hero-6 .hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--accent-color-rgb, 0, 102, 204), 0.8);
  animation: badge-pulse 2s ease-in-out infinite;
  position: absolute;
  left: 12px;
}

@keyframes badge-pulse {

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

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}


.hero-6 h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-6 p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 48px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 580px;
}


.hero-6 .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.hero-6 .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(var(--accent-color-rgb, 0, 102, 204), 0.4);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.hero-6 .hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero-6 .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), white 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(var(--accent-color-rgb, 0, 102, 204), 0.6);
  color: var(--contrast-color);
}

.hero-6 .hero-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  color: var(--default-color);
  transition: all 0.3s ease;
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-6 .hero-actions .btn-secondary .play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--accent-color-rgb, 0, 102, 204), 0.2);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hero-6 .hero-actions .btn-secondary i {
  font-size: 24px;
  color: var(--accent-color);
  margin-left: 3px;
}

.hero-6 .hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--accent-color-rgb, 0, 102, 204), 0.3);
  color: var(--default-color);
}

.hero-6 .hero-actions .btn-secondary:hover .play-icon {
  background: var(--accent-color);
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(var(--accent-color-rgb, 0, 102, 204), 0.6);
}

.hero-6 .hero-actions .btn-secondary:hover i {
  color: var(--contrast-color);
}


.hero-6 .hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-6 .hero-stats .stat-item {
  text-align: left;
}

.hero-6 .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-6 .hero-stats .stat-item .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}


.hero-6 .hero-visual {
  position: relative;
}

.hero-6 .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
  height: calc(50% - 10px);
  position: relative;
  overflow: hidden;
}

.hero-6 .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(var(--accent-color-rgb, 0, 102, 204), 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.hero-6 .feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(var(--accent-color-rgb, 0, 102, 204), 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-6 .feature-card i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(var(--accent-color-rgb, 0, 102, 204), 0.4));
  transition: transform 0.4s;
}

.hero-6 .feature-card:hover i {
  transform: scale(1.1);
}

.hero-6 .feature-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-6 .feature-card span:not(strong) {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.hero-6 .feature-card:last-child {
  margin-bottom: 0;
}


.hero-6 .feature-card:nth-child(1) {
  animation: float-card-1 6s ease-in-out infinite;
}

.hero-6 .feature-card:nth-child(2) {
  animation: float-card-2 6s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-6 .feature-card:nth-child(3) {
  animation: float-card-3 6s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-6 .feature-card:nth-child(4) {
  animation: float-card-4 6s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes float-card-1 {

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

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

@keyframes float-card-2 {

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

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

@keyframes float-card-3 {

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

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

@keyframes float-card-4 {

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

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


@media (max-width: 1200px) {
  .hero-6 h1 {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .hero-6 {
    padding: 100px 0 60px 0;
  }

  .hero-6 h1 {
    font-size: 44px;
  }

  .hero-6 .hero-visual {
    margin-top: 60px;
  }

  .hero-6 .feature-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .hero-6 h1 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .hero-6 p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .hero-6 .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-6 .hero-actions .btn-primary,
  .hero-6 .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-6 .hero-stats {
    gap: 32px;
  }

  .hero-6 .hero-stats .stat-item .stat-number {
    font-size: 36px;
  }

  .hero-6 .feature-card {
    padding: 20px 18px;
  }

  .hero-6 .feature-card i {
    font-size: 28px;
  }

  .hero-6 .feature-card strong {
    font-size: 15px;
  }

  .hero-6 .feature-card span:not(strong) {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hero-6 {
    padding: 80px 0 40px 0;
  }

  .hero-6 h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-6 p {
    font-size: 16px;
  }

  .hero-6 .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .hero-6 .hero-actions .btn-primary {
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero-6 .hero-actions .btn-secondary {
    font-size: 15px;
  }

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

  .hero-6 .feature-card {
    padding: 18px 16px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .hero-6 .feature-card i {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-6 .feature-card strong {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .hero-6 .feature-card span:not(strong) {
    font-size: 12px;
  }

  .hero-6 .hero-stats {
    gap: 24px;
  }

  .hero-6 .hero-stats .stat-item .stat-number {
    font-size: 32px;
  }
}



.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}


.privacy {
  font-size: 1rem;
  line-height: 1.75;
}

.privacy .policy-sidebar {
  position: sticky;
  top: 100px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-sidebar .effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.privacy .policy-sidebar .effective-badge i {
  font-size: 1rem;
}

.privacy .policy-sidebar h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .sidebar-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.privacy .policy-sidebar .policy-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.privacy .policy-sidebar .policy-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link:hover,
.privacy .policy-sidebar .policy-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.privacy .policy-sidebar .policy-nav .nav-link:hover .nav-number,
.privacy .policy-sidebar .policy-nav .nav-link.active .nav-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy .policy-sidebar .policy-nav .nav-link .nav-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.privacy .policy-sidebar .contact-card {
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 12px;
}

.privacy .policy-sidebar .contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .policy-sidebar .contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.privacy .policy-sidebar .contact-card .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.privacy .policy-sidebar .contact-card .contact-email i {
  font-size: 1.1rem;
}

.privacy .policy-sidebar .contact-card .contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .policy-sidebar .contact-card .contact-address i {
  font-size: 1rem;
  margin-top: 2px;
}

.privacy .policy-content {
  padding-left: 20px;
}

.privacy .policy-content .policy-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

.privacy .policy-content .policy-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.privacy .policy-content .policy-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.privacy .policy-content .policy-section .section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.privacy .policy-content .policy-section .section-body p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body p:last-child {
  margin-bottom: 0;
}

.privacy .policy-content .policy-section .section-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 25px 0 15px;
}

.privacy .policy-content .policy-section .section-body h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.privacy .policy-content .policy-section .section-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.privacy .policy-content .policy-section .section-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-content .policy-section .section-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .policy-content .policy-section .section-body ul li:last-child {
  margin-bottom: 0;
}

.privacy .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.privacy .info-card:last-child {
  margin-bottom: 0;
}

.privacy .info-card h3 {
  margin-top: 0 !important;
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.privacy .sharing-item {
  margin-bottom: 25px;
}

.privacy .sharing-item:last-child {
  margin-bottom: 0;
}

.privacy .sharing-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.privacy .security-features .feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.privacy .security-features .feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}

.privacy .security-features .feature .feature-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .security-features .feature .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .security-features .feature .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.privacy .rights-list .right-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.privacy .rights-list .right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-list .right-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.privacy .rights-list .right-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.privacy .rights-list .right-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.privacy .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  margin-top: 25px;
}

.privacy .update-notice i {
  font-size: 1.3rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy .update-notice span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .privacy .policy-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .privacy .policy-sidebar .policy-nav {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: 1fr;
  }

  .privacy .rights-list {
    grid-template-columns: 1fr;
  }

  .privacy .policy-content .policy-section .section-header h2 {
    font-size: 1.4rem;
  }

  .privacy .policy-content .policy-section .section-header .section-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .privacy .security-features .feature {
    flex-direction: column;
    text-align: center;
  }

  .privacy .security-features .feature .feature-icon {
    margin: 0 auto;
  }
}

@media print {
  .privacy .policy-sidebar {
    display: none;
  }

  .privacy .policy-content {
    padding-left: 0;
  }

  .privacy .policy-content .policy-section {
    page-break-inside: avoid;
  }
}



.steps-2 .steps-item {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.steps-2 .steps-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.steps-2 .steps-item .steps-number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
  line-height: 1;
}

.steps-2 .steps-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

@media (max-width: 1199px) {
  .steps-2 .steps-item {
    padding: 25px;
  }

  .steps-2 .steps-item .steps-number {
    font-size: 40px;
  }

  .steps-2 .steps-item h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .steps-2 .steps-item {
    padding: 20px;
  }

  .steps-2 .steps-item .steps-number {
    font-size: 36px;
  }

  .steps-2 .steps-item h3 {
    font-size: 20px;
  }

  .steps-2 .steps-item p {
    font-size: 14px;
  }
}


.call-to-action-2 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 8%, var(--background-color)) 0%, color-mix(in srgb, var(--accent-color) 3%, var(--background-color)) 100%);
  position: relative;
  overflow: hidden;
}

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

.call-to-action-2 .cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-2 .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action-2 .badge-label i {
  font-size: 16px;
}

.call-to-action-2 h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .call-to-action-2 h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .call-to-action-2 h2 {
    font-size: 32px;
  }
}

.call-to-action-2 .cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .call-to-action-2 .cta-description {
    font-size: 16px;
  }
}

.call-to-action-2 .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 576px) {
  .call-to-action-2 .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.call-to-action-2 .cta-buttons .btn-primary,
.call-to-action-2 .cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 52px;
}

@media (max-width: 576px) {

  .call-to-action-2 .cta-buttons .btn-primary,
  .call-to-action-2 .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.call-to-action-2 .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

.call-to-action-2 .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 45%, transparent);
}

.call-to-action-2 .cta-buttons .btn-primary:hover i {
  transform: translateX(4px);
}

.call-to-action-2 .cta-buttons .btn-primary i {
  transition: transform 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn-secondary {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.call-to-action-2 .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.call-to-action-2 .cta-buttons .btn-secondary i {
  font-size: 20px;
}

.call-to-action-2 .stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 48px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .call-to-action-2 .stats-row {
    flex-direction: column;
    gap: 24px;
    padding: 24px 32px;
  }
}

.call-to-action-2 .stats-row .stat-item {
  text-align: center;
}

.call-to-action-2 .stats-row .stat-item .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .call-to-action-2 .stats-row .stat-item .stat-number {
    font-size: 28px;
  }
}

.call-to-action-2 .stats-row .stat-item .stat-label {
  font-size: 14px;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.call-to-action-2 .stats-row .stat-divider {
  width: 1px;
  height: 48px;
  background: color-mix(in srgb, var(--default-color) 15%, transparent);
}

@media (max-width: 768px) {
  .call-to-action-2 .stats-row .stat-divider {
    width: 80px;
    height: 1px;
  }
}

.call-to-action-2 .trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-2 .trust-badges {
    gap: 16px;
  }
}

.call-to-action-2 .trust-badges .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.call-to-action-2 .trust-badges .trust-item i {
  font-size: 20px;
  color: var(--accent-color);
}

.call-to-action-2 .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.call-to-action-2 .shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 20%, transparent), color-mix(in srgb, var(--accent-color) 5%, transparent));
  top: -100px;
  left: -100px;
}

@media (max-width: 768px) {
  .call-to-action-2 .shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
  }
}

.call-to-action-2 .shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 15%, transparent), color-mix(in srgb, var(--accent-color) 3%, transparent));
  bottom: -50px;
  right: 10%;
}

@media (max-width: 768px) {
  .call-to-action-2 .shape-2 {
    width: 120px;
    height: 120px;
    right: 5%;
  }
}

.call-to-action-2 .shape-3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 25%, transparent), color-mix(in srgb, var(--accent-color) 10%, transparent));
  top: 20%;
  right: 5%;
}

@media (max-width: 768px) {
  .call-to-action-2 .shape-3 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 2%;
  }
}


.call-to-action-3 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-3 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-3:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

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

.call-to-action-3 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-3 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}




.features-14 .feature-card,
.features-14 .compliance-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.features-14 .feature-card:hover,
.features-14 .compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent-color);
}

.features-14 .feature-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.features-14 .feature-card .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}

.features-14 .feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.features-14 .feature-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.features-14 .feature-card .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
}

.features-14 .feature-card .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.features-14 .feature-card .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.features-14 .feature-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

.features-14 .feature-card .read-more:hover i {
  transform: translateX(5px);
}

.features-14 .compliance-card {
  text-align: center;
  padding: 25px 20px;
}

.features-14 .compliance-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-14 .compliance-card .status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.features-14 .compliance-card .status.in-progress {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.features-14 .compliance-card .status.compliant {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-14 .compliance-card .status.planned {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

@media (max-width: 992px) {
  .features-14 .feature-card {
    margin-bottom: 20px;
  }

  .features-14 .compliance-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .features-14 .feature-card .icon-box {
    width: 50px;
    height: 50px;
  }

  .features-14 .feature-card .icon-box i {
    font-size: 24px;
  }

  .features-14 .feature-card h3 {
    font-size: 20px;
  }

  .features-14 .compliance-card h4 {
    font-size: 16px;
  }
}


.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

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


.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}


.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}