/**
* Template Name: Scout
* Template URL: https://bootstrapmade.com/scout-bootstrap-multipurpose-template/
* Updated: May 05 2025 with Bootstrap v5.3.5
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@font-face {
  font-family: "Acid Grotesk";
  src: url("../fonts/AcidGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acid Grotesk";
  src: url("../fonts/AcidGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acid Grotesk";
  src: url("../fonts/AcidGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Acid Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Acid Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --nav-font: "Acid Grotesk", system-ui, -apple-system, "Segoe UI", 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: #52413a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #31221c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff4500; /* 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: #52413a;  /* The default color of the main navmenu links */
  --nav-hover-color: #f85d23; /* 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: #52413a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f85d23; /* 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: #f8f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #343333;
  --contrast-color: #ffffff;
}

/* Smooth scroll — JS handles offset and restoration; snap disabled on index */
:root {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

html:has(body.index-page) {
  scroll-snap-type: none;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
}

/*--------------------------------------------------------------
# Glassmorphic blur-in / blur-out scroll animation (AOS custom)
--------------------------------------------------------------*/
[data-aos="blur-in"] {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(14px) scale(0.984);
  transition-property: opacity, filter, transform !important;
  will-change: filter, opacity, transform;
}

[data-aos="blur-in"].aos-animate {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}

/* Reduced-motion: skip the blur, just fade */
@media (prefers-reduced-motion: reduce) {
  [data-aos="blur-in"] {
    filter: none !important;
    transform: none !important;
    transition-property: opacity !important;
  }
}

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

/* Index: one continuous hero-style canvas (warm gradient + soft brand glows), no gray/white banding */
body.index-page {
  position: relative;
  background: linear-gradient(165deg, #fdfcfa 0%, #faf6f2 42%, #f5efe8 100%);
}

body.index-page::before,
body.index-page::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body.index-page::before {
  width: min(72vw, 640px);
  height: min(72vw, 640px);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 78%) 0%, transparent 68%);
  top: -18%;
  right: -12%;
  filter: blur(2px);
}

body.index-page::after {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 82%) 0%, transparent 70%);
  bottom: 5%;
  left: -8%;
  filter: blur(2px);
}

/* Grain texture — fractalNoise SVG filter tiled across the full viewport */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

@media (prefers-reduced-motion: reduce) {
  #grain { display: none; }
}

/* Sticky nav must stay position:sticky — a plain relative override was breaking Bootstrap .sticky-top */
body.index-page #header {
  position: sticky;
  top: 0;
  z-index: 1025;
  /* Floating pill: outer shell is transparent, pill lives on the inner container */
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 10px 16px !important;
}

body.index-page #header > div {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 6px 32px rgba(0, 0, 0, 0.09),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 88%);
  padding: 5px 22px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.index-page.scrolled #header > div {
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 82%);
  border-color: rgba(255, 255, 255, 0.75);
}

body.index-page main.main,
body.index-page #footer {
  position: relative;
  z-index: 1;
}

body.index-page main.main > section.section,
body.index-page #footer.footer {
  background-color: transparent;
}

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 {
  color: var(--default-color);
  background-color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  z-index: 997;
}

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

.header .logo img {
  max-height: 30px;
  width: auto;
  margin-right: 8px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  padding: 11px 30px;
  margin: 0 0 0 30px;
  border-radius: 10px;
  line-height: 1.2;
  transition: 0.3s;
}

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

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 9px 22px;
    font-size: 14px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset, 0 8px 32px rgba(0, 0, 0, 0.07);
}

