/**
* Template Name: Stratify
* Template URL: https://bootstrapmade.com/stratify-bootstrap-corporate-template/
* Updated: Mar 03 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Montserrat",  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: #73777c; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2e3c54; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0754d9; /* 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: #73777c;  /* The default color of the main navmenu links */
  --nav-hover-color: #0754d9; /* 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: #73777c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0754d9; /* 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: #f7f9fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #e3e3e3;
  --heading-color: #ffffff;
  --accent-color: #bdb5b5;
  --surface-color: #252525;
  --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);
}

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

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

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

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

.scrolled .header {
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 0;
  }

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

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

  .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }

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

  .navmenu>ul>li>a:hover::after,
  .navmenu>ul>li>.active::after,
  .navmenu>ul>li>.active:focus::after {
    opacity: 1;
    transform: scale(1);
  }

  .navmenu>ul>li:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }

  .navmenu .dropdown ul a::after {
    display: none;
  }

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

  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }

  .navmenu .dropdown ul a:hover::before {
    width: 12px;
  }

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

  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before {
    width: 12px;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

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

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

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

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

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

  .navmenu a:hover::before {
    width: 40px;
  }

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

  .navmenu .active::before,
  .navmenu .active:focus::before {
    width: 40px;
  }

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
  }

  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

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

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

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

  .mobile-nav-active .navmenu>ul {
    display: block;
    max-height: 100vh;
  }
}

