/**
* Template Name: Logis - v1.0.1
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-primary: Inter, sans-serif;
  --font-secondary: Poppins, sans-serif;
}

/* Colors */
:root {
  --color-default: #1a2e38;
  --color-primary: #054f74;
  --color-secondary: #3d6678;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background: color-mix(in srgb, var(--kc-page-bg, #f5f4f1) 88%, var(--kc-brand, #054f74));
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: var(--kc-primary, #054f74);
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: var(--kc-text-muted, #4a6270);
}

.breadcrumbs nav {
  background-color: var(--kc-page-bg);
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

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

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.sticked {
  background: rgba(14, 29, 52, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a.language-toggle-link .language-toggle-icon {
    margin-left: 0;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: var(--kc-brand-hover, var(--color-primary));
  }

  .navbar .get-a-quote.wms-link,
  .navbar .get-a-quote.wms-link:focus {
    font-size: 12px;
    padding: 6px 14px;
    margin-left: 12px;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

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

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

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

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

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

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a.language-toggle-link .language-toggle-icon {
    margin-left: 0;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .get-a-quote.wms-link,
  .navbar .get-a-quote.wms-link:focus {
    font-size: 14px;
    padding: 6px 14px;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #001f8d;
  font-size: 48px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon {
  background: transparent;
}

.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-secondary);
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #132848;
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #001f8d;
}

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

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.about .content ul p {
  font-size: 15px;
}

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

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #001973;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 80px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
}

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

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

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 80px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 10px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 30px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
}

.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}

.horizontal-pricing h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.horizontal-pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

.horizontal-pricing h4 sup {
  font-size: 28px;
}

.horizontal-pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.horizontal-pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.horizontal-pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.horizontal-pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na span {
  text-decoration: line-through;
}

.horizontal-pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.horizontal-pricing .buy-btn:hover {
  background: #406aff;
  border-color: #406aff;
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

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

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

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

.get-a-quote .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
  padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
  padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

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

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-secondary);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: visible;
  padding: 120px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
  white-space: nowrap;
  min-width: 110px;
  line-height: 1.2;
}

.hero form .btn-primary:hover {
  background-color: var(--kc-brand-hover, var(--color-primary));
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

/* Keep original keyframes; fit final frame into column via stage compensation
   (no overflow clipping of the artwork). */
.hero .hero-img {
  overflow: visible;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero .hero-img-stage {
  --hero-end-x: 245px;
  --hero-end-y: 87px;
  --hero-end-scale: 2.85;
  --hero-size-boost: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Offset opposite to animation end translate so final pose sits in-column */
  transform: translate(calc(-1 * var(--hero-end-x)), calc(-1 * var(--hero-end-y)));
  transform-origin: 70% 50%;
}

.hero .hero-img-stage img {
  /* Base size × boost; end scale(2.85) gives final visual size in column */
  width: calc(100% / var(--hero-end-scale) * var(--hero-size-boost, 1));
  max-width: none;
  height: auto;
  display: block;
  transform-origin: 70% 50%;
  animation: heroPlane3D 3.6s linear 1 forwards;
  will-change: transform, opacity;
}

@media (max-width: 768px) {
  .hero .hero-img {
    min-height: 260px;
  }

  .hero .hero-img-stage {
    --hero-end-x: 78px;
    --hero-end-y: 73px;
    --hero-end-scale: 1.65;
  }
}

@keyframes heroPlane3D {
  0% {
    transform: translate3d(-280px, 180px, 0) scale(0.32) rotate(-2deg);
    opacity: 0.2;
  }

  25% {
    transform: translate3d(-150px, 150px, 0) scale(0.95) rotate(-1.5deg);
    opacity: 0.8;
  }

  50% {
    transform: translate3d(-20px, 125px, 0) scale(1.58) rotate(-1deg);
    opacity: 0.95;
  }

  75% {
    transform: translate3d(115px, 102px, 0) scale(2.22) rotate(-0.5deg);
    opacity: 1;
  }

  100% {
    transform: translate3d(245px, 87px, 0) scale(2.85) rotate(0deg);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero .hero-img-stage img {
    animation-name: heroPlane3DMobile;
    animation-duration: 3.2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
}

@keyframes heroPlane3DMobile {
  0% {
    transform: translate3d(-120px, 110px, 0) scale(0.35) rotate(-2deg);
    opacity: 0.25;
  }

  25% {
    transform: translate3d(-70px, 96px, 0) scale(0.68) rotate(-1.5deg);
    opacity: 0.8;
  }

  50% {
    transform: translate3d(-20px, 86px, 0) scale(1.08) rotate(-1deg);
    opacity: 0.95;
  }

  75% {
    transform: translate3d(32px, 78px, 0) scale(1.38) rotate(-0.5deg);
    opacity: 1;
  }

  100% {
    transform: translate3d(78px, 73px, 0) scale(1.65) rotate(0deg);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.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;
  color: rgba(13, 66, 255, 0.8);
  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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

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

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/*--------------------------------------------------------------
# Kids Crayon Theme Override
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&display=swap');

:root {
  /* IDE 品牌色 + 凝脂背景 — 与 OMS 主题 / 首页 command-home 一致 */
  --kc-brand: #054f74;
  --kc-brand-hover: #054b6e;
  --kc-brand-rgb: 5, 79, 116;
  --kc-brand-soft: #e0edf2;
  --kc-primary: #054f74;
  --kc-primary-rgb: 5, 79, 116;
  --kc-secondary: #3d6678;
  --kc-tertiary: #054f74;
  --kc-tertiary-rgb: 5, 79, 116;
  --kc-page-bg: #f5f4f1;
  --kc-neutral: #faf8f6;
  --kc-surface: #ffffff;
  --kc-border: #e0d9cc;
  --kc-border-soft: #ebe4d8;
  --kc-text: #1a2e38;
  --kc-text-muted: #4a6270;
  --kc-on-primary: #ffffff;
  --kc-radius-sm: 10px;
  --kc-radius-md: 20px;
  --kc-radius-lg: 32px;
  --kc-space-sm: 8px;
  --kc-space-md: 16px;
  --kc-space-lg: 32px;
}

:root {
  --font-default: "Fredoka", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-primary: "Fredoka", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-secondary: "Fredoka", system-ui, -apple-system, "Segoe UI", sans-serif;
  --color-default: var(--kc-primary);
  --color-primary: var(--kc-primary);
  --color-accent: var(--kc-tertiary);
  --color-secondary: var(--kc-secondary);
}

body {
  background: var(--kc-page-bg);
  color: var(--kc-text);
  font-size: 1.05rem;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-header h2,
.header .logo h1 {
  color: var(--kc-primary);
  font-weight: 700;
}

h1,
.header .logo h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2,
.section-header h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header,
.header.sticked {
  background: color-mix(in srgb, var(--kc-page-bg) 94%, var(--kc-surface));
  border-bottom: 1px solid color-mix(in srgb, var(--kc-border) 28%, transparent);
  box-shadow: none;
}

.header .logo h1 {
  color: var(--kc-primary);
  font-size: 2.55rem;
}

@media (min-width: 1280px) {
  .navbar a,
  .navbar a:focus {
    color: var(--kc-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    padding-left: 22px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--kc-primary);
  }
}

@media (max-width: 1279px) {
  .navbar ul {
    background: var(--kc-primary);
    border-top-left-radius: var(--kc-radius-lg);
    border-bottom-left-radius: var(--kc-radius-lg);
  }
}

.navbar .get-a-quote,
.navbar .get-a-quote:focus,
.btn-primary,
.call-to-action .cta-btn,
.pricing .buy-btn,
.horizontal-pricing .buy-btn,
.contact .php-email-form button[type=submit],
.get-a-quote .php-email-form button[type=submit] {
  background: var(--kc-tertiary);
  color: var(--kc-on-primary);
  border: 2px solid var(--kc-tertiary);
  border-radius: var(--kc-radius-md);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar .get-a-quote:hover,
.btn-primary:hover,
.call-to-action .cta-btn:hover,
.pricing .buy-btn:hover,
.horizontal-pricing .buy-btn:hover,
.contact .php-email-form button[type=submit]:hover,
.get-a-quote .php-email-form button[type=submit]:hover {
  background: var(--kc-brand-hover);
  border-color: var(--kc-brand-hover);
  color: var(--kc-on-primary);
  transform: translateY(-1px);
  box-shadow: none;
}

.language-toggle-link,
.language-toggle-link:focus {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: auto;
  height: 36px;
  margin-top: 0;
  margin-left: 14px;
  padding: 0 4px 0 0;
  color: var(--kc-text-muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar a.language-toggle-link,
.navbar a.language-toggle-link:focus {
  justify-content: flex-start;
  padding: 10px 0 10px 14px;
  width: auto;
}

.navbar a.language-toggle-link .language-toggle-icon {
  margin-left: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.language-toggle-link .language-toggle-icon {
  line-height: 1;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.language-toggle__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.language-toggle__opt {
  min-width: 0;
  padding: 0;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--kc-text-muted);
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.2s ease, padding 0.2s ease, opacity 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-toggle__opt.is-active {
  min-width: 26px;
  max-width: 40px;
  padding: 3px 6px;
  opacity: 1;
  color: var(--kc-on-primary);
  background: var(--kc-brand);
  box-shadow: none;
}

.language-toggle-link:hover {
  color: var(--kc-primary);
  background: color-mix(in srgb, var(--kc-brand) 8%, var(--kc-surface));
}

.language-toggle-link:hover .language-toggle-icon {
  color: var(--kc-tertiary);
}

.hero {
  background-color: var(--kc-page-bg);
  background-image: none;
  color: var(--kc-text);
  min-height: 60vh;
}

.hero h2 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--kc-primary);
  line-height: 1.08;
}

.hero-main-title {
  margin: 0 0 18px;
  max-width: 100%;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--kc-primary);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.9rem;
  }

  .hero-main-title {
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
}

.pricing .pricing-item,
.horizontal-pricing .pricing-item,
.team .member,
.get-a-quote .php-email-form,
.footer,
.breadcrumbs nav {
  background: var(--kc-surface);
  border-radius: 12px;
  border: 1px solid var(--kc-border);
  box-shadow: none;
}

.services .service-card.stat-card:hover {
  transform: translateY(-2px);
}

.pricing .pricing-item,
.horizontal-pricing .pricing-item,
.team .member {
  padding: 24px;
}

.services .service-card.stat-card h3,
.featured-services .service-item .title,
.pricing h3,
.horizontal-pricing h3,
.service-details h3,
.service-details h4,
.faq .accordion-button {
  color: var(--kc-primary);
}

/* Keep featured horizontal pricing card readable under theme overrides */
.horizontal-pricing .pricing-item.featured {
  background: var(--kc-primary);
  border-color: var(--kc-primary);
}

.horizontal-pricing .pricing-item.featured h3,
.horizontal-pricing .pricing-item.featured h4,
.horizontal-pricing .pricing-item.featured h4 span,
.horizontal-pricing .pricing-item.featured ul,
.horizontal-pricing .pricing-item.featured ul li,
.horizontal-pricing .pricing-item.featured ul i {
  color: #fff;
}

.horizontal-pricing .pricing-item.featured .buy-btn {
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .pricing-item.featured .buy-btn:hover {
  background: #fff;
  color: var(--kc-primary);
}

.section-header h2 {
  font-size: 2.4rem;
  text-transform: none;
}

.section-header span {
  color: color-mix(in srgb, var(--kc-primary) 10%, transparent);
}

.featured-services .service-item .icon i,
.about .content ul i,
.features .features-item ul i,
.service-details ul i,
.contact .info-item i {
  color: var(--kc-primary);
}

.featured-services .service-item .icon i {
  font-size: 54px;
}

.about .content ul i {
  font-size: 54px;
}

.features .features-item ul i,
.service-details ul i {
  font-size: 22px;
}

.contact .info-item i {
  background: rgba(var(--kc-brand-rgb), 0.08);
  color: var(--kc-primary);
  border-radius: var(--kc-radius-md);
  width: 50px;
  height: 50px;
  font-size: 23px;
}

.call-to-action {
  background: transparent;
  border-radius: 0;
  margin: 0;
}

.about .play-btn,
.about .play-btn:before {
  background: var(--kc-tertiary);
  border: none;
}

.about .play-btn:hover:after {
  border-left-color: var(--kc-tertiary);
}

.footer {
  background: var(--kc-page-bg);
  color: var(--kc-primary);
}

.footer .footer-info .logo span,
.footer h4,
.footer .copyright {
  color: var(--kc-primary);
}

.footer .footer-links ul a,
.footer .social-links a {
  color: var(--kc-secondary);
}

.footer .social-links a {
  border-color: rgba(var(--kc-brand-rgb), 0.35);
  border-radius: var(--kc-radius-md);
  width: 46px;
  height: 46px;
  font-size: 18px;
}

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

/* Footer text hover effect */
.footer .footer-links ul a,
.footer .copyright a,
.footer .credits a {
  transition: color 0.25s ease;
}

.footer .footer-links ul a:hover,
.footer .copyright a:hover,
.footer .credits a:hover {
  color: var(--kc-primary);
}

/* Brand lockup: IDE primary + full name as small caption */
.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  justify-content: center;
}

.brand-lockup .brand-name,
.brand-lockup h1 {
  margin: 0;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--kc-primary);
  font-family: var(--font-primary);
}

.brand-lockup .brand-fullname {
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--kc-secondary);
  opacity: 0.85;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .brand-lockup .brand-fullname {
    display: none;
  }
}


/*--------------------------------------------------------------
# Hero stats strip (IDE homepage)
--------------------------------------------------------------*/
.hero-stats {
  padding: 28px 0;
  background: var(--kc-surface, #fff);
  border-bottom: 1px solid rgba(var(--kc-brand-rgb), 0.08);
}

.hero-stats .stats-item span {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kc-primary, var(--color-primary));
  display: block;
  line-height: 1.2;
}

.hero-stats .stats-item p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--kc-secondary, var(--kc-text-muted));
}

.pricing-more-link {
  display: inline-block;
  font-weight: 600;
  color: var(--kc-primary, var(--color-primary));
  text-decoration: none;
}

.pricing-more-link:hover {
  text-decoration: underline;
}

/* ===== IDE Homepage P0 ===== */
.hero {
  position: relative;
  overflow: visible;
}

.hero-route-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(var(--kc-brand-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--kc-brand-rgb), 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 85%);
}

.hero .hero-main-title,
.hero h2 {
  color: var(--kc-primary);
}

.hero-desc {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--kc-text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-hero-primary {
  background: var(--kc-brand);
  color: var(--kc-on-primary);
  box-shadow: none;
}

.btn-hero-primary:hover {
  background: var(--kc-brand-hover);
  color: var(--kc-on-primary);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--kc-brand);
  border: 1px solid color-mix(in srgb, var(--kc-brand) 35%, var(--kc-border));
}

.btn-hero-secondary:hover {
  border-color: var(--kc-brand);
  color: var(--kc-brand-hover);
  background: color-mix(in srgb, var(--kc-brand) 6%, var(--kc-surface));
}

.hero-track-form {
  max-width: 480px;
  margin-bottom: 0;
}

/* Hero track + stats band (reference layout) */
.hero-track-stats {
  margin-top: 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-track-stats .hero-track-form {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  padding: 6px 6px 6px 28px;
  border-radius: 999px;
  border: none !important;
  box-shadow: 0 8px 24px rgba(var(--kc-brand-rgb), 0.08);
  background: #fff;
}

.hero-track-stats .hero-track-form .form-control {
  flex: 1 1 auto;
  min-width: 0;
  padding: 18px 16px 18px 0;
  font-size: 1rem;
  color: var(--kc-primary);
}

.hero-track-stats .hero-track-form .form-control::placeholder {
  color: rgba(var(--kc-brand-rgb), 0.75);
}

.hero-track-stats .hero-track-form .btn-primary {
  flex: 0 0 auto;
  background: var(--kc-tertiary);
  color: var(--kc-primary);
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  min-width: 148px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: none;
}

.hero-track-stats .hero-track-form .btn-primary:hover,
.hero-track-stats .hero-track-form .btn-primary:focus {
  background: var(--kc-tertiary);
  color: var(--kc-primary);
  filter: brightness(1.05);
}

/* OMS-style glass stat cards */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.hero-stats-grid .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat__value {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stat-card {
  --liquid-a: rgba(var(--kc-brand-rgb), 0.1);
  --liquid-b: rgba(var(--kc-brand-rgb), 0.08);
  --liquid-edge: rgba(255, 255, 255, 0.78);
  --liquid-glow: rgba(var(--kc-brand-rgb), 0.05);

  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  min-height: 88px;
  padding: 14px 16px;
  border: 1px solid var(--liquid-edge);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 6px 18px var(--liquid-glow),
    0 1px 2px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card__blob,
.stat-card__shine,
.stat-card__main {
  position: relative;
  z-index: 1;
}

.stat-card__blob {
  position: absolute;
  z-index: 0;
  inset: -40% -20% auto auto;
  width: 78%;
  height: 120%;
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 70% 65%, var(--liquid-a) 0%, transparent 58%),
    radial-gradient(circle at 20% 80%, var(--liquid-b) 0%, transparent 55%);
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
  transform-origin: 60% 40%;
  animation: stat-liquid-drift 9s ease-in-out infinite;
}

.stat-card__shine {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.05) 42%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.05) 58%,
    transparent 72%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  opacity: 0.35;
  pointer-events: none;
}

.stat-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card__value {
  color: var(--kc-primary);
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card__label {
  color: var(--kc-secondary);
  font-size: 0.8rem;
  font-weight: 600;
}

.stat-card--primary {
  --liquid-a: rgba(var(--kc-brand-rgb), 0.12);
  --liquid-b: rgba(var(--kc-brand-rgb), 0.08);
  --liquid-glow: rgba(var(--kc-brand-rgb), 0.06);
}

.stat-card--accent {
  --liquid-a: rgba(var(--kc-brand-rgb), 0.12);
  --liquid-b: rgba(var(--kc-brand-rgb), 0.08);
  --liquid-glow: rgba(var(--kc-brand-rgb), 0.06);
}

.stat-card--success {
  --liquid-a: rgba(0, 180, 42, 0.1);
  --liquid-b: rgba(76, 210, 99, 0.08);
  --liquid-glow: rgba(0, 180, 42, 0.05);
}

.stat-card--neutral {
  --liquid-a: rgba(var(--kc-brand-rgb), 0.12);
  --liquid-b: rgba(180, 190, 230, 0.08);
  --liquid-glow: rgba(var(--kc-brand-rgb), 0.05);
}

.how-step.stat-card:hover,
.why-ide-card.stat-card:hover,
.services .service-card.stat-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 28px var(--liquid-glow),
    0 2px 6px rgba(15, 23, 42, 0.04);
}

@keyframes stat-liquid-drift {
  0%, 100% {
    border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    border-radius: 58% 42% 55% 45% / 42% 58% 42% 58%;
    transform: translate(-8%, 6%) rotate(8deg) scale(1.06);
  }
  66% {
    border-radius: 48% 52% 40% 60% / 55% 45% 55% 45%;
    transform: translate(6%, -4%) rotate(-6deg) scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card__blob {
    animation: none;
  }
}

/* Polygon highlight chips — scannable card key points */
.card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.poly-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--kc-primary);
  background: color-mix(in srgb, var(--kc-brand) 10%, var(--kc-surface));
  border: 1px solid color-mix(in srgb, var(--kc-brand) 18%, var(--kc-border));
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  -webkit-clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.poly-highlight--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--kc-primary) 0%, color-mix(in srgb, var(--kc-brand) 75%, #1a3d52) 100%);
  border-color: rgba(var(--kc-brand-rgb), 0.2);
}

.poly-highlight--soft {
  color: var(--kc-secondary);
  background: rgba(var(--kc-brand-rgb), 0.06);
  border-color: rgba(var(--kc-brand-rgb), 0.1);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.poly-highlight--lg {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.card-kicker {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--kc-secondary);
  line-height: 1.4;
}

.stat-card__poly-deco {
  position: absolute;
  z-index: 0;
  right: -8px;
  bottom: -12px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
  pointer-events: none;
  background: var(--kc-tertiary);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.cta-highlights {
  justify-content: center;
  margin: 16px 0 20px;
}

.faq-answer-highlights {
  margin-bottom: 0;
}

.faq .accordion-body {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--kc-secondary);
}

/* How it works */
.how-it-works {
  padding: 64px 0;
  background: var(--kc-page-bg);
}

.how-step.stat-card {
  height: 100%;
  min-height: 0;
  padding: 24px;
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 0;
  background: var(--kc-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.how-step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--kc-primary);
}

.how-step p {
  display: none;
}

.how-step-link {
  font-weight: 600;
  color: var(--kc-primary);
  text-decoration: none;
}

.how-step-link:hover {
  color: var(--kc-secondary);
}

.services-cta-divider {
  margin: 0 12px;
  color: var(--kc-secondary);
}

.cta-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
}

.cta-btn-outline:hover {
  border-color: var(--kc-tertiary) !important;
  color: var(--kc-tertiary) !important;
}

.why-ide {
  padding: 64px 0;
  background: #fff;
}

.why-ide-card.stat-card {
  height: 100%;
  min-height: 0;
  padding: 24px;
}

.why-ide-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 0;
  background: rgba(var(--kc-brand-rgb), 0.08);
  color: var(--kc-primary);
  font-size: 1.5rem;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  -webkit-clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.why-ide-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--kc-primary);
}

.why-ide-lead,
.why-ide-proof {
  display: none;
}

.service-details h4,
.faq .accordion-button {
  color: var(--kc-primary);
}

/* Homepage services — glass cards */
.services {
  padding: 64px 0;
  background: #fff;
}

.services .service-card.stat-card {
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--liquid-edge);
}

.services .service-card .stat-card__main {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 16px 20px;
}

.services .service-card .card-img {
  overflow: hidden;
  margin: 0 0 14px;
  border-radius: 12px;
}

.services .service-card .card-img img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.services .service-card:hover .card-img img {
  transform: scale(1.04);
}

.services .service-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 8px;
  padding: 0;
  text-transform: none;
}