/*--------------------------------------------------------------
# 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: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 12px 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

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

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: clamp(4rem, 16vw, 6.5rem);
  width: auto;
  height: auto;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

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

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer-legal {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
}

.footer-legal a {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-legal-sep {
  margin: 0 0.45rem;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

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

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

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

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

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

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

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: 82px;
  overflow: clip;
}

section#hero {
  overflow: visible;
}

@media (max-width: 1199px) {

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

/* One viewport minimum per main section; snap for focus (proximity = still scrollable inside tall sections) */
main.main > section.section-viewport {
  min-height: 100svh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

html:has(body.index-page) main.main > section.section-viewport {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main.main > section.section-viewport:not(.section-viewport--align-start) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main.main > section.section-viewport.section-viewport--align-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  main.main > section.section-viewport {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
}

.hero .hero-content {
  margin-bottom: 2rem;
}

.hero.hero-centered {
  --hero-text: #3d2f28;
  --hero-heading: #2a1f1a;
  position: relative;
  overflow: hidden;
  /* Gradient + glows live on body.index-page so the whole page shares one surface */
  background: transparent;
  --background-color: transparent;
  /* Restore generous bottom space (was overriding .hero’s 80px with ~2–3rem) */
  padding-bottom: clamp(4.25rem, 10vw, 6.5rem);
}

/* Stat cards sit half outside the hero image; don’t clip them */
section#hero.hero.hero-centered {
  overflow: visible;
}

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

.hero.hero-centered .hero-content {
  margin-bottom: 0;
}

.hero-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-mark {
    margin-bottom: 1.5rem;
  }
}

/* img + filter: reliable vs mask-url; tint to Roots Orange (~#ff4500), then glow */
.hero-mark-logo {
  display: block;
  width: clamp(4.25rem, 10vw, 5.75rem);
  height: auto;
  flex-shrink: 0;
  filter:
    brightness(0) saturate(100%)
    invert(47%) sepia(93%) saturate(7150%) hue-rotate(1deg) brightness(102%) contrast(102%)
    drop-shadow(0 4px 18px color-mix(in srgb, var(--accent-color), transparent 50%))
    drop-shadow(0 0 32px color-mix(in srgb, var(--accent-color), transparent 72%));
}

.hero.hero-centered h1 {
  color: var(--hero-heading);
}

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

.hero.hero-centered .lead {
  color: color-mix(in srgb, var(--hero-text), transparent 12%);
  max-width: 42rem;
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero .hero-tag.hero-tag-outline {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.hero .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero-pills-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 45%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  max-width: 100%;
}

.hero-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hero-heading);
  border-radius: 6px;
}

.hero-pill-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.hero-pill-divider {
  width: 1px;
  height: 1.35rem;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .hero-pills-wrap {
    flex-direction: column;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    gap: 0.15rem;
  }

  .hero-pill-divider {
    display: none;
  }

  .hero-pill-item {
    justify-content: center;
    width: 100%;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

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

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.25rem;
  }
}

.hero .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero .hero-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.btn-hero-primary {
  border-radius: 10px;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.btn-hero-primary.btn-primary {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
}

.btn-hero-primary.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--accent-color), transparent 45%);
}

.btn-hero-secondary {
  border-radius: 10px;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  color: var(--hero-heading);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--hero-heading), transparent 88%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  background: rgba(255, 255, 255, 0.9);
}

.hero-image-row {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
  padding-top: 0;
}

/* Room for stat cards; extra bottom so BR card + section don’t feel clipped */
.hero-visual-layout {
  position: relative;
  max-width: min(1080px, 100%);
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 4rem) clamp(2.75rem, 8vw, 4.5rem) clamp(3.75rem, 10vw, 6rem);
}

.hero-image-cluster {
  position: relative;
  width: 100%;
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.hero-image-frame.about-problem-unified-style {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow: hidden;
  line-height: 0;
}

.hero-image-frame.about-problem-unified-style .hero-image {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
}

.hero-image-cluster .hero-stat-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  box-sizing: border-box;
  width: clamp(9.5rem, 28vw, 12.75rem);
  max-width: 200px;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
}

.hero-stat-card.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 32px rgba(42, 31, 26, 0.12);
}

/* Half on image, half past border: corner-centered with 50% offset */
.hero-stat-card--tl {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.hero-stat-card--br {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.hero-stat-card__value {
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--accent-color);
}

.hero-stat-card__label {
  font-size: clamp(0.7rem, 1.75vw, 0.78rem);
  font-weight: 500;
  line-height: 1.38;
  color: var(--hero-heading);
}

.hero-stat-card__icon {
  align-self: flex-end;
  margin-top: 0.1rem;
  font-size: 1.05rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color), transparent 35%);
}