/*--------------------------------------------------------------
# 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: 300;
  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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title p {
  font-size: 1.125rem;
  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: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .visual-block {
  position: relative;
  padding: 20px;
}

.hero .visual-block .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero .visual-block .image-wrapper img {
  border-radius: 18px;
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.hero .visual-block .image-wrapper:hover img {
  transform: scale(1.03);
}

.hero .visual-block .accent-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 576px) {
  .hero .visual-block .accent-badge {
    padding: 0.75rem 1rem;
  }
}

.hero .visual-block .accent-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .visual-block .accent-badge .badge-icon i {
  font-size: 1.25rem;
  color: var(--contrast-color);
}

.hero .visual-block .accent-badge .badge-info {
  display: flex;
  flex-direction: column;
}

.hero .visual-block .accent-badge .badge-info .badge-title {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero .visual-block .accent-badge .badge-info .badge-value {
  font-size: 1.375rem;
  font-weight: 700;
}

.hero .intro-content {
  padding-left: 2rem;
}

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

.hero .intro-content .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero .intro-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .intro-content h1 {
    font-size: 2rem;
  }
}

.hero .intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 540px;
}

.hero .action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero .action-buttons .btn-launch {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .action-buttons .btn-launch:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.hero .action-buttons .btn-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .action-buttons .btn-outline i {
  font-size: 1.25rem;
}

.hero .action-buttons .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.hero .metrics-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .metrics-row {
    flex-direction: column;
  }
}

.hero .metrics-row .metric-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: var(--surface-color);
  transition: all 0.3s ease;
}

.hero .metrics-row .metric-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.hero .metrics-row .metric-card>i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .metrics-row .metric-card .metric-info {
  display: flex;
  flex-direction: column;
}

.hero .metrics-row .metric-card .metric-info strong {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.hero .metrics-row .metric-card .metric-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about .image-block {
  position: relative;
  padding: 20px;
}

.about .image-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 16px;
  z-index: 0;
}

.about .image-block img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

.about .image-block .experience-badge {
  position: absolute;
  bottom: -10px;
  left: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 18px 24px;
  max-width: 300px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .about .image-block .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: none;
  }
}

.about .image-block .experience-badge .badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--contrast-color);
}

.about .image-block .experience-badge .badge-inner i {
  font-size: 28px;
  flex-shrink: 0;
}

.about .image-block .experience-badge .badge-inner strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.about .image-block .experience-badge .badge-inner span {
  font-size: 13px;
  opacity: 0.85;
}

.about .info-panel .overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.about .info-panel .overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color: var(--accent-color);
}

.about .info-panel h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about .info-panel h2 {
    font-size: 28px;
  }
}

.about .info-panel .intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  font-weight: 400;
}

.about .info-panel .text-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.about .counter-row {
  margin-top: 40px;
  margin-bottom: 40px;
}

.about .counter-row .counter-card {
  padding: 20px;
  border-left: 3px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}

.about .counter-row .counter-card:hover {
  transform: translateY(-3px);
}

.about .counter-row .counter-card .count {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.about .counter-row .counter-card .count-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .counter-row .counter-card p {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 8px 0 0 0;
}

.about .discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.about .discover-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .discover-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-bottom: 50px;
  }

  .about .counter-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .svc-card {
  display: flex;
  align-items: stretch;
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.35s ease;
}

.services .svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

.services .svc-card:hover .svc-icon-panel {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 28%);
}

.services .svc-card:hover .svc-link {
  color: var(--accent-color);
}

.services .svc-card:hover .svc-link i {
  transform: translateX(5px);
}

.services .svc-card .svc-icon-panel {
  width: 115px;
  min-width: 115px;
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  transition: background 0.35s ease;
}

.services .svc-card .svc-icon-panel .svc-num {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: color-mix(in srgb, var(--contrast-color), transparent 45%);
  text-transform: uppercase;
}

.services .svc-card .svc-icon-panel i {
  font-size: 34px;
  color: var(--contrast-color);
}

.services .svc-card .svc-body {
  padding: 30px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .svc-card .svc-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.35;
}

.services .svc-card .svc-body p {
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  flex: 1;
  margin-bottom: 20px;
}

.services .svc-card .svc-body .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.services .svc-card .svc-body .svc-link i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .services .svc-card {
    flex-direction: column;
  }

  .services .svc-card .svc-icon-panel {
    width: 100%;
    min-width: 0;
    height: 88px;
    flex-direction: row;
    gap: 14px;
    padding: 0 28px;
  }

  .services .svc-card .svc-icon-panel .svc-num {
    font-size: 10px;
  }

  .services .svc-card .svc-icon-panel i {
    font-size: 28px;
  }

  .services .svc-card .svc-body {
    padding: 24px 22px;
  }

  .services .svc-card .svc-body h3 {
    font-size: 18px;
  }

  .services .svc-card .svc-body p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .intro-row {
  margin-bottom: 70px;
}

@media (max-width: 992px) {
  .why-us .intro-row {
    margin-bottom: 50px;
  }
}

.why-us .intro-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .why-us .intro-content {
    padding-right: 0;
    text-align: center;
  }
}

.why-us .intro-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.why-us .intro-content .eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .why-us .intro-content .eyebrow::before {
    display: none;
  }
}

.why-us .intro-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

.why-us .intro-content h2 em {
  font-style: italic;
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-us .intro-content h2 {
    font-size: 2rem;
  }
}

.why-us .intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.why-us .intro-content .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.why-us .intro-content .learn-link i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.why-us .intro-content .learn-link:hover {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}

.why-us .intro-content .learn-link:hover i {
  transform: translateX(5px);
}

.why-us .visual-panel {
  position: relative;
  padding: 20px 20px 55px 0;
}

.why-us .visual-panel .corner-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  border-radius: 0 14px 0 0;
  z-index: 0;
}

.why-us .visual-panel img {
  border-radius: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 84%);
}

.why-us .visual-panel .badge-metric {
  position: absolute;
  bottom: 20px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.why-us .visual-panel .badge-metric .metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us .visual-panel .badge-metric .metric-label {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 4px;
  white-space: nowrap;
}

.why-us .visual-panel .badge-years {
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: var(--surface-color);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 4px solid var(--accent-color);
  z-index: 2;
}

.why-us .visual-panel .badge-years .years-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us .visual-panel .badge-years .years-label {
  font-size: 0.65rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
  white-space: nowrap;
  font-weight: 600;
}

.why-us .features-row {
  position: relative;
}

.why-us .features-row::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in srgb, var(--default-color), transparent 80%), transparent);
}

.why-us .feat-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 93%);
  border-bottom: 3px solid transparent;
  height: 100%;
  transition: all 0.3s ease;
}

.why-us .feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom-color: var(--accent-color);
}

.why-us .feat-card:hover .feat-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 14px;
}

.why-us .feat-card:hover .feat-num {
  opacity: 0.06;
}

.why-us .feat-card .feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.why-us .feat-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-us .feat-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  margin: 0;
}

.why-us .feat-card .feat-num {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 4.2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--heading-color);
  opacity: 0.032;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .filter-bar {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .portfolio .filter-bar {
    margin-bottom: 35px;
    padding-bottom: 20px;
  }
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters {
    gap: 8px;
  }
}

.portfolio .portfolio-filters li {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
  letter-spacing: 0.3px;
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters li {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .showcase-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio .showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.portfolio .showcase-card:hover .card-image img {
  transform: scale(1.08);
}

.portfolio .showcase-card:hover .card-image .image-actions {
  opacity: 1;
  visibility: visible;
}

.portfolio .showcase-card .card-image {
  position: relative;
  overflow: hidden;
}

.portfolio .showcase-card .card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .portfolio .showcase-card .card-image img {
    height: 200px;
  }
}

.portfolio .showcase-card .card-image .image-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.portfolio .showcase-card .card-image .image-actions .action-btn {
  width: 44px;
  height: 44px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.portfolio .showcase-card .card-image .image-actions .action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(0);
}

.portfolio .showcase-card .card-image .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 50px;
  z-index: 2;
}

.portfolio .showcase-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio .showcase-card .card-body .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.portfolio .showcase-card .card-body .card-meta .meta-client {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.portfolio .showcase-card .card-body .card-meta .meta-client i {
  font-size: 0.75rem;
}

.portfolio .showcase-card .card-body .card-meta .meta-date {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 300;
}

.portfolio .showcase-card .card-body .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.35;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .portfolio .showcase-card .card-body .card-title {
    font-size: 1.1rem;
  }
}

.portfolio .showcase-card .card-body .card-text {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio .showcase-card .card-body .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.portfolio .showcase-card .card-body .card-tags .tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

.portfolio .cta-banner {
  margin-top: 80px;
  padding: 50px 45px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .portfolio .cta-banner {
    padding: 40px 30px;
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .portfolio .cta-banner {
    padding: 30px 24px;
    margin-top: 50px;
  }
}

.portfolio .cta-banner .banner-content h4 {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .portfolio .cta-banner .banner-content h4 {
    font-size: 1.35rem;
  }
}

.portfolio .cta-banner .banner-content p {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .portfolio .cta-banner .banner-content p {
    margin-bottom: 30px;
  }
}

.portfolio .cta-banner .banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

@media (max-width: 992px) {
  .portfolio .cta-banner .banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .portfolio .cta-banner .banner-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.portfolio .cta-banner .banner-actions .btn-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.portfolio .cta-banner .banner-actions .btn-start i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.portfolio .cta-banner .banner-actions .btn-start:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.portfolio .cta-banner .banner-actions .btn-start:hover i {
  transform: translateX(3px);
}

.portfolio .cta-banner .banner-actions .btn-browse {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.portfolio .cta-banner .banner-actions .btn-browse::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.portfolio .cta-banner .banner-actions .btn-browse:hover {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

.portfolio .cta-banner .banner-actions .btn-browse:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .staff-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.team .staff-card:hover {
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.team .staff-card:hover .staff-photo .photo-overlay {
  opacity: 1;
}

.team .staff-card:hover .staff-photo img {
  transform: scale(1.08);
}

.team .staff-card:hover .staff-details .profile-link {
  color: var(--accent-color);
}

.team .staff-card:hover .staff-details .profile-link i {
  transform: translateX(4px);
}

.team .staff-card .staff-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.team .staff-card .staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .staff-card .staff-photo .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team .staff-card .staff-photo .photo-overlay .social-links {
  display: flex;
  gap: 10px;
}

.team .staff-card .staff-photo .photo-overlay .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.team .staff-card .staff-photo .photo-overlay .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(0);
}

.team .staff-card .staff-details {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.team .staff-card .staff-details .role-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.team .staff-card .staff-details h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.team .staff-card .staff-details p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 18px;
}

.team .staff-card .staff-details .profile-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.team .staff-card .staff-details .profile-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .team .staff-card .staff-photo {
    min-height: 260px;
  }

  .team .staff-card .staff-details {
    padding: 24px 20px;
  }

  .team .staff-card .staff-details h4 {
    font-size: 1.2rem;
  }

  .team .staff-card .staff-details p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .team .staff-card .staff-details {
    padding: 26px 22px;
  }

  .team .staff-card .staff-details .role-tag {
    font-size: 0.7rem;
  }

  .team .staff-card .staff-details h4 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .reviews-slider .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
}

.testimonials .reviews-slider .swiper-slide {
  height: auto;
}

.testimonials .review-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonials .review-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-radius: 72px 0 12px 0;
  pointer-events: none;
}

.testimonials .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 84%);
}

.testimonials .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonials .review-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.testimonials .review-stars i {
  color: #f0a830;
  font-size: 0.82rem;
}

.testimonials .review-quote-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  opacity: 0.18;
  line-height: 0.8;
  display: block;
  flex-shrink: 0;
}

.testimonials .review-body {
  flex: 1;
  margin: 0 0 24px;
}

.testimonials .review-body p {
  font-size: 0.97rem;
  line-height: 1.82;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  margin: 0;
}

.testimonials .review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: auto;
}

.testimonials .review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 72%);
}

.testimonials .review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 3px;
}

.testimonials .review-role {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 44%);
  display: block;
}

.testimonials .reviews-controls {
  margin-top: 36px;
  gap: 16px;
}

.testimonials .reviews-btn-prev,
.testimonials .reviews-btn-next {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  background: transparent;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonials .reviews-btn-prev:hover,
.testimonials .reviews-btn-next:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.testimonials .reviews-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonials .reviews-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 78%);
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .testimonials .review-card {
    padding: 26px 22px;
  }

  .testimonials .reviews-controls {
    margin-top: 28px;
  }
}

@media (max-width: 576px) {
  .testimonials .review-card {
    padding: 22px 18px;
  }

  .testimonials .reviews-controls {
    margin-top: 22px;
    gap: 12px;
  }

  .testimonials .reviews-btn-prev,
  .testimonials .reviews-btn-next {
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-strips-row .contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background-color: var(--surface-color);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 8px 8px 0;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact .contact-strips-row .contact-strip:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 22px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact .contact-strips-row .contact-strip .strip-icon-box {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-strips-row .contact-strip .strip-icon-box i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-strips-row .contact-strip .strip-text {
  flex: 1;
}

.contact .contact-strips-row .contact-strip .strip-text .strip-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.contact .contact-strips-row .contact-strip .strip-text .strip-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.5;
}

.contact .inquiry-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 87%);
}

.contact .inquiry-card .card-intro-panel {
  background-color: var(--accent-color);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
}

.contact .inquiry-card .card-intro-panel .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 82%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 32px;
  width: fit-content;
}

.contact .inquiry-card .card-intro-panel .intro-badge i {
  font-size: 14px;
}

.contact .inquiry-card .card-intro-panel h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact .inquiry-card .card-intro-panel p {
  font-size: 14px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
  flex: 1;
  margin: 0;
}

.contact .inquiry-card .card-intro-panel .intro-divider {
  height: 1px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 72%);
  margin: 32px 0;
}

.contact .inquiry-card .card-intro-panel .intro-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact .inquiry-card .card-intro-panel .intro-note i {
  font-size: 15px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact .inquiry-card .card-intro-panel .intro-note span {
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
}

.contact .inquiry-card .card-form-panel {
  background-color: var(--surface-color);
  padding: 52px 48px;
}

.contact .inquiry-card .card-form-panel .field-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  margin-bottom: 10px;
}

.contact .inquiry-card .card-form-panel .field-wrap input[type=text],
.contact .inquiry-card .card-form-panel .field-wrap input[type=email],
.contact .inquiry-card .card-form-panel .field-wrap textarea {
  width: 100%;
  background-color: var(--surface-color);
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  padding: 10px 0 12px;
  font-size: 15px;
  color: var(--default-color);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact .inquiry-card .card-form-panel .field-wrap input[type=text]:focus,
.contact .inquiry-card .card-form-panel .field-wrap input[type=email]:focus,
.contact .inquiry-card .card-form-panel .field-wrap textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  box-shadow: none;
}

.contact .inquiry-card .card-form-panel .field-wrap input[type=text]::placeholder,
.contact .inquiry-card .card-form-panel .field-wrap input[type=email]::placeholder,
.contact .inquiry-card .card-form-panel .field-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact .inquiry-card .card-form-panel .field-wrap textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.contact .inquiry-card .card-form-panel .form-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.contact .inquiry-card .card-form-panel .btn-dispatch {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .inquiry-card .card-form-panel .btn-dispatch i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.contact .inquiry-card .card-form-panel .btn-dispatch:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.contact .inquiry-card .card-form-panel .btn-dispatch:hover i {
  transform: translateX(3px) translateY(-3px);
}

@media (max-width: 992px) {
  .contact .inquiry-card .card-intro-panel {
    padding: 40px 32px;
  }

  .contact .inquiry-card .card-intro-panel h3 {
    font-size: 22px;
  }

  .contact .inquiry-card .card-form-panel {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .contact .contact-strips-row .contact-strip:hover {
    transform: none;
  }

  .contact .inquiry-card .card-intro-panel {
    padding: 32px 24px;
  }

  .contact .inquiry-card .card-form-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 576px) {
  .contact .inquiry-card .card-intro-panel {
    padding: 28px 20px;
  }

  .contact .inquiry-card .card-intro-panel h3 {
    font-size: 20px;
  }

  .contact .inquiry-card .card-form-panel {
    padding: 28px 20px;
  }

  .contact .inquiry-card .card-form-panel .field-wrap input[type=text],
  .contact .inquiry-card .card-form-panel .field-wrap input[type=email],
  .contact .inquiry-card .card-form-panel .field-wrap textarea {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --block-gap: 5rem;
}

.portfolio-details .case-header {
  margin-bottom: var(--block-gap);
}

.portfolio-details .case-header .header-content .meta-badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.portfolio-details .case-header .header-content .meta-badges .badge-item {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 50px;
}

.portfolio-details .case-header .header-content .case-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.portfolio-details .case-header .header-content .case-summary {
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.portfolio-details .case-header .header-image {
  border-radius: 16px;
  overflow: hidden;
}

.portfolio-details .case-header .header-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 992px) {
  .portfolio-details .case-header .header-content {
    margin-bottom: 2rem;
  }

  .portfolio-details .case-header .header-content .case-title {
    font-size: 2.5rem;
  }

  .portfolio-details .case-header .header-image img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .portfolio-details .case-header .header-content .case-title {
    font-size: 2rem;
  }
}

.portfolio-details .info-strip {
  margin-bottom: var(--block-gap);
  padding: 2rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.portfolio-details .info-strip .strip-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
}

.portfolio-details .info-strip .strip-item .strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  margin-bottom: 0.35rem;
}

.portfolio-details .info-strip .strip-item .strip-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading-color);
}

.portfolio-details .media-carousel {
  margin-bottom: var(--block-gap);
}

.portfolio-details .media-carousel .carousel-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-button-prev,
.portfolio-details .media-carousel .carousel-wrapper .swiper-button-next {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-button-prev::after,
.portfolio-details .media-carousel .carousel-wrapper .swiper-button-next::after {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 700;
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-button-prev:hover,
.portfolio-details .media-carousel .carousel-wrapper .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-button-prev:hover::after,
.portfolio-details .media-carousel .carousel-wrapper .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

.portfolio-details .media-carousel .carousel-wrapper .swiper-pagination {
  bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio-details .media-carousel .carousel-wrapper .swiper-slide img {
    height: 320px;
  }

  .portfolio-details .media-carousel .carousel-wrapper .swiper-button-prev,
  .portfolio-details .media-carousel .carousel-wrapper .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .portfolio-details .media-carousel .carousel-wrapper .swiper-button-prev::after,
  .portfolio-details .media-carousel .carousel-wrapper .swiper-button-next::after {
    font-size: 0.8rem;
  }
}

.portfolio-details .case-narrative {
  margin-bottom: var(--block-gap);
}

.portfolio-details .case-narrative .narrative-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 1rem;
}

.portfolio-details .case-narrative .narrative-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .case-narrative .narrative-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.25rem;
}

.portfolio-details .case-narrative .narrative-content p:last-child {
  margin-bottom: 0;
}

.portfolio-details .process-timeline {
  margin-bottom: var(--block-gap);
}

.portfolio-details .process-timeline .timeline-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.portfolio-details .process-timeline .timeline-heading h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details .process-timeline .timeline-heading p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 650px;
  margin: 0 auto;
}

.portfolio-details .process-timeline .timeline-track {
  position: relative;
  padding-left: 60px;
}

.portfolio-details .process-timeline .timeline-track::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.portfolio-details .process-timeline .timeline-track .timeline-node {
  position: relative;
  margin-bottom: 3rem;
}

.portfolio-details .process-timeline .timeline-track .timeline-node:last-child {
  margin-bottom: 0;
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-marker i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-body {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-body:hover {
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateX(8px);
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-body .node-step {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.portfolio-details .process-timeline .timeline-track .timeline-node .node-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .portfolio-details .process-timeline .timeline-track {
    padding-left: 50px;
  }

  .portfolio-details .process-timeline .timeline-track::before {
    left: 18px;
  }

  .portfolio-details .process-timeline .timeline-track .timeline-node .node-marker {
    left: -50px;
    width: 38px;
    height: 38px;
  }

  .portfolio-details .process-timeline .timeline-track .timeline-node .node-marker i {
    font-size: 1rem;
  }
}

.portfolio-details .visual-showcase {
  margin-bottom: var(--block-gap);
}

.portfolio-details .visual-showcase h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
}

.portfolio-details .visual-showcase .showcase-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-details .visual-showcase .showcase-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-details .visual-showcase .showcase-card .card-overlay {
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-details .visual-showcase .showcase-card .card-overlay i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.portfolio-details .visual-showcase .showcase-card:hover img {
  transform: scale(1.08);
}

.portfolio-details .visual-showcase .showcase-card:hover .card-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-details .visual-showcase .showcase-card img {
    height: 200px;
  }
}

.portfolio-details .toolkit-section {
  margin-bottom: var(--block-gap);
}

.portfolio-details .toolkit-section .toolkit-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-details .toolkit-section .toolkit-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details .toolkit-section .toolkit-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 650px;
  margin: 0 auto;
}

.portfolio-details .toolkit-section .toolkit-category {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-details .toolkit-section .toolkit-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: var(--accent-color);
}

.portfolio-details .toolkit-section .toolkit-category .category-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-details .toolkit-section .toolkit-category .category-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.portfolio-details .toolkit-section .toolkit-category h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .toolkit-section .toolkit-category .category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.portfolio-details .toolkit-section .toolkit-category .category-tags span {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: var(--default-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.portfolio-details .toolkit-section .toolkit-category .category-tags span:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-details .results-banner {
  margin-bottom: var(--block-gap);
  background-color: var(--accent-color);
  padding: 3.5rem;
  border-radius: 16px;
}

.portfolio-details .results-banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--contrast-color);
}

.portfolio-details .results-banner .result-tile {
  text-align: center;
  padding: 1.5rem;
}

.portfolio-details .results-banner .result-tile .tile-icon {
  margin-bottom: 1rem;
}

.portfolio-details .results-banner .result-tile .tile-icon i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.portfolio-details .results-banner .result-tile .tile-stat {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.portfolio-details .results-banner .result-tile .tile-desc {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-weight: 400;
}

@media (max-width: 768px) {
  .portfolio-details .results-banner {
    padding: 2.5rem 1.5rem;
  }
}

.portfolio-details .case-nav {
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .case-nav .nav-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
  color: var(--heading-color);
}

.portfolio-details .case-nav .nav-block:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

.portfolio-details .case-nav .nav-block i {
  font-size: 1.25rem;
}

.portfolio-details .case-nav .nav-block .nav-text {
  display: flex;
  flex-direction: column;
}

.portfolio-details .case-nav .nav-block .nav-text .nav-direction {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 0.2rem;
}

.portfolio-details .case-nav .nav-block .nav-text .nav-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.portfolio-details .case-nav .nav-block.center-block {
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .case-nav .nav-block.center-block i {
  font-size: 1.5rem;
}

.portfolio-details .case-nav .nav-block.center-block span {
  font-size: 0.85rem;
  font-weight: 500;
}

.portfolio-details .case-nav .nav-block.next-block {
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 768px) {
  .portfolio-details .case-nav .nav-block {
    justify-content: center !important;
    text-align: center !important;
  }

  .portfolio-details .case-nav .nav-block.center-block {
    border-left: none;
    border-right: none;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .portfolio-details .case-nav .nav-block.next-block {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .portfolio-details {
    --block-gap: 3.5rem;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
  /* Detail Hero */
  /* Capabilities Section */
  /* Workflow Section */
  /* Bottom Widgets */
}

