/**
* Template Name: Landio
* Template URL: https://bootstrapmade.com/landio-bootstrap-landing-page-template/
* Updated: Sep 06 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #4a4b64;  /* The default color of the main navmenu links */
  --nav-hover-color: #0b1ae9; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #4a4b64; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0b1ae9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #0e1030;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  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 {
    padding-top: 10px;
  }

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

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer .footer-main {
  margin-bottom: 80px;
}

.footer .brand-section .logo {
  text-decoration: none;
}

.footer .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer .nav-column {
  margin-bottom: 40px;
}

.footer .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

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

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

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

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

.footer .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 0 0;
  }

  .footer .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer .brand-section .brand-description {
    max-width: none;
  }

  .footer .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer .footer-social {
    text-align: center;
  }

  .footer .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer .footer-social .social-links {
    justify-content: center;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .legal-links {
    justify-content: center;
  }
}

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

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

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

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

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

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

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 140px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 70%);
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-badge i {
  color: #FFD700;
  font-size: 0.875rem;
}

.hero .hero-content .hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

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

@media (max-width: 992px) {
  .hero .hero-content .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-title {
    font-size: 2.2rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-outline {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--heading-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.hero .hero-content .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

.hero .hero-content .hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-metrics {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-metrics {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-metrics {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.hero .hero-content .hero-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.hero .hero-content .hero-metrics .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .hero-content .hero-metrics .metric-item .metric-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-content .hero-metrics .metric-item .metric-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-metrics .metric-item .metric-content {
  text-align: left;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

@media (max-width: 1199px) {
  .hero {
    padding: 120px 0 60px 0;
  }
}

@media (max-width: 768px) {
  .hero .hero-content {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-section {
  position: relative;
}

.about .image-section .primary-image {
  position: relative;
  margin-bottom: 2rem;
}

.about .image-section .primary-image img {
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about .image-section .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .about .image-section .primary-image .experience-badge {
    top: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

.about .image-section .primary-image .experience-badge .years {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .image-section .primary-image .experience-badge .text {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-img {
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-img:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about .image-section {
    margin-bottom: 3rem;
  }
}

.about .content-section {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .about .content-section {
    padding-left: 0;
  }
}

.about .section-intro {
  margin-bottom: 3rem;
}

.about .section-intro .company-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about .section-intro h2 {
  font-size: 2.125rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

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

.about .section-intro .intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about .achievement-list {
  margin-bottom: 3rem;
}

.about .achievement-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about .achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}

.about .achievement-list .achievement-item .achievement-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .achievement-list .achievement-item .achievement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

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

.about .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 576px) {
  .about .action-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.about .action-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .action-section .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(-1px);
}

.about .action-section .contact-info .contact-label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.about .action-section .contact-info .phone-number {
  font-size: 1.125rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .metrics-section {
  margin-top: 5rem;
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 70%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .metrics-section .metric-card {
  padding: 1.5rem 1rem;
}

.about .metrics-section .metric-card .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .about .metrics-section .metric-card .metric-value {
    font-size: 2rem;
  }
}

.about .metrics-section .metric-card .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
  margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4facfe 30%));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border: none;
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .services-grid .service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
  color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .services-grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-grid .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .services-tabs .nav-pills {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  padding: 8px;
  display: inline-flex;
  margin: 0 auto;
}

.services .services-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

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

.services .services-tabs .tab-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services .services-grid .featured-service-card {
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
  }

  .services .services-grid .featured-service-card .feature-highlights {
    margin-bottom: 2rem;
  }

  .services .services-tabs .nav-pills {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .services .services-tabs .nav-pills .nav-item {
    width: 100%;
  }

  .services .services-tabs .nav-pills .nav-item .nav-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    margin-bottom: 4rem;
  }

  .services .services-grid .featured-service-card {
    padding: 2rem 1.5rem;
  }

  .services .services-grid .featured-service-card .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .services .services-grid .featured-service-card .service-icon-large i {
    font-size: 1.8rem;
  }

  .services .services-grid .featured-service-card h3 {
    font-size: 1.5rem;
  }

  .services .services-grid .featured-service-card .feature-highlights .highlight-item {
    justify-content: flex-start;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }

  .services .services-tabs .tab-service-card {
    padding: 2rem 1.5rem;
  }
}

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

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

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

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

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

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

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

.features .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 .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 .feature-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

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

.features .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 .features-content {
    text-align: center;
  }

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-list {
  margin-bottom: 30px;
}

.features-2 .features-list .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: left;
  height: 100%;
}

.features-2 .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-2 .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  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;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

.features-2 .features-list .feature-item .feature-content {
  flex: 1;
}

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

.features-2 .features-list .feature-item .feature-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  line-height: 1.5;
}

.features-2 .features-list .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.features-2 .features-list .feature-item .feature-content .feature-tags span {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.features-2 .cta-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.features-2 .cta-section .btn-primary,
.features-2 .cta-section .btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-2 .cta-section .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.features-2 .cta-section .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features-2 .cta-section .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-2 .cta-section .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .features-2 .features-list .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .features-2 .features-list .feature-item .feature-icon {
    align-self: center;
  }

  .features-2 .cta-section {
    flex-direction: column;
  }

  .features-2 .cta-section .btn-primary,
  .features-2 .cta-section .btn-secondary {
    text-align: center;
    justify-content: center;
  }

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.testimonials .testimonials-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials .testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.testimonials .testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .testimonial-card.featured {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, var(--surface-color) 100%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.05);
}

.testimonials .testimonial-card.featured .featured-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #007bff 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-card.featured .featured-badge i {
  font-size: 0.875rem;
}

.testimonials .rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonials .rating i {
  color: #ffc107;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px color-mix(in srgb, #ffc107, transparent 60%));
}

.testimonials blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0 0 2rem 0;
  position: relative;
  font-style: italic;
}

.testimonials blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 4rem;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials .user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.testimonials .user-info {
  flex: 1;
}

.testimonials .user-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
}

.testimonials .user-info .title {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonials .user-info .company {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.testimonials .navigation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.testimonials .nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .dots-indicator {
  display: flex;
  gap: 0.75rem;
}

.testimonials .dots-indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials .dots-indicator .dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-card {
    padding: 2rem;
  }

  .testimonials .testimonial-card.featured {
    transform: scale(1.02);
  }

  .testimonials blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials .testimonial-card.featured {
    transform: none;
  }

  .testimonials .testimonial-card:hover {
    transform: translateY(-8px);
  }

  .testimonials blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonials blockquote::before {
    font-size: 3rem;
    top: -0.75rem;
  }

  .testimonials .avatar {
    width: 50px;
    height: 50px;
  }

  .testimonials .user-info h4 {
    font-size: 1rem;
  }

  .testimonials .user-info .title {
    font-size: 0.85rem;
  }

  .testimonials .user-info .company {
    font-size: 0.8rem;
  }

  .testimonials .navigation-controls {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonials .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

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

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

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

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background-color: color-mix(in srgb, var(--surface-color), #f8f9fa 50%);
}

.faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq .faq-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 95%);
}

.faq .faq-item:hover {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

.faq .faq-item .question-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.faq .faq-item .icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.faq .faq-item .icon-wrapper i {
  color: var(--accent-color);
  font-size: 24px;
}

.faq .faq-item .content-wrapper {
  flex: 1;
  min-width: 0;
}

.faq .faq-item .question {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.faq .faq-item .answer p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq .faq-item {
    padding: 24px 20px;
  }

  .faq .faq-item .question-wrapper {
    gap: 16px;
  }

  .faq .faq-item .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .faq .faq-item .icon-wrapper i {
    font-size: 20px;
  }

  .faq .faq-item .question {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .faq .faq-item .answer p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq .faq-item {
    padding: 20px 16px;
  }

  .faq .faq-item .question-wrapper {
    gap: 12px;
  }

  .faq .faq-item .icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .faq .faq-item .icon-wrapper i {
    font-size: 18px;
  }

  .faq .faq-item .question {
    font-size: 15px;
  }

  .faq .faq-item .answer p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-panel {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  height: 100%;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.contact .contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/misc/misc-1.webp") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.contact .contact-info-panel .panel-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .contact .contact-info-panel .panel-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-panel .panel-content {
    padding: 40px 30px;
  }
}

.contact .contact-info-panel .info-header {
  margin-bottom: 50px;
}

.contact .contact-info-panel .info-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .contact .contact-info-panel .info-header h2 {
    font-size: 32px;
  }
}

.contact .contact-info-panel .info-header p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact .contact-info-panel .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
  flex: 1;
}

.contact .contact-info-panel .info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact .contact-info-panel .info-card:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  transform: translateX(10px);
}

.contact .contact-info-panel .info-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-panel .info-card .card-icon i {
  font-size: 22px;
}

.contact .contact-info-panel .info-card .card-content {
  flex: 1;
}

.contact .contact-info-panel .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.contact .contact-info-panel .info-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact .contact-info-panel .social-section {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding-top: 30px;
}

.contact .contact-info-panel .social-section h5 {
  font-size: 16px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.contact .contact-info-panel .social-section .social-icons {
  display: flex;
  gap: 15px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-info-panel .social-section .social-icons .social-icon i {
  font-size: 18px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 80px 60px;
  height: 100%;
  min-height: 650px;
}

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

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

.contact .contact-form-wrapper .form-header {
  margin-bottom: 50px;
}

.contact .contact-form-wrapper .form-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .contact .contact-form-wrapper .form-header h3 {
    font-size: 26px;
  }
}

.contact .contact-form-wrapper .form-header .header-line {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

.contact .contact-form-wrapper .modern-form .form-group .form-control {
  width: 100%;
  padding: 18px 25px;
  font-size: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .form-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .modern-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper .modern-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.contact .contact-form-wrapper .modern-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .modern-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover::before {
  left: 100%;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-text,
.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
  position: relative;
  z-index: 2;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact .contact-info-panel {
    min-height: auto;
  }

  .contact .contact-form-wrapper {
    min-height: auto;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  margin-bottom: 4rem;
}

.service-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-details .service-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.service-details .service-visual {
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 4px;
}

.service-details .service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
  transform: scale(1.02);
}

.service-details .service-narrative {
  margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.service-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .timeline-section {
  margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
  position: relative;
}

.service-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-details .service-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .overview-card .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.5rem;
}

.service-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

.service-details .overview-card .overview-details .detail-row .detail-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.service-details .overview-card .overview-details .detail-row .detail-value {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
  text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-details .consultation-form input[type=text],
.service-details .consultation-form input[type=email],
.service-details .consultation-form input[type=tel],
.service-details .consultation-form select,
.service-details .consultation-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

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

.service-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .service-details .service-hero h1 {
    font-size: 2.5rem;
  }

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

  .service-details .service-visual img {
    height: 250px;
  }

  .service-details .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .timeline-section .timeline::before {
    left: 20px;
  }

  .service-details .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1rem;
  }

  .service-details .overview-card .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

/*--------------------------------------------------------------
# ContentPartner 24 Media custom theme
--------------------------------------------------------------*/
:root {
  --default-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Manrope", system-ui, sans-serif;
  --nav-font: "DM Sans", system-ui, sans-serif;
  --background-color: #f8fbfb;
  --default-color: #46636a;
  --heading-color: #071c36;
  --accent-color: #d78355;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #183a4c;
  --nav-hover-color: #218d99;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #183a4c;
  --nav-dropdown-hover-color: #218d99;
  --cp-navy: #071c36;
  --cp-teal: #2a9eaa;
  --cp-teal-dark: #16737e;
  --cp-copper: #d78355;
  --cp-forest: #071c36;
  --cp-forest-2: #0b314f;
  --cp-mint: #d9f0f0;
  --cp-cream: #f5e6dc;
  --cp-orange: #d78355;
  --cp-ink: #071c36;
  --cp-line: #d6e7e8;
}

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

.dark-background {
  --background-color: #071c36;
  --default-color: #d5e9eb;
  --heading-color: #ffffff;
  --surface-color: #0d354f;
}

body.cp24-page {
  background: #f8fbfb;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

.cp24-page h1,
.cp24-page h2,
.cp24-page h3,
.cp24-page h4,
.cp24-page h5,
.cp24-page h6 {
  letter-spacing: -0.025em;
}

.cp24-page .section {
  scroll-margin-top: 88px;
  padding: 108px 0;
}

.cp24-page .header {
  padding: 16px 0;
}

.cp24-page .header .header-container {
  border: 1px solid rgba(18, 60, 51, 0.08);
  border-radius: 18px;
  padding: 9px 12px 9px 18px;
  box-shadow: 0 10px 36px rgba(18, 60, 51, 0.08);
}

.cp24-page.scrolled .header .header-container {
  box-shadow: 0 12px 40px rgba(18, 60, 51, 0.13);
}

.cp24-logo {
  color: var(--cp-forest) !important;
  flex: 0 0 auto;
}

.cp24-page .header .cp24-logo .brand-logo {
  width: clamp(240px, 20vw, 285px);
  height: auto;
  max-height: none;
  margin: 0;
  flex: 0 0 auto;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: var(--cp-forest);
  color: white;
  border-radius: 11px 3px 11px 3px;
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1;
  transform: rotate(-3deg);
}

.logo-mark span { transform: rotate(3deg); }

.logo-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.logo-copy strong {
  font-family: var(--heading-font);
  font-size: 18px;
  letter-spacing: -0.055em;
}

.logo-copy small {
  color: var(--cp-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .cp24-page .navmenu a,
  .cp24-page .navmenu a:focus {
    font-size: 14px;
    font-weight: 600;
    padding: 18px 13px;
  }
}

.cp24-page .header .btn-getstarted,
.cp24-page .header .btn-getstarted:focus {
  background: var(--cp-navy);
  border-radius: 10px;
  padding: 12px 19px;
  margin: 0 0 0 10px;
  font-weight: 700;
}

.cp24-page .header .btn-getstarted:hover { background: var(--cp-copper); }

.cp24-page .mobile-nav-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 4px;
  line-height: 1;
}

.cp24-hero {
  min-height: 770px;
  display: flex;
  align-items: center;
  padding-top: 165px !important;
  padding-bottom: 100px !important;
  background:
    linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(135deg, #def4f3 0%, #ffffff 52%, #f5e3d7 100%);
  background-size: 38px 38px, 38px 38px, auto;
  isolation: isolate;
}

.cp24-hero::before {
  width: 760px;
  height: 760px;
  right: -320px;
  top: -280px;
  border: 1px solid rgba(18, 60, 51, .14);
  background: transparent;
}

.cp24-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -205px;
  top: -160px;
  border: 1px solid rgba(18, 60, 51, .1);
  border-radius: 50%;
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}

.hero-orb-one { width: 260px; height: 260px; background: rgba(42, 158, 170, .17); left: -100px; bottom: 90px; }
.hero-orb-two { width: 180px; height: 180px; background: rgba(215, 131, 85, .14); right: 35%; top: 19%; }

.cp24-hero .hero-content .hero-badge {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(18, 60, 51, .12);
  box-shadow: none;
  margin-bottom: 28px;
  padding: 8px 14px;
  backdrop-filter: blur(8px);
}

.status-dot { width: 8px; height: 8px; background: var(--cp-teal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(42, 158, 170, .14); }

.cp24-hero .hero-content .hero-title {
  max-width: 760px;
  font-size: clamp(3.35rem, 6.1vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .99;
  margin-bottom: 28px;
}

.cp24-hero .hero-title span { color: var(--cp-orange); }

.cp24-hero .hero-content .hero-description {
  max-width: 690px;
  margin: 0 0 35px;
  color: #445d57;
  font-size: 1.15rem;
  line-height: 1.75;
}

.cp24-hero .hero-content .hero-actions { margin: 0 0 34px; gap: 14px; }

.cp24-hero .hero-content .hero-actions .btn-primary,
.btn-solid {
  background: var(--cp-navy);
  border-radius: 10px;
  padding: 15px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cp24-hero .hero-content .hero-actions .btn-primary:hover,
.btn-solid:hover { background: var(--cp-copper); color: white; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(7,28,54,.16); }

.cp24-hero .hero-content .hero-actions .btn-outline {
  border-color: rgba(18,60,51,.25);
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 700;
}

.hero-trustline { display: flex; flex-wrap: wrap; gap: 13px 23px; color: #536a64; font-size: 14px; font-weight: 600; }
.hero-trustline i { color: var(--cp-teal); margin-right: 5px; }

.editorial-stage {
  position: relative;
  max-width: 450px;
  margin-left: auto;
  padding: 23px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(18,60,51,.12);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 35px 80px rgba(18,60,51,.15);
  backdrop-filter: blur(12px);
  transform: rotate(1.2deg);
}

.editorial-stage::before {
  content: "";
  position: absolute;
  inset: 10px -12px -12px 10px;
  border: 1px solid rgba(18,60,51,.16);
  border-radius: inherit;
  z-index: -1;
}

.stage-topline { display: flex; justify-content: space-between; align-items: center; color: #71817c; font-size: 10px; letter-spacing: .15em; font-weight: 800; margin: 1px 3px 18px; }
.stage-live { display: flex; align-items: center; gap: 7px; letter-spacing: normal; text-transform: none; }
.stage-live i { width: 7px; height: 7px; background: var(--cp-orange); border-radius: 50%; }
.stage-feature { padding: 26px; min-height: 250px; background: var(--cp-forest); border-radius: 20px 5px 20px 5px; color: white; display: flex; flex-direction: column; align-items: flex-start; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; background: rgba(255,255,255,.12); border-radius: 14px; font-size: 23px; margin-bottom: 25px; }
.feature-kicker { color: #83d3d5; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.stage-feature strong { font-family: var(--heading-font); font-size: 26px; letter-spacing: -.035em; line-height: 1.18; margin: 8px 0 24px; }
.feature-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.feature-meta span { border: 1px solid rgba(255,255,255,.23); border-radius: 20px; font-size: 10px; padding: 4px 9px; color: #e6f0eb; }
.stage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.stage-card { display: flex; align-items: center; gap: 9px; padding: 13px 14px; background: #eaf5f5; border-radius: 10px; color: var(--cp-forest); font-size: 12px; font-weight: 800; }
.stage-card i { color: var(--cp-orange); font-size: 16px; }
.stage-note { display: flex; align-items: center; gap: 12px; padding: 17px 5px 1px; }
.stage-note > i { font-size: 23px; color: var(--cp-orange); }
.stage-note span { display: flex; flex-direction: column; color: #71817c; font-size: 11px; line-height: 1.4; }
.stage-note strong { color: var(--cp-forest); font-size: 12px; }

.principles-strip { background: var(--cp-forest); color: white; }
.principle-item { display: flex; padding: 30px 34px; border-right: 1px solid rgba(255,255,255,.12); }
.principle-item:last-child { border-right: none; }
.principle-item div { display: flex; flex-direction: column; }
.principle-item strong { font-family: var(--heading-font); font-size: 17px; }
.principle-item small { color: #b9ccc5; font-size: 13px; }

.section-eyebrow { color: var(--cp-orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.section-eyebrow.light { color: #efa074; }
.display-heading { color: var(--heading-color); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 800; letter-spacing: -.055em; line-height: 1.08; }
.lead-copy { color: #2d4d45; font-size: 1.16rem; line-height: 1.75; }
.section-intro-copy { max-width: 650px; color: #62736e; font-size: 1.05rem; line-height: 1.75; }

.about-visual { position: relative; max-width: 540px; padding: 0 42px 45px 0; }
.main-about-image { width: 100%; min-height: 590px; object-fit: cover; object-position: center; border-radius: 34px 8px 34px 8px; filter: saturate(.75); }
.about-overlay-card { position: absolute; right: 0; bottom: 0; max-width: 290px; background: var(--cp-orange); color: white; padding: 28px; border-radius: 20px 5px 20px 5px; box-shadow: 0 20px 50px rgba(85,40,28,.2); }
.overlay-label { display: block; opacity: .75; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }
.about-overlay-card strong { font-family: var(--heading-font); font-size: 20px; line-height: 1.35; }
.about-pattern { position: absolute; width: 110px; height: 110px; top: -25px; left: -25px; z-index: -1; opacity: .3; background-image: radial-gradient(var(--cp-forest) 1.5px, transparent 1.5px); background-size: 10px 10px; }
.belief-grid { margin-top: 30px; border-top: 1px solid var(--cp-line); }
.belief-item { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--cp-line); }
.belief-item > i { width: 44px; height: 44px; display: grid; place-items: center; color: var(--cp-copper); background: #f8e8de; border-radius: 12px; font-size: 19px; }
.belief-item div { display: flex; flex-direction: column; }
.belief-item strong { color: var(--cp-forest); font-family: var(--heading-font); font-size: 16px; }
.belief-item span { color: #6b7b76; font-size: 14px; }

.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.portal-count { min-width: 110px; display: flex; flex-direction: column; text-align: right; border-left: 1px solid var(--cp-line); padding-left: 24px; }
.portal-count strong { color: var(--cp-orange); font-family: var(--heading-font); font-size: 42px; line-height: 1; }
.portal-count span { color: #7a8b85; font-size: 12px; }
.portal-toolbar { display: flex; justify-content: space-between; gap: 25px; align-items: center; padding: 15px; background: #fff; border: 1px solid #dde5df; border-radius: 14px; margin-bottom: 28px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-btn { appearance: none; border: 0; background: transparent; color: #60726c; border-radius: 9px; padding: 9px 13px; font-size: 13px; font-weight: 700; transition: .2s ease; }
.filter-btn:hover { background: #eaf5f5; color: var(--cp-teal-dark); }
.filter-btn.active { background: var(--cp-navy); color: white; }
.sort-control { display: flex; align-items: center; gap: 9px; color: #84918d; font-size: 12px; white-space: nowrap; }
.sort-control select { border: 0; background: #eaf5f5; color: var(--cp-forest); border-radius: 8px; padding: 9px 30px 9px 10px; font-size: 13px; font-weight: 700; outline: none; }
.portal-item { display: flex; transition: opacity .22s ease, transform .22s ease; }
.portal-item.is-hiding { opacity: 0; transform: scale(.97); }
.portal-item[hidden] { display: none !important; }
.portal-card { --card-tint: #d8efef; position: relative; display: flex; flex-direction: column; width: 100%; min-height: 400px; padding: 28px; overflow: hidden; background: white; border: 1px solid var(--cp-line); border-radius: 20px 5px 20px 5px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.portal-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; top: -90px; border-radius: 50%; background: var(--card-tint); opacity: .7; }
.portal-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: 0 22px 55px rgba(18,60,51,.11); }
.portal-sage { --card-tint: #cbe9e8; }.portal-yellow { --card-tint: #f3d9c9; }.portal-blue { --card-tint: #b8e1e3; }.portal-coral { --card-tint: #edc4ad; }.portal-violet { --card-tint: #d7eeee; }.portal-ink { --card-tint: #aed9dc; }.portal-mint { --card-tint: #d8f0ef; }.portal-sand { --card-tint: #f2e2d7; }.portal-teal { --card-tint: #bfe8e7; }
.portal-card-head { position: relative; display: flex; justify-content: flex-start; align-items: center; margin-bottom: 34px; }
.portal-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--card-tint); color: var(--cp-forest); border-radius: 14px 4px 14px 4px; font-size: 21px; }
.portal-kicker { color: var(--cp-orange); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.portal-card h3 { font-size: 25px; font-weight: 800; margin: 8px 0 13px; }
.portal-card p { color: #64766f; font-size: 14px; line-height: 1.7; }
.portal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.portal-tags span { color: #536b64; background: #f1f4f1; border-radius: 20px; padding: 4px 9px; font-size: 10px; font-weight: 700; }
.portal-link { display: flex; justify-content: space-between; align-items: center; color: var(--cp-forest); border-top: 1px solid #e5ebe7; margin-top: auto; padding-top: 17px; font-size: 13px; font-weight: 800; }
.portal-link i { width: 30px; height: 30px; display: grid; place-items: center; background: var(--cp-navy); color: white; border-radius: 50%; transition: .25s ease; }
.portal-card:hover .portal-link i { background: var(--cp-orange); transform: rotate(45deg); }
.portal-empty { text-align: center; border: 1px dashed #bfcac4; border-radius: 14px; padding: 35px; color: #6f7f7a; }

.cp24-services { background: #f8fbfb; }
.capability-card { position: relative; min-height: 330px; padding: 30px; background: white; border: 1px solid var(--cp-line); border-radius: 6px 24px 6px 24px; transition: .3s ease; }
.capability-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(18,60,51,.09); }
.capability-card > i { width: 56px; height: 56px; display: grid; place-items: center; background: #e4f3f3; color: var(--cp-teal-dark); border-radius: 16px 5px 16px 5px; font-size: 22px; margin-bottom: 52px; }
.capability-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.capability-card p { color: #65766f; font-size: 14px; line-height: 1.75; margin-bottom: 0; }
.capability-accent { background: var(--cp-orange); border-color: var(--cp-orange); }
.capability-accent > i { background: rgba(255,255,255,.17); color: white; }
.capability-accent h3, .capability-accent p { color: white; }

.quality-section { position: relative; overflow: hidden; background: var(--cp-forest); }
.quality-section::before { content: "24"; position: absolute; left: -45px; bottom: -170px; color: rgba(255,255,255,.025); font-family: var(--heading-font); font-size: 460px; font-weight: 800; line-height: 1; }
.quality-section .display-heading { color: white; margin-bottom: 25px; }
.quality-section .col-lg-5 > p { color: #bcd0c8; max-width: 440px; }
.text-link-light { display: inline-flex; align-items: center; gap: 9px; color: white; font-weight: 700; margin-top: 15px; border-bottom: 1px solid rgba(255,255,255,.32); padding-bottom: 4px; }
.text-link-light:hover { color: #f5a18a; }
.quality-list { border-top: 1px solid rgba(255,255,255,.15); }
.quality-row { display: grid; grid-template-columns: 1fr 55px; gap: 17px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.quality-row h3 { color: white; font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.quality-row p { color: #bcd0c8; font-size: 14px; line-height: 1.6; margin: 0; }
.quality-row > i { width: 50px; height: 50px; display: grid; place-items: center; color: #f39b83; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; font-size: 18px; }

.partner-panel { background: linear-gradient(135deg, #dff2f2 0%, #f8ece4 100%); padding: 70px; border-radius: 34px 8px 34px 8px; }
.btn-solid { color: white; margin-top: 12px; }
.partner-options { display: grid; gap: 10px; }
.partner-options > div { display: grid; grid-template-columns: 50px 1fr; column-gap: 15px; align-items: center; background: rgba(255,255,255,.7); padding: 20px; border: 1px solid rgba(18,60,51,.08); border-radius: 14px; }
.partner-options span { grid-row: 1 / span 2; width: 46px; height: 46px; display: grid; place-items: center; background: var(--cp-navy); color: white; border-radius: 12px; font-size: 18px; }
.partner-options h3 { font-size: 17px; font-weight: 800; margin: 0 0 2px; }
.partner-options p { color: #64756f; font-size: 13px; line-height: 1.5; margin: 0; }

.cp24-page .faq .faq-container .faq-item { background: white; border: 1px solid var(--cp-line); border-radius: 12px; box-shadow: none; margin-bottom: 10px; padding: 0; overflow: hidden; }
.faq-question { appearance: none; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; color: var(--cp-forest); padding: 21px 22px; text-align: left; font-family: var(--heading-font); font-size: 16px; font-weight: 800; line-height: 1.4; }
.faq-question i { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #e4f3f3; color: var(--cp-teal-dark); transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-content { max-height: 0; overflow: hidden; opacity: 0; padding: 0 76px 0 22px; transition: max-height .3s ease, opacity .25s ease, padding .3s ease; }
.faq-content p { margin: 0; color: #64766f; font-size: 14px; line-height: 1.7; }
.cp24-page .faq .faq-container .faq-item.faq-active { border-color: #a9c4b4; box-shadow: 0 10px 35px rgba(18,60,51,.06); }
.faq-item.faq-active .faq-content { max-height: 260px; opacity: 1; padding-top: 0; padding-bottom: 22px; }
.faq-item.faq-active .faq-question i { transform: rotate(180deg); background: var(--cp-navy); color: white; }
.faq-question:focus-visible { outline: 3px solid color-mix(in srgb, var(--cp-orange), transparent 55%); outline-offset: -3px; }

.cp24-contact { padding-top: 90px !important; padding-bottom: 90px !important; }
.contact-panel { position: relative; overflow: hidden; background: var(--cp-orange); color: white; border-radius: 32px 8px 32px 8px; padding: 65px; }
.contact-panel h2 { color: white; font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 800; max-width: 760px; margin: 7px 0 16px; }
.contact-panel p { color: rgba(255,255,255,.84); max-width: 720px; margin: 0; }
.contact-kicker { font-size: 11px; letter-spacing: .15em; font-weight: 800; text-transform: uppercase; }
.contact-button { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--cp-forest); padding: 15px 19px; border-radius: 10px; font-size: 14px; font-weight: 800; white-space: nowrap; box-shadow: 0 13px 30px rgba(93,39,25,.15); }
.contact-button:hover { color: var(--cp-orange); transform: translateY(-2px); }
.contact-orbit { position: absolute; width: 330px; height: 330px; right: -105px; top: -140px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.contact-orbit::before { content: ""; position: absolute; width: 250px; height: 250px; left: 39px; top: 39px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }

.cp24-footer { background: var(--cp-navy); color: #bcd8da; }
.cp24-footer .footer-main { padding: 70px 0 55px; }
.cp24-footer .footer-logo { color: white !important; margin-bottom: 24px; }
.cp24-footer .footer-logo .brand-logo { width: 310px; max-width: 100%; height: auto; }
.cp24-footer .logo-mark { background: white; color: var(--cp-forest); }
.cp24-footer .brand-description { color: #bcd8da; max-width: 360px; font-size: 16px; }
.cp24-footer h6 { color: white; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin: 5px 0 20px; }
.cp24-footer .footer-nav { display: flex; flex-direction: column; gap: 10px; }
.cp24-footer .footer-nav a { color: #bcd8da; font-size: 14px; }
.cp24-footer .footer-nav a:hover, .footer-mail:hover { color: #f0a076; }
.footer-mail { color: white; font-weight: 700; }
.footer-note { color: #7ea5aa; font-size: 13px; margin-top: 8px; }
.cp24-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 23px 0; }
.cp24-footer .bottom-content { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 0; }
.cp24-footer .bottom-content p { color: #7ea5aa; font-size: 12px; margin: 0; }
.legal-links { display: flex; gap: 18px; }
.legal-links button { appearance: none; border: 0; padding: 0; background: none; color: #bcd8da; font-size: 12px; }
.legal-links button:hover { color: white; }
.template-credit a { color: #8eb5b9; }

.cp24-page .modal-content { border: 0; border-radius: 18px; box-shadow: 0 30px 90px rgba(18,60,51,.2); }
.cp24-page .modal-header { border-color: var(--cp-line); padding: 22px 24px; }
.cp24-page .modal-body { padding: 24px; color: #5b6f68; }
.cp24-page .modal-title { color: var(--cp-forest); font-weight: 800; }
.cp24-page .scroll-top { background: var(--cp-orange); }
.cp24-page .scroll-top:hover { background: var(--cp-navy); }

@media (max-width: 1199px) {
  .cp24-page .header .header-container { border-radius: 14px; }
  .cp24-hero { min-height: auto; }
  .editorial-stage { margin: 10px auto 0; }
}

@media (max-width: 991px) {
  .cp24-page .section { padding: 82px 0; }
  .cp24-hero { padding-top: 145px !important; }
  .cp24-hero .hero-content { text-align: left !important; }
  .cp24-hero .hero-content .hero-actions { align-items: flex-start; }
  .main-about-image { min-height: 480px; }
  .partner-panel, .contact-panel { padding: 48px; }
}

@media (max-width: 767px) {
  .cp24-page .header { padding: 10px 8px; }
  .cp24-page .header .header-container { padding-left: 12px; }
  .logo-copy small { display: none; }
  .cp24-page .header .cp24-logo .brand-logo { width: 225px; }
  .cp24-page .header .btn-getstarted { display: none; }
  .cp24-hero { padding-top: 125px !important; padding-bottom: 70px !important; }
  .cp24-hero .hero-content .hero-title { font-size: clamp(2.65rem, 12.8vw, 4rem); }
  .cp24-hero .hero-content .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-trustline { flex-direction: column; gap: 7px; }
  .editorial-stage { padding: 16px; border-radius: 20px 6px 20px 6px; }
  .principle-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 21px 5px; }
  .principle-item:last-child { border-bottom: 0; }
  .about-visual { padding: 0 22px 32px 0; }
  .main-about-image { min-height: 410px; }
  .about-overlay-card { max-width: 245px; padding: 20px; }
  .section-heading-row { align-items: flex-start; }
  .portal-toolbar { align-items: stretch; flex-direction: column; }
  .sort-control { justify-content: space-between; border-top: 1px solid var(--cp-line); padding-top: 12px; }
  .portal-count { display: none; }
  .portal-card { min-height: 375px; }
  .partner-panel, .contact-panel { padding: 35px 24px; border-radius: 24px 6px 24px 6px; }
  .quality-row { grid-template-columns: 1fr; }
  .quality-row > i { display: none; }
  .faq-question { padding: 18px; font-size: 15px; }
  .faq-content { padding-left: 18px; padding-right: 18px; }
  .faq-item.faq-active .faq-content { padding-bottom: 18px; }
  .contact-button { white-space: normal; }
  .cp24-footer .bottom-content { align-items: flex-start; flex-direction: column; gap: 10px; }
  .template-credit { order: 3; }
}

@media (max-width: 480px) {
  .logo-copy strong { font-size: 16px; }
  .cp24-page .header .cp24-logo .brand-logo { width: 205px; }
  .logo-mark { width: 34px; height: 34px; }
  .cp24-hero .hero-content .hero-actions .btn-primary,
  .cp24-hero .hero-content .hero-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .stage-feature { min-height: 225px; padding: 21px; }
  .stage-feature strong { font-size: 22px; }
  .filter-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
  .filter-btn { white-space: nowrap; }
  .main-about-image { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/*--------------------------------------------------------------
# Themenfeld detail page
--------------------------------------------------------------*/
.topic-hero {
  position: relative;
  overflow: hidden;
  padding-top: 175px !important;
  padding-bottom: 105px !important;
  background:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(135deg, #def4f3 0%, #ffffff 58%, #f5e3d7 100%);
  background-size: 38px 38px, 38px 38px, auto;
}
.topic-orb { position: absolute; width: 460px; height: 460px; top: -185px; right: -120px; border: 1px solid rgba(18,60,51,.12); border-radius: 50%; }
.topic-orb::before { content: ""; position: absolute; inset: 65px; border: 1px solid rgba(18,60,51,.1); border-radius: 50%; }
.topic-back { display: inline-flex; align-items: center; gap: 8px; color: #587069; font-size: 13px; font-weight: 700; margin-bottom: 55px; }
.topic-back:hover { color: var(--cp-orange); }
.topic-hero h1 { max-width: 900px; margin: 0 0 24px; color: var(--cp-forest); font-size: clamp(3.2rem, 7vw, 6.2rem); font-weight: 800; line-height: .98; letter-spacing: -.065em; }
.topic-lead { max-width: 750px; color: #445d57; font-size: 1.2rem; line-height: 1.75; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.topic-tags span { padding: 7px 12px; background: rgba(255,255,255,.7); border: 1px solid rgba(18,60,51,.12); border-radius: 30px; color: var(--cp-forest); font-size: 12px; font-weight: 700; }
.topic-icon-panel { position: relative; min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 34px; background: var(--cp-forest); color: white; border-radius: 28px 7px 28px 7px; box-shadow: 0 30px 70px rgba(18,60,51,.17); }
.topic-icon-panel::after { content: ""; position: absolute; width: 140px; height: 140px; right: -45px; top: -50px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.topic-icon-panel > i { width: 66px; height: 66px; display: grid; place-items: center; background: rgba(255,255,255,.12); border-radius: 18px 5px 18px 5px; color: #f0a076; font-size: 29px; }
.topic-icon-panel span { max-width: 240px; color: #d6e5df; font-family: var(--heading-font); font-size: 18px; font-weight: 700; line-height: 1.4; }
.topic-introduction { background: #f8fbfb; }
.topic-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 30px; }
.topic-values > div { display: flex; flex-direction: column; padding: 18px; background: #eaf5f5; border-radius: 12px; }
.topic-values i { color: var(--cp-orange); font-size: 20px; margin-bottom: 15px; }
.topic-values strong { color: var(--cp-forest); font-family: var(--heading-font); font-size: 14px; }
.topic-values span { color: #70817b; font-size: 11px; line-height: 1.5; margin-top: 3px; }
.topic-portal-card { display: flex; flex-direction: column; min-height: 355px; height: 100%; padding: 30px; background: white; border: 1px solid var(--cp-line); border-radius: 20px 6px 20px 6px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.topic-portal-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 22px 55px rgba(18,60,51,.1); }
.topic-portal-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 40px; background: #d8eeee; color: var(--cp-teal-dark); border-radius: 16px 5px 16px 5px; font-size: 22px; }
.topic-portal-label { color: var(--cp-orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.topic-portal-card h3 { color: var(--cp-forest); font-size: 23px; font-weight: 800; margin: 8px 0 13px; }
.topic-portal-card p { color: #65766f; font-size: 14px; line-height: 1.7; }
.topic-portal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 18px; border-top: 1px solid #e7ece8; }
.topic-portal-tags span { padding: 4px 9px; background: #f1f4f1; color: #536b64; border-radius: 20px; font-size: 10px; font-weight: 700; }
.topic-method-panel { padding: 70px; background: linear-gradient(135deg, #dff2f2 0%, #f8ece4 100%); border-radius: 34px 8px 34px 8px; }
.topic-method-panel .display-heading { margin-bottom: 22px; }
.topic-method-list { display: grid; gap: 10px; }
.topic-method-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; padding: 20px; background: rgba(255,255,255,.7); border: 1px solid rgba(18,60,51,.08); border-radius: 13px; }
.topic-method-list i { width: 46px; height: 46px; display: grid; place-items: center; background: var(--cp-navy); color: white; border-radius: 12px; font-size: 18px; }
.topic-method-list span { display: flex; flex-direction: column; color: #65766f; font-size: 13px; line-height: 1.5; }
.topic-method-list strong { color: var(--cp-forest); font-family: var(--heading-font); font-size: 16px; margin-bottom: 2px; }
.footer-return { color: #bcd8da; font-size: 12px; }
.footer-return:hover { color: white; }

@media (max-width: 991px) {
  .topic-hero { padding-top: 145px !important; padding-bottom: 80px !important; }
  .topic-back { margin-bottom: 40px; }
  .topic-icon-panel { max-width: 420px; min-height: 210px; }
  .topic-method-panel { padding: 48px; }
}

@media (max-width: 767px) {
  .topic-hero { padding-top: 125px !important; padding-bottom: 65px !important; }
  .topic-hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .topic-back { margin-bottom: 32px; }
  .topic-values { grid-template-columns: 1fr; }
  .topic-portal-card { min-height: 330px; }
  .topic-method-panel { padding: 35px 24px; border-radius: 24px 6px 24px 6px; }
}