@media (max-width: 991px) {
  .hero-visual-layout {
    padding: clamp(2rem, 6vw, 3.25rem) clamp(2rem, 6vw, 3.5rem) clamp(3rem, 8vw, 4.5rem);
  }

  .hero-image-cluster .hero-stat-card {
    width: clamp(9rem, 32vw, 11.5rem);
    max-width: 180px;
    padding: 0.72rem 0.85rem;
  }
}

@media (max-width: 767px) {
  .hero-visual-layout {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(0.75rem, 3vw, 1.25rem) clamp(1.25rem, 4vw, 2rem);
  }

  .hero-image-cluster {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero-stat-card--tl {
    order: -1;
  }

  .hero-image-frame.about-problem-unified-style {
    order: 0;
  }

  .hero-stat-card--br {
    order: 1;
  }

  .hero-image-cluster .hero-stat-card {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    min-width: 0;
    max-width: 26rem;
    margin-inline: auto;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

.about .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.about .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.about .feature-box:hover:before {
  height: 100%;
}

.about .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about .about-content-box {
  padding: 2rem;
}

.about .about-content-box h3 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.about .about-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .about-content-box .progress-item {
  margin-bottom: 1.2rem;
}

.about .about-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .about-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}

.about .about-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-top: 0.5rem;
  overflow: hidden;
}

.about .about-content-box .progress-item .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 4px;
}

.about .about-content-box .btn-discover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .about-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.about .about-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .about-content-box .btn-discover:hover:before {
  width: 100%;
}

.about .about-image-grid {
  position: relative;
  height: 540px;
  margin: 0 2rem;
}

.about .about-image-grid .img-grid-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about .about-image-grid .img-grid-secondary {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 50%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about .about-image-grid .img-grid-tertiary {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 40%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.about .about-image-grid .experience-badge {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.about .about-image-grid .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about .about-image-grid .experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .about .about-image-grid {
    height: 480px;
  }

  .about .about-image-grid .img-grid-main {
    height: 300px;
  }

  .about .about-image-grid .img-grid-secondary {
    height: 200px;
  }

  .about .about-image-grid .img-grid-tertiary {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .about .section-heading {
    font-size: 2.2rem;
  }

  .about .about-content-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .about .about-content-box h3 {
    font-size: 1.8rem;
  }

  .about .about-image-grid {
    height: 450px;
    margin: 0 auto;
    max-width: 500px;
  }

  .about .about-image-grid .experience-badge {
    width: 100px;
    height: 100px;
  }

  .about .about-image-grid .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about .section-heading {
    font-size: 1.8rem;
  }

  .about .feature-box {
    padding: 1.8rem 1rem;
  }

  .about .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about .about-image-grid {
    height: 400px;
    margin-bottom: 2rem;
  }

  .about .about-image-grid .img-grid-main {
    width: 75%;
    height: 250px;
  }

  .about .about-image-grid .img-grid-secondary {
    width: 55%;
    height: 180px;
  }

  .about .about-image-grid .img-grid-tertiary {
    width: 40%;
    height: 180px;
  }
}

/* About — problem block (hero-aligned layout, starter pages unchanged) */
.about-problem {}

.about-problem-unified,
.hero-image-frame.about-problem-unified-style {
  border-radius: 14px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 18%);
  background: color-mix(in srgb, var(--surface-color), transparent 8%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 64px rgba(0, 0, 0, 0.08),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 82%),
    0 0 48px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.about-problem-unified {
  padding: clamp(1.75rem, 4.5vw, 2.75rem) clamp(1.25rem, 4vw, 2.25rem);
}

.about-problem-unified-header {
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.about-problem-accent {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: var(--accent-color);
  margin: 0 auto 1.15rem;
  opacity: 0.95;
}

.about-problem-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.about-problem-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  max-width: 34rem;
  margin-bottom: 0;
}

.about-problem-pains {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  text-align: center;
}

.about-pain-segment {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.5rem 0.85rem 0.25rem;
}

.about-pain-line {
  flex: 0 0 auto;
  width: 1px;
  align-self: stretch;
  min-height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--accent-color), transparent 55%) 15%,
    color-mix(in srgb, var(--accent-color), transparent 55%) 85%,
    transparent
  );
}