.service-details .detail-hero {
  margin-bottom: 80px;
}

.service-details .detail-hero .hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.service-details .detail-hero .hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.service-details .detail-hero .hero-image-wrapper .image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-details .detail-hero .hero-image-wrapper .image-badge i {
  font-size: 1rem;
}

.service-details .detail-hero .hero-text .category-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service-details .detail-hero .hero-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.service-details .detail-hero .hero-text .lead {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.service-details .detail-hero .hero-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 14px;
}

.service-details .detail-hero .hero-text .meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .detail-hero .hero-text .meta-grid .meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .detail-hero .hero-text .meta-grid .meta-item>i {
  font-size: 1.2rem;
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  flex-shrink: 0;
}

.service-details .detail-hero .hero-text .meta-grid .meta-item div {
  display: flex;
  flex-direction: column;
}

.service-details .detail-hero .hero-text .meta-grid .meta-item div .meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 600;
}

.service-details .detail-hero .hero-text .meta-grid .meta-item div .meta-value {
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .capabilities-section {
  margin-bottom: 80px;
}

.service-details .capabilities-section .section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.service-details .capabilities-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.service-details .capabilities-section .capability-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .capabilities-section .capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details .capabilities-section .capability-card:hover .capability-icon {
  background-color: var(--accent-color);
}

.service-details .capabilities-section .capability-card:hover .capability-icon i {
  color: var(--contrast-color);
}

.service-details .capabilities-section .capability-card .capability-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-details .capabilities-section .capability-card .capability-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .capabilities-section .capability-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-details .capabilities-section .capability-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .workflow-section {
  margin-bottom: 80px;
}

.service-details .workflow-section .section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.service-details .workflow-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.service-details .workflow-section .workflow-card {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: 3px solid var(--accent-color);
  border-radius: 0 0 12px 12px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .workflow-section .workflow-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .workflow-section .workflow-card:hover .workflow-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .workflow-section .workflow-card .workflow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-details .workflow-section .workflow-card .workflow-connector {
  display: none;
}

.service-details .workflow-section .workflow-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-details .workflow-section .workflow-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

@media (min-width: 992px) {
  .service-details .workflow-section .workflow-card .workflow-connector {
    display: block;
    position: absolute;
    top: 48px;
    right: -30px;
    width: 56px;
    height: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
    z-index: 1;
  }

  .service-details .workflow-section .workflow-card .workflow-connector::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    transform: rotate(45deg);
  }

  .service-details .workflow-section .col-lg-3:last-child .workflow-card .workflow-connector {
    display: none;
  }
}

.service-details .bottom-widgets .widget-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}