.services .service-card h3 a {
  color: var(--kc-primary);
}

.services .service-card h3 a:hover {
  color: var(--kc-secondary);
}

.services .service-card p {
  display: none;
}

.services .service-card .card-highlights {
  margin-bottom: 0;
}

.pricing .pricing-item .card-highlights,
.horizontal-pricing .pricing-item .card-highlights {
  justify-content: center;
  margin-bottom: 20px;
}

.horizontal-pricing .pricing-item.featured .poly-highlight--soft {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing .pricing-item.featured .poly-highlight--soft {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.featured-services .service-item .description {
  display: none;
}

.featured-services .service-item .card-highlights {
  margin-bottom: 12px;
}

.services .card:not(.service-card) p {
  display: none;
}

.services .card:not(.service-card) .card-highlights {
  padding: 0 16px 16px;
  margin-bottom: 0;
}

/* FAQ — unified accordion with auto numbering */
.faq {
  padding: 64px 0;
  background: var(--kc-page-bg);
}

.faq-panel.stat-card {
  min-height: 0;
  padding: 8px 8px 4px;
}

.faq-panel .stat-card__main {
  padding: 8px 12px 4px;
}

.faq-accordion {
  counter-reset: faq;
}

.faq .faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(var(--kc-brand-rgb), 0.08);
}

.faq .faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.faq .faq-accordion .accordion-button {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 18px 44px 18px 4px;
  font-weight: 600;
  color: var(--kc-primary);
  position: relative;
}

.faq .faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--kc-primary);
  box-shadow: none;
}