.about-problem-line-full {
  height: 1px;
  width: 100%;
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(1.2rem, 2.8vw, 1.65rem);
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-color), transparent 50%),
    transparent
  );
}

.about-pain-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.3rem;
}

.about-pain-title {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 0.65rem;
}

.about-pain-text {
  font-size: 0.98rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  margin: 0;
}

.about-pain-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.about-pain-text a:hover {
  color: var(--accent-color);
}

.about-problem-unified-footer {
  padding-top: clamp(0.35rem, 1.5vw, 0.85rem);
  padding-bottom: clamp(0.15rem, 0.8vw, 0.35rem);
}

.about-solution-text {
  font-size: clamp(1.2rem, 2.5vw, 1.48rem);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.015em;
  color: var(--default-color);
  max-width: 44rem;
  margin: 0 auto;
}

.btn-hero-secondary.btn-hero-secondary-light {
  color: var(--heading-color);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 82%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn-hero-secondary.btn-hero-secondary-light:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 42%);
  background: #ffffff;
}

@media (max-width: 767px) {
  .about-problem-title {
    font-size: 1.7rem;
  }

  .about-problem-pains {
    flex-direction: column;
    align-items: stretch;
  }

  .about-pain-line {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 0.35rem 0;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--accent-color), transparent 50%),
      transparent
    );
  }

  .about-pain-segment {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Let's talk — split-panel layout */
.cta-lets-talk {}

.cta-split-panel {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: clamp(0.5rem, 1.5vw, 0.85rem);
  padding-bottom: clamp(0.5rem, 1.5vw, 0.85rem);
}

.cta-split-copy {
  flex: 1 1 0;
  min-width: 0;
  padding-right: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.cta-split-headline {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--heading-color);
}

.cta-split-headline em {
  font-style: normal;
  color: var(--accent-color);
}

.cta-split-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cta-split-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 500;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
}

.cta-split-checklist li i {
  flex-shrink: 0;
  margin-top: 0.18em;
  font-size: 1rem;
  color: var(--accent-color);
}

.cta-split-divider {
  flex-shrink: 0;
  width: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 72%);
  margin: 0 clamp(1.5rem, 4vw, 2.5rem);
  align-self: stretch;
}