.service-details .bottom-widgets .widget-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.service-details .bottom-widgets .explore-widget .service-links .service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.service-details .bottom-widgets .explore-widget .service-links .service-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-details .bottom-widgets .explore-widget .service-links .service-link:first-child {
  padding-top: 0;
}

.service-details .bottom-widgets .explore-widget .service-links .service-link:hover {
  color: var(--accent-color);
}

.service-details .bottom-widgets .explore-widget .service-links .service-link:hover .bi-arrow-right {
  transform: translateX(4px);
}

.service-details .bottom-widgets .explore-widget .service-links .service-link i:first-child {
  font-size: 1rem;
  color: var(--accent-color);
  width: 20px;
  flex-shrink: 0;
}

.service-details .bottom-widgets .explore-widget .service-links .service-link span {
  flex: 1;
}

.service-details .bottom-widgets .explore-widget .service-links .service-link .bi-arrow-right {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: transform 0.3s ease;
}

.service-details .bottom-widgets .cta-card {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border: none;
}

.service-details .bottom-widgets .cta-card .cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.service-details .bottom-widgets .cta-card .cta-inner .cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-details .bottom-widgets .cta-card .cta-inner .cta-icon i {
  font-size: 1.6rem;
  color: var(--contrast-color);
}

.service-details .bottom-widgets .cta-card .cta-inner h4 {
  color: var(--contrast-color);
  margin-bottom: 12px;
}