.faq .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq .faq-accordion .accordion-button::after {
  position: absolute;
  right: 4px;
  top: 22px;
  margin: 0;
  transform: none;
  width: 14px;
  height: 14px;
  background-size: 14px;
  opacity: 0.45;
}

.faq .faq-accordion .accordion-button:not(.collapsed)::after {
  opacity: 0.7;
}

.faq-num {
  flex: 0 0 28px;
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--kc-secondary);
  line-height: 1.5;
  padding-top: 1px;
}

.faq-accordion .accordion-item {
  counter-increment: faq;
}

.faq-num::before {
  content: counter(faq, decimal-leading-zero);
}

.faq .faq-accordion .accordion-button:not(.collapsed) .faq-num {
  color: var(--kc-primary);
}

.faq-question {
  flex: 1;
  text-align: left;
  line-height: 1.45;
}

.faq .faq-accordion .accordion-body {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 12px 20px 48px;
  color: var(--kc-secondary);
  line-height: 1.65;
  font-size: 0.98rem;
}

.faq .question-icon {
  display: none;
}

.section-header span {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
}

/* CTA glass panel */
.call-to-action {
  padding: 48px 0;
  background: var(--kc-page-bg);
}

.call-to-action .cta-panel.stat-card {
  min-height: 0;
  padding: 32px 28px;
  text-align: center;
}