.cta-split-actions {
  flex: 0 0 clamp(14rem, 32%, 18rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.cta-split-note {
  margin: 0 0 clamp(0.5rem, 1.5vw, 1rem);
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  font-weight: 500;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.cta-split-btn-primary,
.cta-split-btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .cta-split-panel {
    flex-direction: column;
  }

  .cta-split-copy {
    padding-right: 0;
    padding-bottom: clamp(1.5rem, 4vw, 2rem);
  }

  .cta-split-divider {
    width: auto;
    height: 1px;
    margin: 0 0 clamp(1.5rem, 4vw, 2rem);
  }

  .cta-split-actions {
    flex: unset;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Philosophy (index — open header + pillar cards)
--------------------------------------------------------------*/
/* Shared section vertical rhythm — every content section uses this scale */
.about-us.section,
.philosophy.section,
#services.services.section,
.call-to-action.section,
.contact.section {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

/* Philosophy block inside the merged About Us section */
.about-us-philosophy-block {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.philosophy-section-head,
.services-section-head {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 5.5vw, 3.25rem);
}

.philosophy-section-head__title,
.services-section-head__title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.philosophy-section-head__lead,
.services-section-head__lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  margin-bottom: 1.35rem;
}

.philosophy-section-head__kicker,
.services-section-head__kicker {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.45;
}

.philosophy-pillars,
.services-pillars {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}

/* Services cards include a CTA link — a touch more vertical room */
.services-pillars .philosophy-card {
  min-height: clamp(18.5rem, 31vh, 23rem);
}

.philosophy-card {
  position: relative;
  height: 100%;
  min-height: clamp(17rem, 28vh, 21rem);
  padding: clamp(1.5rem, 3.4vw, 2.1rem) clamp(1.35rem, 3vw, 1.85rem) clamp(1.4rem, 3vw, 1.75rem);
  padding-top: clamp(1.85rem, 4vw, 2.35rem);
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--surface-color), var(--background-color) 12%) 100%
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 40px rgba(42, 31, 26, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 55%)
  );
  opacity: 0.92;
  border-radius: 14px 14px 0 0;
}

.philosophy-card__index {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.1rem);
  right: clamp(0.85rem, 2vw, 1.1rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  line-height: 1;
}

.philosophy-card--tilt-left {
  transform: rotate(-0.4deg);
}

.philosophy-card--tilt-right {
  transform: rotate(0.4deg);
}

.philosophy-card:hover {
  transform: translateY(-6px) rotate(0deg);
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 22px 48px rgba(42, 31, 26, 0.09),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.philosophy-card--tilt-left:hover,
.philosophy-card--tilt-right:hover {
  transform: translateY(-6px) rotate(0deg);
}

.philosophy-pillars .col:nth-child(odd) .philosophy-card,
.services-pillars .col:nth-child(odd) .philosophy-card {
  border-left: 3px solid color-mix(in srgb, var(--accent-color), transparent 35%);
}

.philosophy-pillars .col:nth-child(even) .philosophy-card,
.services-pillars .col:nth-child(even) .philosophy-card {
  border-right: 3px solid color-mix(in srgb, var(--accent-color), transparent 35%);
}

.philosophy-card__icon {
  width: clamp(3.75rem, 8vw, 4.5rem);
  height: clamp(3.75rem, 8vw, 4.5rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: clamp(1.5rem, 3.2vw, 1.85rem);
  margin-bottom: 1.15rem;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 75%) inset,
    0 6px 20px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.philosophy-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--heading-color);
  margin-bottom: 0.65rem;
  line-height: 1.2;
  padding-right: 2.25rem;
}

.philosophy-card__text {
  font-size: clamp(0.96rem, 1.6vw, 1.06rem);
  line-height: 1.58;
  color: color-mix(in srgb, var(--default-color), transparent 6%);
  margin: 0;
  flex-grow: 1;
}

.philosophy-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.philosophy-card__cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 14%);
}

.philosophy-card__cta i {
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.philosophy-card__cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .philosophy-card {
    min-height: 0;
    transform: none !important;
  }

  .services-pillars .philosophy-card {
    min-height: 0;
  }

  .philosophy-card:hover {
    transform: translateY(-4px) !important;
  }

  .philosophy-pillars .col:nth-child(odd) .philosophy-card,
  .philosophy-pillars .col:nth-child(even) .philosophy-card,
  .services-pillars .col:nth-child(odd) .philosophy-card,
  .services-pillars .col:nth-child(even) .philosophy-card {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-card,
  .philosophy-card--tilt-left,
  .philosophy-card--tilt-right {
    transform: none;
  }

  .philosophy-card:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-overview {
  height: 100%;
  padding: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.stats .stats-card .stats-content .stats-number > span {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 30px;
}

.services .services-row {
  position: relative;
}

.services .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }

  .services .services-image-container .services-image {
    height: 350px;
  }

  .services .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

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

.clients .clients-slide:hover::before {
  left: 100%;
}

.clients .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.how-we-work .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.how-we-work .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.how-we-work .step-item:last-child {
  margin-bottom: 0;
}

.how-we-work .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.how-we-work .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.how-we-work .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info:hover {
  transform: translateY(-5px);
}

.how-we-work .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.how-we-work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .steps-wrapper::before {
    left: 25px;
  }

  .how-we-work .step-item .step-content {
    flex-direction: row !important;
  }

  .how-we-work .step-icon {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-icon i {
    font-size: 24px;
  }

  .how-we-work .step-info {
    padding: 20px;
  }

  .how-we-work h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-content {
    gap: 20px;
  }

  .how-we-work .step-icon {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-icon i {
    font-size: 20px;
  }

  .how-we-work .step-info {
    padding: 15px;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }

  .how-we-work p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section (index: .cta-lets-talk + .about-problem-unified)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 40px;
  }
}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {}

/* 2×2 contact info grid */
/* links inside pain-text segments (contact section reuse) */


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

.service-details .service-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

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