.service-details .bottom-widgets .cta-card .cta-inner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-details .bottom-widgets .cta-card .cta-inner .btn-action {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-details .bottom-widgets .cta-card .cta-inner .btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, #000, transparent 70%);
  color: var(--accent-color);
}

.service-details .bottom-widgets .reach-widget .reach-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-details .bottom-widgets .reach-widget .reach-item:last-child {
  margin-bottom: 0;
}

.service-details .bottom-widgets .reach-widget .reach-item .reach-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details .bottom-widgets .reach-widget .reach-item .reach-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.service-details .bottom-widgets .reach-widget .reach-item .reach-detail strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.service-details .bottom-widgets .reach-widget .reach-item .reach-detail span {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .service-details .detail-hero .hero-image-wrapper img {
    height: 380px;
  }

  .service-details .detail-hero .hero-text h2 {
    font-size: 2rem;
  }

  .service-details .detail-hero .hero-text .meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .service-details .detail-hero {
    margin-bottom: 60px;
  }

  .service-details .detail-hero .hero-image-wrapper img {
    height: 280px;
  }

  .service-details .detail-hero .hero-text h2 {
    font-size: 1.7rem;
  }

  .service-details .detail-hero .hero-text .meta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    margin-bottom: 60px;
  }

  .service-details .capabilities-section .section-heading,
  .service-details .workflow-section .section-heading {
    font-size: 1.5rem;
    margin-bottom: 36px;
  }

  .service-details .bottom-widgets .widget-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .revision-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 6px;
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.terms-of-service .revision-info i {
  font-size: 1rem;
}