.call-to-action .cta-panel h3,
.call-to-action .cta-panel p {
  color: var(--kc-primary);
}

.call-to-action .cta-panel p {
  color: var(--kc-secondary);
  margin-bottom: 20px;
}

.call-to-action .cta-btn {
  background: var(--kc-tertiary) !important;
  color: var(--kc-primary) !important;
  border: none !important;
  border-radius: 999px !important;
}

.call-to-action .cta-btn-outline {
  border-color: rgba(var(--kc-brand-rgb), 0.25) !important;
  color: var(--kc-primary) !important;
}

.call-to-action .cta-btn-outline:hover {
  border-color: var(--kc-tertiary) !important;
  color: var(--kc-primary) !important;
}

/* Footer glass panel */
.footer {
  background: var(--kc-page-bg);
  padding-top: 48px;
}

.footer .container > .row {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 18px rgba(var(--kc-brand-rgb), 0.05),
    0 1px 2px rgba(15, 23, 42, 0.03);
}

.footer .container.mt-4 {
  margin-top: 16px !important;
}

.footer .container.mt-4 .copyright {
  padding: 12px 0 24px;
  text-align: center;
  color: var(--kc-secondary);
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--kc-secondary);
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stat__value {
    font-size: 1.25rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

  .hero-track-stats {
    margin-top: 24px;
  }

  .hero-track-stats .hero-track-form {
    width: 100%;
    max-width: none;
    flex-direction: column;
    padding: 8px;
    border-radius: 20px;
    gap: 8px;
  }

  .hero-track-stats .hero-track-form .form-control {
    width: 100%;
    padding: 14px 16px;
    text-align: center;
  }

  .hero-track-stats .hero-track-form .btn-primary {
    width: 100%;
    border-radius: 14px;
  }

  .hero-track-stats .stats-item span {
    font-size: 1.6rem;
  }
}