.terms-of-service .intro-desc {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.terms-of-service .terms-sidebar {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-sidebar h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-sidebar .toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terms-of-service .terms-sidebar .toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.88rem;
  transition: all 0.3s;
}

.terms-of-service .terms-sidebar .toc-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.terms-of-service .terms-sidebar .toc-item .toc-num {
  font-weight: 700;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  min-width: 20px;
}

@media (max-width: 992px) {
  .terms-of-service .terms-sidebar {
    position: static;
    margin-bottom: 10px;
  }

  .terms-of-service .terms-sidebar .toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .terms-of-service .terms-sidebar .toc-item {
    padding: 6px 14px;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 20px;
    font-size: 0.82rem;
  }

  .terms-of-service .terms-sidebar .toc-item .toc-num {
    display: none;
  }
}

.terms-of-service .terms-body .terms-block {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}

.terms-of-service .terms-body .terms-block:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.terms-of-service .terms-body .terms-block:last-child {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .terms-of-service .terms-body .terms-block {
    padding: 20px;
  }
}

.terms-of-service .terms-body .terms-block .block-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.terms-of-service .terms-body .terms-block .block-heading .block-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.terms-of-service .terms-body .terms-block .block-heading h3 {
  font-size: 1.35rem;
  margin: 0;
}

.terms-of-service .terms-body .terms-block p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.75;
  margin-bottom: 16px;
}

.terms-of-service .terms-body .terms-block p:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-body .terms-block .callout-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 10px;
  border-top: 3px solid var(--accent-color);
}

.terms-of-service .terms-body .terms-block .callout-info .callout-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.terms-of-service .terms-body .terms-block .callout-info p {
  margin: 0;
  font-size: 0.92rem;
}

.terms-of-service .terms-body .terms-block .check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.terms-of-service .terms-body .terms-block .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
}

.terms-of-service .terms-body .terms-block .check-list li:last-child {
  border-bottom: none;
}

.terms-of-service .terms-body .terms-block .check-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.terms-of-service .terms-body .terms-block .warning-card {
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.terms-of-service .terms-body .terms-block .warning-card .warning-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.terms-of-service .terms-body .terms-block .warning-card .warning-header i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.terms-of-service .terms-body .terms-block .warning-card .warning-header h5 {
  font-size: 1rem;
  margin: 0;
}

.terms-of-service .terms-body .terms-block .warning-card p {
  margin: 0;
  font-size: 0.92rem;
}

.terms-of-service .terms-body .terms-block .restriction-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
  transition: all 0.3s;
}

.terms-of-service .terms-body .terms-block .restriction-card:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.terms-of-service .terms-body .terms-block .restriction-card i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.terms-of-service .terms-body .terms-block .restriction-card span {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .terms-body .terms-block .disclaimer-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 22px;
  border-radius: 10px;
}

.terms-of-service .terms-body .terms-block .disclaimer-card .disclaimer-lead {
  font-weight: 600;
  margin-bottom: 12px;
}

.terms-of-service .terms-body .terms-block .disclaimer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .terms-body .terms-block .disclaimer-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.93rem;
}

.terms-of-service .terms-body .terms-block .disclaimer-card ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-body .terms-block .disclaimer-card ul li::before {
  content: "–";
  position: absolute;
  left: 4px;
  color: var(--accent-color);
  font-weight: 700;
}