/* Keep a single primary nav CTA; products sits as text nav */
@media (min-width: 1280px) {
  .navbar .dropdown > a {
    padding-left: 22px;
  }
}

/* ===== Inner pages — OMS glass sync ===== */
#main {
  background: var(--kc-page-bg);
}

.breadcrumbs {
  background: var(--kc-page-bg);
  padding-bottom: 0;
}

.breadcrumbs nav {
  background: var(--kc-page-bg);
  max-width: 1320px;
  margin: 0 auto 24px;
  padding: 0 12px 24px;
}

.breadcrumbs nav ol {
  margin-bottom: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 14px rgba(var(--kc-brand-rgb), 0.05);
}

.glass-panel,
.featured-services .service-item,
.services .card:not(.service-card),
.team .member,
.pricing .pricing-item:not(.featured),
.horizontal-pricing .pricing-item:not(.featured),
.contact .php-email-form,
.get-a-quote .php-email-form,
.about .content,
.service-details .services-list,
.stats-counter .stats-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 18px rgba(var(--kc-brand-rgb), 0.05),
    0 1px 2px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
}

.featured-services {
  background: var(--kc-page-bg);
  padding-top: 48px;
}

.featured-services .service-item {
  width: 100%;
  padding: 20px;
  height: auto;
}

.featured-services .service-item .icon {
  background: transparent !important;
  color: var(--kc-primary) !important;
}

.services .card:not(.service-card) {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 0;
  overflow: hidden;
}

.services .card:not(.service-card) .card-img {
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}

.services .card:not(.service-card) h3 {
  padding: 12px 20px 0;
  text-transform: none;
}

.services .card:not(.service-card) p {
  padding: 0 20px 20px;
}

.about,
.contact,
.service-details,
.get-a-quote,
.pricing {
  background: #fff;
}

.about + .stats-counter,
.stats-counter {
  background: var(--kc-page-bg);
}

.stats-counter .stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(920px, 100%);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .stats-counter .stats-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stats-counter .stats-item {
  padding: 24px 16px;
  height: 100%;
}

.stats-counter .stats-item span {
  color: var(--kc-primary);
}

.stats-counter .stats-item span:after {
  background: var(--kc-tertiary);
}

.stats-counter .stats-item p {
  color: var(--kc-secondary);
  font-weight: 600;
}

.team {
  background: #fff;
}

.team .member {
  padding: 20px;
}

.contact .info-item {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(var(--kc-brand-rgb), 0.04);
  border: 1px solid rgba(var(--kc-brand-rgb), 0.12);
}

.contact .php-email-form,
.get-a-quote .php-email-form {
  padding: 24px;
}

.pricing,
.horizontal-pricing {
  background: var(--kc-page-bg);
}

.pricing .pricing-item,
.horizontal-pricing .pricing-item {
  padding: 24px;
}

.features {
  background: #fff;
}

.faq.pt-0 {
  padding-top: 64px;
}

/* IDE hero overflow guard: only hide page-level horizontal scrollbar */
html, body {
  overflow-x: hidden;
}