.terms-of-service .terms-body .terms-block .update-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.terms-of-service .terms-body .terms-block .update-notice i {
  font-size: 1.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .terms-body .terms-block .update-notice p {
  margin: 0;
  font-size: 0.92rem;
}

.terms-of-service .terms-help {
  margin-top: 60px;
}

.terms-of-service .terms-help .help-card {
  padding: 40px 30px;
  background-color: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-help .help-card .help-icon {
  width: 56px;
  height: 56px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.terms-of-service .terms-help .help-card .help-icon i {
  font-size: 1.6rem;
  color: var(--contrast-color);
}

.terms-of-service .terms-help .help-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-help .help-card p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.terms-of-service .terms-help .help-card .help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.terms-of-service .terms-help .help-card .help-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media print {

  .terms-of-service .terms-sidebar,
  .terms-of-service .terms-help {
    display: none;
  }

  .terms-of-service .terms-block {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .sidebar-nav {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .sidebar-nav .nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .sidebar-nav .nav-header i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .sidebar-nav .nav-header span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.privacy .sidebar-nav .nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.privacy .sidebar-nav .nav-links li {
  margin-bottom: 8px;
}

.privacy .sidebar-nav .nav-links li:last-child {
  margin-bottom: 0;
}

.privacy .sidebar-nav .nav-links li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.privacy .sidebar-nav .nav-links li a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateX(4px);
}

.privacy .sidebar-nav .effective-date {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent-color);
}

.privacy .sidebar-nav .effective-date i {
  font-size: 1rem;
}

.privacy .policy-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 16px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .policy-intro-card .intro-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 12px;
}

.privacy .policy-intro-card .intro-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.privacy .policy-intro-card p {
  margin: 0;
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.privacy .policy-section {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-section:last-child {
  border-bottom: none;
}

.privacy .policy-section .section-number {
  flex-shrink: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.privacy .policy-section .section-content {
  flex: 1;
}

.privacy .policy-section .section-content h2 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 600;
}

.privacy .policy-section .section-content h4 {
  font-size: 1.15rem;
  color: var(--heading-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.privacy .policy-section .section-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-section .section-content p:last-child {
  margin-bottom: 0;
}

.privacy .policy-section .section-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy .policy-section .section-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-section .section-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .policy-section .section-content ul li:last-child {
  margin-bottom: 0;
}

.privacy .info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.privacy .info-cards .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.privacy .info-cards .info-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-4px);
}

.privacy .info-cards .info-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 10px;
  margin-bottom: 16px;
}

.privacy .info-cards .info-card .card-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .info-cards .info-card h4 {
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .privacy .info-cards {
    grid-template-columns: 1fr;
  }
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy .usage-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .sharing-block {
  margin-top: 24px;
  padding: 24px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 3px solid var(--accent-color);
}

.privacy .sharing-block h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.privacy .sharing-block h4 i {
  color: var(--accent-color);
}

.privacy .sharing-block p {
  margin-bottom: 16px;
}

.privacy .sharing-block ul {
  margin-top: 16px;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.privacy .security-features .security-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.privacy .security-features .security-item:hover {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .security-features .security-item .security-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
}

.privacy .security-features .security-item .security-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.privacy .security-features .security-item .security-text h5 {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 4px;
  font-weight: 600;
}

.privacy .security-features .security-item .security-text p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.privacy .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .rights-list .right-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.privacy .rights-list .right-item div strong {
  display: block;
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.privacy .rights-list .right-item div span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 576px) {
  .privacy .rights-list {
    grid-template-columns: 1fr;
  }
}

.privacy .contact-section .contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.privacy .contact-section .contact-cards .contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.privacy .contact-section .contact-cards .contact-card:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.privacy .contact-section .contact-cards .contact-card i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.privacy .contact-section .contact-cards .contact-card span {
  font-size: 0.95rem;
  color: var(--default-color);
}

@media (max-width: 576px) {
  .privacy .contact-section .contact-cards {
    flex-direction: column;
  }

  .privacy .contact-section .contact-cards .contact-card {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .privacy .sidebar-nav {
    position: static;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .privacy .policy-intro-card {
    flex-direction: column;
    text-align: center;
  }

  .privacy .policy-intro-card .intro-icon {
    margin: 0 auto;
  }

  .privacy .policy-section {
    flex-direction: column;
    gap: 16px;
  }

  .privacy .policy-section .section-number {
    font-size: 2rem;
  }

  .privacy .policy-section .section-content h2 {
    font-size: 1.4rem;
  }
}

@media print {
  .privacy .sidebar-nav {
    display: none;
  }

  .privacy .policy-section {
    page-break-inside: avoid;
    border: none;
    padding: 20pt 0;
  }

  .privacy .info-cards,
  .privacy .usage-grid,
  .privacy .rights-list {
    display: block;
  }

  .privacy .info-card,
  .privacy .usage-item,
  .privacy .right-item {
    margin-bottom: 10pt;
    box-shadow: none;
    border: 1pt solid #ccc;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

.error-404 .error-404-content h1 {
  font-size: 10rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  margin-bottom: 1rem;
  line-height: 1;
}

.error-404 .error-404-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.error-404 .error-404-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.error-404 .error-404-content .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-404 .error-404-content .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 .error-404-content .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.error-404 .error-404-content .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.error-404 .error-404-content .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .error-404 .error-404-content h1 {
    font-size: 8rem;
  }

  .error-404 .error-404-content h2 {
    font-size: 2rem;
  }

  .error-404 .error-404-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .error-404 .error-404-content h1 {
    font-size: 6rem;
  }

  .error-404 .error-404-content h2 {
    font-size: 1.75rem;
  }

  .error-404 .error-404-content .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto !important;
  }
}

@media (max-width: 576px) {
  .error-404 .error-404-content h1 {
    font-size: 5rem;
  }

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

  .error-404 .error-404-content p {
    font-size: 1rem;
  }
}

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