:root {
  --xf-primary: var(--site-accent, #2563ff);
  --xf-primary-rgb: var(--site-accent-rgb, 37, 99, 255);
  --xf-primary-dark: color-mix(in srgb, var(--xf-primary) 78%, #111 22%);
  --xf-primary-soft: rgba(var(--xf-primary-rgb), .08);
  --xf-primary-soft-strong: rgba(var(--xf-primary-rgb), .14);
  --xf-primary-border: rgba(var(--xf-primary-rgb), .24);
  --xf-primary-shadow: rgba(var(--xf-primary-rgb), .18);
  --xf-ink: var(--site-dark, #07173c);
  --xf-muted: #66728a;
  --xf-soft: var(--site-light, #f7faff);
  --xf-card: var(--site-surface, #ffffff);
  --xf-border: #dfe7f7;
  --xf-shadow: 0 18px 45px rgba(var(--xf-primary-rgb), .09);
  --xf-radius: 10px;
}

* {
  letter-spacing: 0;
}

html,


body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--xf-ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1168px;
}

.xf-navbar {
  min-height: 86px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(218, 226, 246, .88);
  backdrop-filter: blur(14px);
}

.xf-logo img {
  max-width: 176px;
  max-height: 54px;
  object-fit: contain;
}

.xf-navbar .nav-link {
  color: var(--xf-ink);
  font-size: 13px;
  font-weight: 800;
  padding: 31px 17px !important;
  position: relative;
}

.xf-navbar .nav-link:hover,


.xf-navbar .nav-link.active {
  color: var(--xf-primary);
}

.xf-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 0;
  height: 3px;
  background: var(--xf-primary);
  border-radius: 999px 999px 0 0;
}

.xf-navbar .dropdown-menu {
  border: 1px solid var(--xf-border);
  border-radius: 8px;
  box-shadow: var(--xf-shadow);
  padding: 10px;
}

.xf-navbar .dropdown-item {
  border-radius: 6px;
  color: var(--xf-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
}

.xf-navbar .dropdown-item:hover {
  color: var(--xf-primary);
  background: #eef4ff;
}

.xf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--xf-primary);
  border-radius: 7px;
  background: var(--xf-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(37, 99, 255, .22);
  transition: .2s ease;
}

.xf-btn:hover {
  color: #fff;
  background: var(--xf-primary-dark);
  border-color: var(--xf-primary-dark);
  transform: translateY(-1px);
}

.xf-btn-light {
  background: #fff;
  color: var(--xf-ink);
  border-color: var(--xf-primary);
  box-shadow: none;
}

.xf-btn-light:hover {
  color: #fff;
}

.xf-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(37, 99, 255, .18), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #fff 68%, #f4f8ff 100%);
  border-bottom: 1px solid #e8effc;
}

.xf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(37, 99, 255, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 99, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 75% 35%, #000 0, transparent 44%);
  pointer-events: none;
}

.xf-hero h1 {
  margin: 0;
  color: var(--xf-ink);
  font-size: clamp(38px, 5.1vw, 70px);
  line-height: 1.1;
  font-weight: 900;
}

.xf-hero h1 span {
  color: var(--xf-primary);
}

.xf-hero .lead {
  color: var(--xf-primary);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
}

.xf-hero p {
  color: #34415f;
  max-width: 560px;
}

.xf-hero-media {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

.xf-hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(28, 69, 150, .18));
}

.xf-hero-features {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  padding: 22px 0;
}

.xf-mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.xf-icon-box {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--xf-primary);
  background: #edf4ff;
  font-size: 18px;
}

.xf-icon-box i {
  width: 1.18em;
  height: 1.18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  transform: none;
  vertical-align: middle;
}

.xf-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.xf-mini-feature h3,


.xf-mini-feature h4 {
  margin: 0;
  color: var(--xf-ink);
  font-size: 13px;
  font-weight: 900;
}

.xf-mini-feature p {
  margin: 0;
  color: var(--xf-muted);
  font-size: 12px;
  line-height: 1.35;
}

.xf-section {
  padding: 54px 0;
}

.xf-section-tight {
  padding: 38px 0;
}

.xf-soft {
  background: linear-gradient(180deg, #fff 0%, var(--xf-soft) 100%);
}

.xf-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.xf-section-head h2 {
  margin: 0;
  color: var(--xf-ink);
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.18;
  font-weight: 900;
}

.xf-section-head p {
  margin: 6px 0 0;
  color: var(--xf-muted);
  max-width: 560px;
}

.xf-link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--xf-primary);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.xf-card {
  height: 100%;
  border: 1px solid var(--xf-border);
  border-radius: var(--xf-radius);
  background: var(--xf-card);
  box-shadow: var(--xf-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.xf-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 255, .35);
  box-shadow: 0 22px 60px rgba(18, 59, 140, .13);
}

.xf-scroll-shell {
  position: relative;
}

.xf-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 18px;
}

.xf-scroll-track::-webkit-scrollbar {
  display: none;
}

.xf-scroll-item {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.xf-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--xf-border);
  border-radius: 50%;
  color: var(--xf-primary);
  background: #fff;
  box-shadow: 0 14px 34px rgba(14, 47, 119, .14);
  transform: translateY(-50%);
  transition: .2s ease;
}

.xf-scroll-btn i {
  line-height: 1;
}

.xf-scroll-btn:hover {
  color: #fff;
  background: var(--xf-primary);
  border-color: var(--xf-primary);
}

.xf-scroll-prev {
  left: -21px;
}

.xf-scroll-next {
  right: -21px;
}

.xf-service-card {
  padding: 30px 24px;
}

.xf-service-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.xf-service-card p {
  min-height: 72px;
  color: var(--xf-muted);
  font-size: 14px;
}

.xf-card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  padding: 8px 11px;
  margin-left: -11px;
  border-radius: 8px;
  color: var(--xf-ink);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.xf-card-link i {
  color: var(--xf-primary);
}

.fw-black {
  font-weight: 900;
}

.xf-logo-card {
  padding: 14px;
  text-align: center;
}

.xf-region-card {
  overflow: hidden;
}

.xf-region-card .xf-img,


.xf-blog-card .xf-img,


.xf-detail-img {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.xf-region-card img,


.xf-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.xf-region-card .xf-body,


.xf-blog-card .xf-body {
  padding: 18px;
}

.xf-region-card h3,


.xf-blog-card h3 {
  color: var(--xf-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.xf-meta {
  color: var(--xf-muted);
  font-size: 13px;
}

.xf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--xf-primary);
  background: #eef4ff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}

.xf-about {
  overflow: hidden;
  background: #fff;
}

.xf-about h2 {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.2;
}

.xf-about-img {
  min-height: 410px;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}

.xf-about-img img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.xf-check-list {
  padding: 0;
  margin: 20px 0 28px;
  list-style: none;
}

.xf-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  color: #33405f;
}

.xf-check-list i {
  margin-top: 4px;
  color: var(--xf-primary);
}

.xf-stat-card {
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.xf-stat-card strong {
  color: var(--xf-ink);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.xf-stat-card span {
  display: block;
  color: var(--xf-muted);
  font-size: 12px;
}

.xf-sidebar {
  position: sticky;
  top: 104px;
}

.xf-sidebar-card {
  padding: 22px;
  border: 0;
  border-radius: var(--xf-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 30, 62, .065);
}

.xf-sidebar-card h2,


.xf-sidebar-card h3 {
  margin-bottom: 16px;
  color: var(--xf-ink);
  font-size: 18px;
  font-weight: 900;
}

.xf-side-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.xf-side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 7px;
  color: #33405f;
  background: #f7faff;
  font-weight: 800;
  font-size: 13px;
}

.xf-side-list a:hover,


.xf-side-list a.active {
  color: #fff;
  background: var(--xf-primary);
}

.xf-page-hero {
  padding: 56px 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(37, 99, 255, .14), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-bottom: 1px solid #e8effc;
}

.xf-page-hero h1 {
  margin: 0;
  color: var(--xf-ink);
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 900;
}

.xf-breadcrumb {
  margin-top: 14px;
}

.xf-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.xf-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--xf-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.xf-breadcrumb li + li::before {
  content: "›";
  color: #9aa6bb;
  font-weight: 800;
}

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

.xf-breadcrumb a:hover {
  color: var(--xf-primary);
}

.xf-breadcrumb span {
  color: var(--xf-muted);
}

.xf-navbar .nav-link,


.xf-navbar .dropdown-item,


.xf-breadcrumb a,


.xf-breadcrumb span,


.xf-side-list a,


.xf-footer li a,


.xf-section-link,


.xf-link-more,


.xf-card-link {
  text-transform: capitalize;
}

.xf-footer li a[href^="mailto:"],


.xf-footer li a[href^="tel:"],


.xf-social a {
  text-transform: none;
}

.xf-content {
  color: #33405f;
  font-size: 16px;
}

.xf-content img {
  border-radius: 8px;
}

.xf-content h1,


.xf-content h2,


.xf-content h3,


.xf-content h4,


.xf-content h5 {
  color: var(--xf-ink);
  font-weight: 900;
}

.xf-content h1 {
  font-size: clamp(24px, 2.3vw, 30px);
}

.xf-content h2 {
  font-size: clamp(22px, 2vw, 27px);
}

.xf-content h3 {
  font-size: clamp(20px, 1.7vw, 24px);
}

.xf-faq {
  display: grid;
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.xf-faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(213, 222, 237, .92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 30, 62, .055);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.xf-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: transparent;
  transition: background-color .18s ease;
}

.xf-faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(var(--xf-primary-rgb), .22);
  box-shadow: 0 18px 42px rgba(var(--xf-primary-rgb), .08);
  background:
    linear-gradient(90deg, rgba(var(--xf-primary-rgb), .035), transparent 42%),
    #fff;
}

.xf-faq-item:has(.accordion-button:not(.collapsed))::before {
  background: var(--xf-primary);
}

.xf-faq-button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 18px 22px 18px 28px;
  color: var(--xf-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  transition: color .18s ease, background-color .18s ease;
}

.xf-faq-button::after {
  display: none;
}

.xf-faq-button:hover,


.xf-faq-button:focus {
  color: var(--xf-primary);
  background: rgba(var(--xf-primary-rgb), .035);
  box-shadow: none;
}

.xf-faq-button:not(.collapsed) {
  color: var(--xf-primary);
  background: rgba(var(--xf-primary-rgb), .055);
}

.xf-faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(213, 222, 237, .95);
  border-radius: 8px;
  color: #7a89a5;
  background: #f6f8fc;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.xf-faq-button:not(.collapsed) .xf-faq-number {
  color: #fff;
  border-color: var(--xf-primary);
  background: var(--xf-primary);
}

.xf-faq-question {
  min-width: 0;
}

.xf-faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(213, 222, 237, .95);
  border-radius: 50%;
  color: var(--xf-ink);
  background: #fff;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.xf-faq-toggle i {
  font-size: 12px;
  line-height: 1;
}

.xf-faq-toggle .fa-minus {
  display: none;
}

.xf-faq-button:not(.collapsed) .xf-faq-toggle {
  color: #fff;
  border-color: var(--xf-primary);
  background: var(--xf-primary);
}

.xf-faq-button:not(.collapsed) .xf-faq-toggle .fa-plus {
  display: none;
}

.xf-faq-button:not(.collapsed) .xf-faq-toggle .fa-minus {
  display: inline-block;
}

.xf-faq-body {
  padding: 0 22px 24px 98px;
  color: #52617d;
  font-size: 15px;
  line-height: 1.8;
}

.xf-faq-answer {
  padding-top: 18px;
  border-top: 1px solid rgba(213, 222, 237, .72);
}

.xf-detail-panel {
  padding: 28px;
  border: 0 !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 30, 62, .065);
}

.xf-detail-panel > :last-child,


.xf-detail-panel .xf-content > :last-child {
  margin-bottom: 0;
}

.xf-form-control {
  min-height: 48px;
  border: 1px solid var(--xf-border);
  border-radius: 7px;
  padding: 12px 14px;
}

.xf-form-control:focus {
  border-color: var(--xf-primary);
  box-shadow: 0 0 0 .2rem rgba(37, 99, 255, .12);
}

.xf-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.xf-pagination a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--xf-border);
  border-radius: 7px;
  color: var(--xf-ink);
  font-weight: 900;
}

.xf-pagination a.active,


.xf-pagination a:hover {
  color: #fff;
  background: var(--xf-primary);
  border-color: var(--xf-primary);
}

.xf-brand-strip {
  border-top: 1px solid var(--xf-border);
  border-bottom: 1px solid var(--xf-border);
  background: #fff;
}

.xf-logo-card {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.xf-logo-card img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
}

.xf-footer {
  padding-top: 56px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-top: 1px solid var(--xf-border);
}

.xf-footer-logo img {
  max-width: 327px;
  max-height: 58px;
  object-fit: contain;
}

.xf-footer p,


.xf-footer li,


.xf-footer a {
  color: #5d6881;
  font-size: 13px;
}

.xf-footer a:hover {
  color: var(--xf-primary);
}

.xf-footer h3 {
  margin-bottom: 18px;
  color: var(--xf-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.xf-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.xf-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.xf-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--xf-ink);
  background: #eef4ff;
  border-radius: 999px;
}

.xf-social a:hover {
  color: #fff;
  background: var(--xf-primary);
}

.xf-backtop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  z-index: 20;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--xf-primary);
  box-shadow: 0 12px 32px rgba(37, 99, 255, .26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.xf-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.xf-floating-contact {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 10px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease;
}

.xf-floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.xf-floating-contact a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--xf-primary);
  box-shadow: var(--xf-shadow);
}

.xf-floating-contact a.xf-wa {
  background: #25d366;
}

.xf-gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.xf-album-card,


.xf-video-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.xf-album-card:hover,


.xf-video-card:hover {
  color: inherit;
  transform: none;
}

.xf-album-cover,


.xf-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #f6f8fc;
}

.xf-album-cover img,


.xf-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.xf-album-card:hover .xf-album-cover img,


.xf-video-card:hover .xf-video-thumb img {
  transform: scale(1.03);
}

.xf-album-empty {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--xf-muted);
  font-size: 34px;
}

.xf-album-body,


.xf-video-body {
  display: block;
  padding: 20px;
}

.xf-album-body strong,


.xf-video-body strong {
  display: block;
  color: var(--xf-ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.xf-album-meta {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--xf-primary);
  font-size: 13px;
  font-weight: 800;
}

.xf-album-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--xf-ink);
  font-weight: 800;
}

.xf-play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xf-play-badge i {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--xf-primary);
  box-shadow: 0 18px 42px rgba(var(--xf-primary-rgb), .28);
}

.xf-empty-state {
  padding: 34px;
  border-radius: 8px;
  color: var(--xf-muted);
  background: var(--xf-light);
  text-align: center;
  font-weight: 700;
}

.xf-home-gallery-card {
  display: block;
  padding: 0;
  overflow: hidden;
}

.xf-home-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.xf-image-modal .modal-dialog {
  width: min(1180px, calc(100vw - 32px));
  max-width: min(1180px, calc(100vw - 32px));
  margin-right: auto;
  margin-left: auto;
}

.xf-image-modal .modal-content {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(8, 15, 32, .96);
}

.xf-image-modal .modal-body {
  position: relative;
  min-height: min(760px, calc(100vh - 48px));
  height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 72px !important;
  overflow: hidden;
}

.xf-image-modal .xf-modal-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 96px);
  object-fit: contain;
  border-radius: 6px;
}

.xf-image-modal .xf-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #fff;
  opacity: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.xf-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: var(--xf-primary);
  opacity: 1;
  transform: translateY(-50%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}

.xf-modal-nav:hover,


.xf-modal-nav:focus {
  color: #fff;
  background: var(--xf-primary);
  opacity: 1;
}

.xf-modal-prev {
  left: 18px;
}

.xf-modal-next {
  right: 18px;
}

.xf-map iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
}

.xf-contact-card {
  padding: 24px;
}

.xf-contact-card h3 {
  margin: 14px 0 8px;
  font-size: 17px;
  font-weight: 900;
}

.xf-article-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.xf-detail-main-img {
  height: 430px;
  object-fit: cover;
}

.xf-status-alert {
  position: fixed;
  top: 102px;
  right: 20px;
  z-index: 1080;
  max-width: min(360px, calc(100vw - 40px));
  box-shadow: var(--xf-shadow);
}

.ratio iframe {
  border: 0;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .xf-navbar {
    min-height: 72px;
  }

  .xf-navbar .nav-link {
    padding: 12px 4px !important;
  }

  .xf-navbar .nav-link.active::after {
    display: none;
  }

  .xf-hero {
    padding-top: 44px;
  }

  .xf-hero-media {
    min-height: 300px;
  }

  .xf-section-head {
    align-items: start;
    flex-direction: column;
  }

  .xf-about-img,


  .xf-about-img img {
    min-height: 280px;
    border-radius: 10px;
  }

  .xf-sidebar {
    position: static;
  }


}

@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }

  .xf-section {
    padding: 40px 0;
  }

  .xf-hero h1 {
    font-size: 34px;
  }

  .xf-hero-features {
    margin-top: 24px;
  }

  .xf-image-modal .modal-dialog {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .xf-image-modal .modal-body {
    height: calc(100vh - 32px);
    min-height: calc(100vh - 32px);
    padding: 20px 54px !important;
  }

  .xf-image-modal .xf-modal-image {
    max-height: calc(100vh - 72px);
  }

  .xf-image-modal .xf-modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .xf-modal-nav {
    width: 38px;
    height: 38px;
  }

  .xf-modal-prev {
    left: 10px;
  }

  .xf-modal-next {
    right: 10px;
  }


}

/* Reference fidelity pass: wider canvas,


lighter cards,


larger image-led sections. */
.container {
  max-width: 1288px;
}

.xf-navbar {
  min-height: 88px;
  background: rgba(255, 255, 255, .96);
}

.xf-logo img {
  max-width: 300px;
}

.xf-navbar .nav-link {
  font-size: 12px;
  padding: 33px 18px !important;
}

.xf-btn {
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 12px;
}

.xf-hero {
  padding: 34px 0 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(37, 99, 255, .13), transparent 27%),
    linear-gradient(180deg, #f9fbff 0%, #fff 72%, #f5f8ff 100%);
}

.xf-hero .row.align-items-center {
  min-height: 560px;
}

.xf-hero h1 {
  max-width: 560px;
  font-size: clamp(48px, 4.65vw, 72px);
  line-height: 1.08;
}

.xf-hero .lead {
  max-width: 540px;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.55;
}

.xf-hero p:not(.lead) {
  max-width: 560px;
  font-size: 14px;
}

.xf-hero-media {
  min-height: 555px;
  align-items: center;
  justify-content: center;
}

.xf-hero-media img {
  width: min(100%, 680px);
  max-height: 555px;
  object-fit: contain;
}

.xf-hero-features {
  margin-top: 0;
  padding: 20px 0 26px;
}

.xf-mini-feature {
  gap: 14px;
}

.xf-mini-feature .xf-icon-box,


.xf-benefit-item .xf-icon-box {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 12px;
}

.xf-section {
  padding: 50px 0;
}

.xf-section-tight {
  padding: 50px 0;
}

.xf-section-head {
  margin-bottom: 34px;
}

.xf-section-head.text-center {
  max-width: 760px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.xf-section-head h2 {
  font-size: clamp(23px, 1.9vw, 30px);
}

.xf-section-head p {
  font-size: 14px;
}

.xf-card {
  border-color: #e3ebfa;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(14, 47, 119, .075);
}

.xf-service-card {
  min-height: 238px;
  padding: 26px 24px 24px;
}

.xf-service-icon {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border-radius: 13px;
  font-size: 22px;
}

.xf-service-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.xf-service-card h3 {
  margin-top: 20px;
  font-size: 17px;
}

.xf-service-card p {
  min-height: 48px;
  font-size: 13px;
  line-height: 1.55;
}

.xf-region-card img,


.xf-blog-card img {
  height: 216px;
}

.xf-region-card h3,


.xf-blog-card h3 {
  min-height: 46px;
  font-size: 17px;
}

.xf-about {
  padding: 0;
}

.xf-about .row {
  min-height: 520px;
}

.xf-about-img,


.xf-about-img img {
  min-height: 520px;
}

.xf-stat-card {
  min-height: 96px;
  padding: 20px;
}

.xf-stat-card strong {
  font-size: 24px;
}

.xf-benefit-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 20px;
  box-shadow: 0 18px 42px rgba(18, 59, 140, .06);
}

.xf-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 22px;
  min-width: 0;
}

.xf-benefit-item + .xf-benefit-item {
  border-left: 1px solid var(--xf-border);
}

.xf-benefit-item strong {
  display: block;
  color: var(--xf-ink);
  font-size: 14px;
  font-weight: 900;
}

.xf-benefit-item span span {
  display: block;
  color: var(--xf-muted);
  font-size: 12px;
  line-height: 1.45;
}

.xf-brand-strip {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.xf-logo-card {
  height: 78px;
}

.xf-logo-track {
  gap: 18px;
  padding-bottom: 4px;
}

.xf-logo-track .xf-scroll-item {
  flex-basis: 184px;
}

.xf-logo-shell .xf-scroll-btn {
  width: 36px;
  height: 36px;
  opacity: .82;
}

.xf-footer {
  padding-top: 64px;
}

@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
  }

  .xf-navbar {
    min-height: 72px;
  }

  .xf-navbar .nav-link {
    padding: 13px 8px !important;
    font-size: 15px;
  }

  .xf-hero {
    padding-top: 42px;
  }

  .xf-hero .row.align-items-center {
    min-height: 0;
  }

  .xf-hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .xf-hero .lead {
    font-size: 18px;
    line-height: 1.5;
  }

  .xf-hero p:not(.lead) {
    font-size: 15px;
  }

  .xf-hero-media {
    min-height: auto;
    padding-top: 34px;
  }

  .xf-hero-media img {
    width: 100%;
    max-height: none;
  }

  .xf-benefit-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .xf-scroll-item {
    flex-basis: calc((100% - 20px) / 2);
  }

  .xf-logo-track .xf-scroll-item {
    flex-basis: 168px;
  }

  .xf-scroll-prev {
    left: 6px;
  }

  .xf-scroll-next {
    right: 6px;
  }

  .xf-benefit-item:nth-child(odd) {
    border-left: 0;
  }

  .xf-benefit-item:nth-child(n+3) {
    border-top: 1px solid var(--xf-border);
  }


}

@media (max-width: 575.98px) {
  .xf-logo img {
    max-width: 223px;
  }

  .xf-faq {
    gap: 12px;
  }

  .xf-faq-button {
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 64px;
    padding: 14px 14px 14px 18px;
    font-size: 14px;
  }

  .xf-faq-number {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .xf-faq-toggle {
    width: 32px;
    height: 32px;
  }

  .xf-faq-body {
    padding: 0 16px 20px 70px;
    font-size: 14px;
    line-height: 1.7;
  }

  .xf-hero {
    padding-top: 34px;
  }

  .xf-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .xf-hero .lead {
    font-size: 17px;
  }

  .xf-hero p:not(.lead) {
    font-size: 14px;
    line-height: 1.7;
  }

  .xf-hero .d-flex {
    gap: 12px !important;
  }

  .xf-hero .xf-btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 14px;
  }

  .xf-service-card {
    min-height: 0;
  }

  .xf-scroll-item {
    flex-basis: 82%;
  }

  .xf-logo-track .xf-scroll-item {
    flex-basis: 150px;
  }

  .xf-scroll-btn {
    width: 38px;
    height: 38px;
  }

  .xf-about .row,


  .xf-about-img,


  .xf-about-img img {
    min-height: 320px;
  }

  .xf-stat-card {
    min-height: 142px;
    padding: 16px 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .xf-stat-card .xf-icon-box {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .xf-stat-card strong {
    font-size: 25px;
    line-height: 1;
  }

  .xf-stat-card span {
    max-width: 100%;
    line-height: 1.35;
  }

  .xf-benefit-band {
    grid-template-columns: 1fr;
    padding: 8px 18px;
  }

  .xf-benefit-item {
    padding: 18px 0;
  }

  .xf-benefit-item + .xf-benefit-item {
    border-left: 0;
    border-top: 1px solid var(--xf-border);
  }


}

/* Clean polish reset: static cards and centered icons. */
:root {
  --xf-border: #e8eef9;
  --xf-shadow: none;
}

.xf-card,


.xf-sidebar-card,


.xf-contact-card,


.xf-service-card,


.xf-region-card,


.xf-blog-card,


.xf-testimonial-card,


.xf-benefit-band,


.xf-stat-card,


.xf-logo-card {
  border: 1px solid #e8eef9;
  border-radius: 8px;
  box-shadow: none !important;
}

.xf-card,


.xf-btn,


.xf-scroll-btn,


.xf-social a,


.xf-floating-contact a,


.xf-backtop,


.xf-navbar .dropdown-item,


.xf-side-list a,


.xf-pagination a {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

.xf-card:hover,


.xf-btn:hover,


.xf-scroll-btn:hover,


.xf-social a:hover,


.xf-floating-contact a:hover,


.xf-backtop:hover,


.xf-service-card:hover,


.xf-region-card:hover,


.xf-blog-card:hover,


.xf-testimonial-card:hover,


.xf-logo-card:hover {
  transform: none !important;
}

.xf-card:hover,


.xf-service-card:hover,


.xf-region-card:hover,


.xf-blog-card:hover,


.xf-testimonial-card:hover,


.xf-logo-card:hover {
  border-color: #d7e2f4;
  box-shadow: none !important;
}

.xf-icon-box {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.xf-icon-box i,


.xf-scroll-btn i,


.xf-btn i,


.xf-card-link i,


.xf-link-more i {
  line-height: 1;
}

.xf-icon-box i {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: .94em;
  text-align: center;
}

.xf-icon-box i::before {
  display: block;
  width: 100%;
  line-height: 1;
  text-align: center;
}

.xf-mini-feature .xf-icon-box,


.xf-benefit-item .xf-icon-box {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  font-size: 18px;
}

.xf-service-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  font-size: 21px;
}

.xf-scroll-btn {
  box-shadow: none;
  border-color: #e4ebf8;
}

.xf-brand-strip {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
  overflow: visible;
}

.xf-logo-track {
  gap: 18px;
  padding: 4px 2px 12px;
}

.xf-logo-track .xf-scroll-item {
  flex: 0 0 184px;
}

.xf-logo-card {
  height: 74px;
  background: #fff;
  box-shadow: none !important;
}

.xf-logo-card img {
  max-height: 42px;
}

.xf-reference-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 132px;
  gap: 12px;
  justify-content: center;
}

.xf-reference-card img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.xf-reference-card span {
  display: block;
  color: var(--xf-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

/* Neutral color pass: icons are not painted with the accent color. */
.xf-soft {
  background: linear-gradient(180deg, #fff 0%, #f8fafd 100%);
}

.xf-hero {
  background:
    radial-gradient(circle at 76% 36%, rgba(37, 99, 255, .08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #fff 76%, #f7faff 100%);
}

.xf-hero::before {
  background-image:
    linear-gradient(90deg, rgba(37, 99, 255, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 99, 255, .045) 1px, transparent 1px);
}

.xf-icon-box,


.xf-mini-feature .xf-icon-box,


.xf-benefit-item .xf-icon-box,


.xf-service-icon {
  color: #0b1739;
  background: #f4f7fb;
  border: 1px solid #e9eef7;
}

.xf-card-link,


.xf-link-more {
  color: #0b1739;
}

.xf-card-link i,


.xf-link-more i,


.xf-check-list i {
  color: #0b1739;
}

.xf-badge {
  color: #10224a;
  background: #f3f6fb;
  border: 1px solid #e7edf7;
}

.xf-scroll-btn {
  color: #0b1739;
  background: #fff;
}

.xf-scroll-btn:hover {
  color: #0b1739;
  background: #f4f7fb;
  border-color: #dbe5f3;
}

.xf-side-list a:hover,


.xf-side-list a.active,


.xf-pagination a.active,


.xf-pagination a:hover {
  color: #fff;
  background: var(--xf-primary);
  border-color: var(--xf-primary);
}

/* Detail-page layout fix: generic cards must not force full column height. */
.xf-card {
  height: auto;
}

.xf-service-card,


.xf-region-card,


.xf-blog-card,


.xf-testimonial-card,


.xf-logo-card,


.xf-stat-card,


.xf-contact-card {
  height: 100%;
}

.carousel.xf-card,


.xf-card.carousel,


article.xf-card,


form.xf-card {
  height: auto;
}

.xf-card.xf-service-card {
  height: 100%;
  min-height: 272px;
  display: flex;
  flex-direction: column;
}

.xf-service-card .xf-card-link {
  margin-top: auto;
}

.xf-content {
  clear: both;
  overflow-wrap: anywhere;
  font-weight: 400;
}

.xf-sidebar-card {
  border: 0 !important;
  box-shadow: 0 14px 34px rgba(13, 30, 62, .065) !important;
}

.xf-content::after {
  content: "";
  display: block;
  clear: both;
}

.xf-content p,


.xf-content li,


.xf-content td,


.xf-content th,


.xf-content span {
  color: #33405f;
  font-weight: 400 !important;
  line-height: 1.75;
}

.xf-content h1:has(p),


.xf-content h2:has(p),


.xf-content h3:has(p),


.xf-content h4:has(p),


.xf-content h5:has(p),


.xf-content h6:has(p) {
  margin: 0;
  color: #33405f;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.xf-content strong,


.xf-content b {
  font-weight: 700;
}

.xf-content iframe,


.xf-content table,


.xf-content img {
  max-width: 100%;
}

.xf-detail-media {
  display: block;
  height: auto;
}

/* Menu polish: no underline,


dropdowns open on hover at desktop sizes. */
.xf-navbar .nav-link::after,


.xf-navbar .nav-link.active::after,


.xf-navbar .nav-link:hover::after {
  display: none !important;
}

@media (min-width: 992px) {
  .xf-navbar .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  }

  .xf-navbar .dropdown:hover > .dropdown-menu,


  .xf-navbar .dropdown.show > .dropdown-menu,


  .xf-navbar .dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }


}

/* Dropdown caret restore without bringing back nav underline/focus box. */
.xf-navbar .nav-link:focus,


.xf-navbar .nav-link:focus-visible,


.xf-navbar .dropdown-toggle:focus,


.xf-navbar .dropdown-toggle:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

.xf-navbar .nav-link:not(.dropdown-toggle)::after,


.xf-navbar .nav-link:not(.dropdown-toggle).active::after,


.xf-navbar .nav-link:not(.dropdown-toggle):hover::after {
  content: none !important;
  display: none !important;
}

.xf-navbar .dropdown-toggle::after,


.xf-navbar .dropdown-toggle:hover::after,


.xf-navbar .dropdown-toggle:focus::after,


.xf-navbar .dropdown-toggle.active::after,


.xf-navbar .dropdown.show > .dropdown-toggle::after {
  content: "" !important;
  position: static !important;
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 7px !important;
  vertical-align: .12em !important;
  border-top: .28em solid currentColor !important;
  border-right: .28em solid transparent !important;
  border-bottom: 0 !important;
  border-left: .28em solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  opacity: .78;
  inset: auto !important;
  transform: none !important;
}

/* Carousel hover lock: hover must not move cards,


controls,


or media. */
.xf-detail-carousel,


.carousel.xf-card,


.xf-card.carousel {
  border: 0 !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(13, 30, 62, .065) !important;
  transform: none !important;
  transition: opacity .18s ease !important;
  will-change: auto;
}

.xf-detail-carousel:hover,


.carousel.xf-card:hover,


.xf-card.carousel:hover {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: 0 14px 34px rgba(13, 30, 62, .065) !important;
}

.xf-detail-carousel .carousel-inner {
  border-radius: inherit;
}

.xf-detail-carousel img,


.xf-detail-carousel:hover img,


.xf-detail-carousel .carousel-control-prev,


.xf-detail-carousel .carousel-control-next,


.xf-detail-carousel .carousel-control-prev:hover,


.xf-detail-carousel .carousel-control-next:hover,


.xf-scroll-shell:hover,


.xf-scroll-track:hover,


.xf-scroll-item:hover,


.xf-scroll-item:hover > *,


.xf-logo-track .xf-logo-card:hover {
  transform: none !important;
}

.xf-detail-carousel .carousel-control-prev,


.xf-detail-carousel .carousel-control-next {
  top: 0;
  bottom: 0;
  transition: opacity .18s ease !important;
}

.xf-scroll-item:hover > .xf-card,


.xf-logo-track .xf-logo-card:hover {
  border-color: #e8eef9 !important;
  box-shadow: none !important;
}

/* Horizontal carousel arrows must keep their vertical centering on hover. */
.xf-scroll-btn,


.xf-scroll-btn:hover,


.xf-scroll-btn:focus,


.xf-scroll-btn:active,


.xf-scroll-shell:hover .xf-scroll-btn {
  transform: translateY(-50%) !important;
  opacity: 1 !important;
}

.xf-logo-shell .xf-scroll-btn,


.xf-logo-shell .xf-scroll-btn:hover,


.xf-logo-shell .xf-scroll-btn:focus,


.xf-logo-shell .xf-scroll-btn:active,


.xf-detail-carousel .carousel-control-prev,


.xf-detail-carousel .carousel-control-next,


.xf-detail-carousel .carousel-control-prev:hover,


.xf-detail-carousel .carousel-control-next:hover,


.xf-detail-carousel .carousel-control-prev:focus,


.xf-detail-carousel .carousel-control-next:focus {
  opacity: 1 !important;
}

.xf-scroll-btn i,


.xf-scroll-btn:hover i,


.xf-detail-carousel .carousel-control-prev-icon,


.xf-detail-carousel .carousel-control-next-icon,


.xf-detail-carousel .carousel-control-prev:hover .carousel-control-prev-icon,


.xf-detail-carousel .carousel-control-next:hover .carousel-control-next-icon {
  transform: none !important;
}

.xf-testimonial-card {
  min-height: 260px;
  padding: 24px;
  background: #fff;
}

.xf-testimonial-track {
  gap: 28px;
  padding: 2px 2px 22px;
}

.xf-testimonial-track .xf-scroll-item {
  flex: 0 0 calc((100% - 56px) / 3);
}

.xf-testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.xf-testimonial-head img,


.xf-testimonial-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: #f4f7fb;
  object-fit: cover;
  overflow: hidden;
}

.xf-testimonial-avatar {
  display: inline-grid;
  place-items: center;
  color: var(--xf-ink);
  font-weight: 900;
}

.xf-testimonial-head strong,


.xf-testimonial-head small {
  display: block;
}

.xf-testimonial-head strong {
  color: var(--xf-ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.xf-testimonial-head small {
  margin-top: 3px;
  color: var(--xf-muted);
  font-size: 12px;
  line-height: 1.25;
}

.xf-testimonial-card p {
  margin: 0;
  color: var(--xf-muted);
  font-size: 14px;
  line-height: 1.75;
}

.xf-service-track {
  gap: 28px;
  padding: 2px 2px 22px;
}

.xf-service-track .xf-scroll-item {
  flex: 0 0 calc((100% - 84px) / 4);
}

.xf-service-track .xf-service-card {
  height: 100%;
  min-height: 272px;
}

.xf-blog-track {
  gap: 28px;
  padding: 2px 2px 22px;
}

.xf-blog-track .xf-scroll-item {
  flex: 0 0 calc((100% - 56px) / 3);
}

.xf-blog-track .xf-blog-card {
  min-height: 420px;
}

.xf-blog-track .xf-blog-card img {
  height: 230px;
}

@media (max-width: 1199.98px) {
  .xf-service-track .xf-scroll-item,


  .xf-blog-track .xf-scroll-item,

  .xf-testimonial-track .xf-scroll-item {
    flex-basis: calc((100% - 28px) / 2);
  }


}

@media (max-width: 991.98px) {
  .xf-service-track .xf-scroll-item,


  .xf-blog-track .xf-scroll-item,

  .xf-testimonial-track .xf-scroll-item {
    flex-basis: 72%;
  }


}

@media (max-width: 575.98px) {
  .xf-service-track,


  .xf-blog-track,

  .xf-testimonial-track {
    gap: 18px;
  }

  .xf-service-track .xf-scroll-item,




  .xf-blog-track .xf-scroll-item,


  .xf-testimonial-track .xf-scroll-item {
    flex-basis: 86%;
  }

  .xf-testimonial-card {
    min-height: 240px;
  }


}

/* Theme color bridge: public accents stay driven by admin color settings. */
.text-primary {
  color: var(--xf-primary) !important;
}

.bg-primary,


.btn-primary {
  background-color: var(--xf-primary) !important;
  border-color: var(--xf-primary) !important;
}

.xf-navbar .dropdown-item:hover,


.xf-badge,


.xf-card-link:hover,


.xf-side-list a,


.xf-social a:hover {
  background-color: var(--xf-primary-soft);
}

.xf-scroll-btn:hover,


.xf-scroll-btn:focus,


.xf-scroll-btn:active {
  color: #fff !important;
  background: var(--xf-primary) !important;
  background-color: var(--xf-primary) !important;
  border-color: var(--xf-primary) !important;
  opacity: 1 !important;
}

.xf-btn {
  box-shadow: 0 14px 30px rgba(var(--xf-primary-rgb), .18);
}

.xf-scroll-btn {
  box-shadow: 0 14px 34px rgba(var(--xf-primary-rgb), .11);
}

.xf-card:hover {
  border-color: var(--xf-primary-border);
}

.xf-form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(var(--xf-primary-rgb), .12);
}

.xf-hero,


.xf-page-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(var(--xf-primary-rgb), .10), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--xf-soft) 100%);
  border-bottom-color: color-mix(in srgb, var(--xf-primary) 14%, #fff 86%);
}

.xf-hero::before {
  background-image:
    linear-gradient(90deg, rgba(var(--xf-primary-rgb), .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(var(--xf-primary-rgb), .045) 1px, transparent 1px);
}

.xf-soft,


.xf-footer {
  background: linear-gradient(180deg, #fff 0%, var(--xf-soft) 100%);
}

/* Admin-driven hero slider. */
.xf-hero-carousel {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.xf-hero-carousel .carousel-item {
  min-height: 576px;
}

.xf-hero-carousel .carousel-item > .container {
  min-height: inherit;
}

.xf-hero-carousel .row.align-items-center {
  min-height: inherit;
}

.xf-hero-carousel h1 {
  min-height: 0;
  max-width: 680px;
  display: block;
  overflow: visible;
  font-size: clamp(31px, 2.8vw, 44px);
  line-height: 1.18;
}

.xf-hero-carousel .lead {
  min-height: 0;
  max-width: 620px;
  display: block;
  overflow: visible;
  color: var(--xf-ink);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.65;
  font-weight: 400;
}

.xf-hero-media {
  width: 100%;
  height: 527px;
  min-height: 527px;
  overflow: hidden;
  border-radius: 0;
  align-items: stretch;
}

.xf-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.xf-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.xf-hero-carousel .carousel-indicators {
  right: auto;
  bottom: 12px;
  left: 50%;
  z-index: 3;
  gap: 8px;
  margin: 0;
  transform: translateX(-50%);
}

.xf-hero-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(var(--xf-primary-rgb), .28);
  opacity: 1;
}

.xf-hero-carousel .carousel-indicators .active {
  width: 28px;
  background-color: var(--xf-primary);
}

.xf-hero-control {
  top: 50%;
  bottom: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #e8eef9;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  transform: translateY(-50%) !important;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

.xf-hero-control:hover,


.xf-hero-control:focus {
  background: var(--xf-primary);
  border-color: var(--xf-primary);
  opacity: 1;
  transform: translateY(-50%) !important;
}

.xf-hero-control.carousel-control-prev {
  left: 22px;
}

.xf-hero-control.carousel-control-next {
  right: 22px;
}

.xf-hero-control .carousel-control-prev-icon,


.xf-hero-control .carousel-control-next-icon {
  width: 18px;
  height: 18px;
  filter: invert(10%) sepia(22%) saturate(1798%) hue-rotate(191deg) brightness(93%) contrast(98%);
  transform: none !important;
}

.xf-hero-control:hover .carousel-control-prev-icon,


.xf-hero-control:hover .carousel-control-next-icon,


.xf-hero-control:focus .carousel-control-prev-icon,


.xf-hero-control:focus .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  transform: none !important;
}

.xf-hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.xf-captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 58px;
  min-height: 58px;
  padding: 6px 8px;
  border: 1px solid var(--xf-border);
  border-radius: 6px;
  background: #fff;
}

.xf-captcha-input {
  height: 58px;
  min-height: 58px;
}

.xf-captcha-img {
  display: block;
  width: 150px;
  max-width: calc(100% - 42px);
  height: 46px;
  border-radius: 4px;
  object-fit: cover;
}

.xf-captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(var(--xf-primary-rgb), .2);
  border-radius: 50%;
  color: var(--xf-primary);
  background: rgba(var(--xf-primary-rgb), .08);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.xf-captcha-refresh:hover,


.xf-captcha-refresh:focus {
  color: #fff;
  background: var(--xf-primary);
  border-color: var(--xf-primary);
  outline: 0;
}

@media (max-width: 991.98px) {
  .xf-hero-carousel {
    padding-bottom: 0;
  }

  .xf-hero-carousel .carousel-item {
    min-height: auto;
    padding: 42px 0 24px;
  }

  .xf-hero-carousel h1 {
    min-height: 0;
    font-size: clamp(26px, 6.2vw, 34px);
    line-height: 1.18;
  }

  .xf-hero-carousel .lead {
    min-height: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .xf-hero-media {
    height: 360px;
    min-height: 360px;
  }

  .xf-hero-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
  }

  .xf-hero-control {
    display: none;
  }


}

/* Fixed header: full size at top,


compact after scroll. */
body {
  padding-top: 88px;
}

.xf-site-header {
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  transition: box-shadow .18s ease, background-color .18s ease;
}

.xf-site-header .xf-navbar {
  min-height: 88px;
  padding-top: 0;
  padding-bottom: 0;
  transition: min-height .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.xf-site-header .xf-logo img,


.xf-site-header .xf-navbar .nav-link,


.xf-site-header .xf-btn,


.xf-site-header .navbar-toggler {
  transition: max-width .18s ease, max-height .18s ease, padding .18s ease, min-height .18s ease, font-size .18s ease, background-color .18s ease, border-color .18s ease;
}

.xf-site-header.is-scrolled .xf-navbar {
  min-height: 48px;
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(210, 218, 232, .95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06) !important;
}

.xf-site-header.is-scrolled .xf-logo img {
  max-width: 270px;
  max-height: 72px;
}

.xf-site-header.is-scrolled .xf-navbar .nav-link {
  padding: 14px 12px !important;
  font-size: 11px;
}

.xf-site-header.is-scrolled .xf-btn {
  min-height: 32px;
  padding: 6px 14px;
  font-size: 11px;
  box-shadow: none;
}

.xf-site-header.is-scrolled .navbar-toggler {
  padding: 5px 7px;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 74px;
  }

  .xf-site-header .xf-navbar {
    min-height: 74px;
  }

  .xf-site-header.is-scrolled .xf-navbar {
    min-height: 56px;
  }

  .xf-site-header.is-scrolled .xf-logo img {
    max-width: 132px;
    max-height: 32px;
  }

  .xf-site-header .navbar-collapse {
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    background: rgba(255, 255, 255, .98);
  }

  .xf-site-header .xf-navbar .nav-link,


  .xf-site-header.is-scrolled .xf-navbar .nav-link {
    padding: 12px 0 !important;
    font-size: 13px;
  }


}

@media (max-width: 767.98px) {
  .xf-page-hero {
    padding: 38px 0;
  }

  .xf-page-hero h1 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.14;
  }

  .xf-breadcrumb {
    max-width: 100%;
    overflow: hidden;
  }

  .xf-breadcrumb ol {
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .xf-breadcrumb ol::-webkit-scrollbar {
    display: none;
  }

  .xf-breadcrumb li {
    flex: 0 0 auto;
    gap: 0;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.25;
  }

  .xf-breadcrumb li + li::before {
    margin: 0 9px;
  }

  .xf-breadcrumb li:last-child {
    max-width: clamp(110px, 38vw, 150px);
    overflow: hidden;
  }

  .xf-breadcrumb li:last-child span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xf-detail-carousel {
    background: #fff;
  }

  .xf-detail-carousel .carousel-inner,


  .xf-detail-carousel .carousel-item {
    height: auto;
  }

  .xf-detail-layout {
    --bs-gutter-x: 0;
    --bs-gutter-y: 1.5rem;
  }

  .xf-detail-main-img,


  .xf-detail-carousel .xf-article-main-img,


  .xf-article-main-img {
    display: block;
    height: auto !important;
    max-height: none;
    object-fit: contain !important;
  }


}

/* GTranslate: compact in the desktop topbar, full-width inside the mobile menu. */
.gtranslate_wrapper {
  display: flex;
  align-items: center;
}

.gtranslate-topbar {
  position: relative;
  z-index: 10030;
  flex: 0 0 auto;
  margin-left: 2px;
}

.gtranslate-topbar .gt_switcher {
  position: relative !important;
  overflow: visible !important;
  min-width: 0 !important;
  border: 1px solid rgba(255, 255, 255, .32) !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
  font-size: 10px !important;
}

.gtranslate-topbar .gt_switcher .gt_selected a,
.gtranslate-topbar .gt_switcher .gt_option a {
  color: #17335f !important;
}

.gtranslate-topbar .gt_switcher .gt_selected a {
  background: #fff !important;
}

.gtranslate-topbar .gt_switcher .gt_option {
  position: absolute !important;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 10040 !important;
  margin-top: 2px;
  border: 1px solid #b7c8e3 !important;
  border-radius: 0 0 4px 4px;
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(12, 42, 88, .18);
}

.gtranslate-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .gtranslate-topbar {
    display: none;
  }

  .gtranslate-mobile {
    display: flex;
    align-self: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 6px 0 10px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
  }

  .gtranslate-mobile .gt_switcher {
    position: relative !important;
    overflow: visible !important;
    width: max-content !important;
    max-width: 100%;
    border: 0 !important;
    box-shadow: none !important;
  }

  .gtranslate-mobile .gt_switcher .gt_selected a {
    width: auto !important;
    color: #17335f !important;
  }

  .gtranslate-mobile .gt_switcher .gt_option {
    position: absolute !important;
    top: 100%;
    right: auto;
    left: 0;
    z-index: 10040 !important;
    border: 1px solid #b7c8e3 !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(12, 42, 88, .14);
  }

  .gtranslate-mobile .gt_switcher .gt_option a {
    color: #17335f !important;
  }
}

/* Kombi teknik servis tema katmani */
:root {
  --kts-blue: var(--site-accent, #0d5bd7);
  --kts-navy: var(--site-dark, #062b63);
  --kts-surface: var(--site-surface, #ffffff);
  --kts-pale: var(--site-light, #f4f8ff);
  --kts-orange: #f59e0b;
  --kts-text: #15233b;
  --kts-muted: #667085;
  --kts-line: #e7edf6;
}

body {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--kts-text);
  padding-top: 106px;
  font-size: 14px;
  line-height: 1.65;
}

.xf-site-header,
.xf-site-header .xf-navbar,
.xf-site-header.is-scrolled .xf-navbar {
  background: #fff;
}

.xf-site-header {
  box-shadow: 0 3px 14px rgba(6, 43, 99, .08);
}

.kts-topbar {
  height: 34px;
  background: var(--kts-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}

.kts-topbar-inner,
.kts-topbar-contact,
.kts-topbar-right,
.kts-topbar-social {
  display: flex;
  align-items: center;
}

.kts-topbar-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 18px;
}

.kts-topbar-contact,
.kts-topbar-right {
  gap: 16px;
}

.kts-topbar span,
.kts-topbar a {
  color: #fff;
  white-space: nowrap;
}

.kts-topbar i {
  margin-right: 6px;
  font-size: 10px;
}

.kts-topbar-social {
  gap: 11px;
}

.kts-topbar-social a {
  opacity: .9;
}

.kts-topbar-social a:hover {
  opacity: 1;
}

.xf-site-header .xf-navbar {
  min-height: 72px;
  padding: 0;
  border-bottom: 1px solid #edf1f7;
  box-shadow: none;
  backdrop-filter: none;
}

.kts-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 175px;
}

.kts-brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.kts-brand-name {
  max-width: 120px;
  color: var(--kts-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.kts-brand-name::first-line {
  color: var(--kts-blue);
}

.xf-site-header .xf-navbar .nav-link,
.xf-site-header.is-scrolled .xf-navbar .nav-link {
  padding: 25px 13px !important;
  color: var(--kts-text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.xf-site-header .xf-navbar .nav-link:hover,
.xf-site-header .xf-navbar .nav-link.active {
  color: var(--kts-blue);
}

.xf-site-header .xf-navbar .nav-link.active::after {
  display: none;
}

.xf-site-header .dropdown-menu {
  border: 1px solid var(--kts-line);
  border-radius: 2px;
  box-shadow: 0 14px 30px rgba(6, 43, 99, .12);
}

.xf-site-header .dropdown-item {
  font-size: 11px;
  font-weight: 500;
}

.kts-nav-cta,
.kts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 17px;
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.kts-nav-cta {
  min-width: 120px;
  background: var(--kts-blue);
  color: #fff;
}

.kts-nav-cta:hover,
.kts-btn-primary:hover {
  background: var(--kts-navy);
  color: #fff;
  transform: translateY(-1px);
}

.kts-hero {
  min-height: 500px;
  background-color: var(--kts-navy);
  background-image: var(--kts-hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kts-hero-inner {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.kts-hero-copy {
  width: 54%;
  max-width: 590px;
  padding: 38px 0;
  color: #fff;
}

.kts-hero-badge,
.kts-eyebrow,
.kts-section-heading > span {
  display: inline-block;
  color: var(--kts-blue);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .4px;
}

.kts-hero-badge {
  color: #fff;
  opacity: .95;
  text-transform: uppercase;
}

.kts-hero-badge i {
  margin-right: 7px;
  color: var(--kts-orange);
}

.kts-hero h1 {
  max-width: 560px;
  margin: 15px 0 12px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
}

.kts-hero h1 span {
  color: #fff;
}

.kts-hero p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.kts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.kts-btn-primary {
  background: var(--kts-blue);
  color: #fff;
}

.kts-btn-outline {
  border-color: rgba(255, 255, 255, .86);
  color: #fff;
}

.kts-btn-outline:hover {
  background: #fff;
  color: var(--kts-navy);
}

.kts-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.kts-hero-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 165px;
}

.kts-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: #fff;
}

.kts-hero-feature strong,
.kts-hero-feature small {
  display: block;
}

.kts-hero-feature strong {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.kts-hero-feature small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  line-height: 1.35;
}

.kts-section {
  padding: 70px 0;
}

.kts-section-heading {
  max-width: 620px;
  margin: 0 auto 34px;
}

.kts-section-heading h2,
.kts-about-copy h2,
.kts-region-copy h2 {
  margin: 7px 0 10px;
  color: var(--kts-text);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
}

.kts-section-heading i {
  display: block;
  width: 38px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--kts-blue);
}

.kts-section-heading p {
  max-width: 540px;
  margin: 12px auto 0;
  color: var(--kts-muted);
  font-size: 13px;
}

.kts-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.kts-service-card {
  min-height: 230px;
  padding: 20px 15px 17px;
  border: 1px solid #edf1f6;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22, 44, 78, .07);
  text-align: center;
}

.kts-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  color: var(--kts-blue);
}

.kts-service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.kts-service-icon i {
  font-size: 28px;
}

.kts-service-card h3,
.kts-blog-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.kts-service-card h3 a:hover,
.kts-blog-card h3 a:hover {
  color: var(--kts-blue);
}

.kts-service-card p {
  min-height: 63px;
  margin: 9px 0 12px;
  color: var(--kts-muted);
  font-size: 11px;
  line-height: 1.55;
}

.kts-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--kts-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.kts-text-link i {
  font-size: 9px;
}

.kts-about-section {
  padding-top: 8px;
}

.kts-about-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(320px, 1.2fr) 170px;
  align-items: center;
  gap: 38px;
}

.kts-about-image {
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  border-radius: 4px;
  background: var(--kts-pale);
}

.kts-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kts-about-copy h2 {
  font-size: 27px;
}

.kts-about-copy h2 span {
  color: var(--kts-blue);
}

.kts-about-copy p,
.kts-region-copy p {
  color: var(--kts-muted);
  font-size: 12px;
}

.kts-check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 17px 0 21px;
  list-style: none;
}

.kts-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--kts-text);
  font-size: 11px;
}

.kts-check-list i {
  color: var(--kts-blue);
}

.kts-stats {
  border: 1px solid #e8eef7;
  background: var(--kts-pale);
}

.kts-stat-item {
  min-height: 102px;
  padding: 17px 12px;
  border-bottom: 1px solid #e4ebf6;
  text-align: center;
}

.kts-stat-item:last-child {
  border-bottom: 0;
}

.kts-stat-item i {
  display: block;
  margin-bottom: 5px;
  color: var(--kts-blue);
  font-size: 19px;
}

.kts-stat-item strong,
.kts-stat-item span {
  display: block;
}

.kts-stat-item strong {
  color: var(--kts-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.kts-stat-item span {
  margin-top: 4px;
  color: var(--kts-text);
  font-size: 9px;
  font-weight: 600;
}

.kts-regions-section {
  padding: 55px 0;
  background: var(--kts-pale);
}

.kts-region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.kts-region-copy h2 {
  margin-top: 5px;
}

.kts-region-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px;
  max-width: 480px;
  margin: 20px 0 22px;
}

.kts-region-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid #e8eef7;
  border-radius: 3px;
  background: #fff;
  color: var(--kts-text);
  font-size: 10px;
  font-weight: 600;
}

.kts-region-links a:hover {
  border-color: var(--kts-blue);
  color: var(--kts-blue);
}

.kts-region-links i {
  color: var(--kts-blue);
  font-size: 10px;
}

.kts-btn-outline-blue {
  border-color: var(--kts-blue);
  color: var(--kts-blue);
}

.kts-btn-outline-blue:hover {
  background: var(--kts-blue);
  color: #fff;
}

.kts-region-vehicle {
	  align-self: end;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  min-height: 270px;
	  text-align: center;
}

.kts-region-vehicle img {
	  width: 100%;
	  max-width: 720px;
	  max-height: 270px;
	  object-fit: contain;
}

.kts-testimonials-section {
  background: #fff;
}

.kts-testimonial-grid,
.kts-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.kts-testimonial-card {
  min-height: 218px;
  padding: 20px 21px;
  border: 1px solid #edf1f6;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(22, 44, 78, .06);
}

.kts-quote-mark {
  color: var(--kts-blue);
  font-size: 38px;
  font-weight: 800;
  line-height: .65;
}

.kts-testimonial-card p {
  min-height: 70px;
  margin: 13px 0;
  color: var(--kts-muted);
  font-size: 11px;
  line-height: 1.65;
}

.kts-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 9px;
  color: var(--kts-orange);
  font-size: 11px;
}

.kts-testimonial-card strong,
.kts-testimonial-card small {
  display: block;
}

.kts-testimonial-card strong {
  color: var(--kts-text);
  font-size: 11px;
  font-weight: 800;
}

.kts-testimonial-card small {
  color: var(--kts-muted);
  font-size: 9px;
}

.kts-review-more,
.xf-review-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  color: var(--xf-primary);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.kts-review-more:hover,
.xf-review-more:hover {
  color: var(--xf-ink);
  transform: translateX(2px);
}

.kts-review-more i,
.xf-review-more i {
  font-size: 9px;
}

.kts-testimonial-card .kts-review-more {
  margin: -2px 0 12px;
}

.kts-blog-section {
  padding-top: 0;
}

.kts-blog-card {
  overflow: hidden;
  border: 1px solid #edf1f6;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22, 44, 78, .06);
}

.kts-blog-image {
  display: block;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
}

.kts-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.kts-blog-card:hover .kts-blog-image img {
  transform: scale(1.03);
}

.kts-blog-body {
  padding: 14px 15px 17px;
}

.kts-blog-body time {
  display: block;
  margin: 8px 0 13px;
  color: var(--kts-muted);
  font-size: 10px;
}

.kts-after-grid {
  margin-top: 28px;
}

.kts-cta-section {
  padding: 24px 0;
  background: var(--kts-blue);
  color: #fff;
}

.kts-cta-inner {
  display: flex;
  align-items: center;
  gap: 17px;
}

.kts-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  font-size: 21px;
}

.kts-cta-inner h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.kts-cta-inner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
}

.kts-cta-inner > .kts-btn {
  margin-left: auto;
}

.kts-btn-white {
  background: #fff;
  color: var(--kts-blue);
}

.kts-btn-white:hover {
  background: var(--kts-navy);
  color: #fff;
}

.kts-footer {
  padding: 46px 0 0;
  background: var(--kts-navy);
  color: rgba(255, 255, 255, .72);
}

.kts-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1.15fr 1.15fr;
  gap: 28px;
}

.kts-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.kts-footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.kts-footer-brand p,
.kts-footer-column p {
  margin: 17px 0 0;
  font-size: 10px;
  line-height: 1.7;
}

.kts-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}

.kts-footer-social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px 3px 8px 3px;
  background: linear-gradient(145deg, rgba(27, 117, 235, .95), rgba(7, 43, 97, .95));
  color: #fff;
  font-size: 11px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 6px 14px rgba(2, 19, 55, .18);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.kts-footer-social a::before {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px 2px 5px 2px;
  content: '';
}

.kts-footer-social a::after {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffbe3b;
  content: '';
}

.kts-footer-social a i {
  position: relative;
  z-index: 1;
}

.kts-footer-social a:hover,
.kts-footer-social a:focus-visible {
  border-color: #ffbe3b;
  background: linear-gradient(145deg, #126de0, #0c4b9e);
  color: #fff;
  transform: translateY(-3px) rotate(-2deg);
  outline: 0;
}

.kts-footer-column h3 {
  margin: 2px 0 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.kts-footer-column ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kts-footer-column li,
.kts-footer-column li a {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  line-height: 1.45;
}

.kts-footer-column li a:hover {
  color: #fff;
}

.kts-footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kts-footer-contact li i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 7px 3px 7px 3px;
  color: #fff;
  background: linear-gradient(145deg, rgba(27, 117, 235, .92), rgba(7, 43, 97, .92));
  font-size: 11px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.kts-footer-contact li i::after {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px 2px 4px 2px;
  content: '';
}

.kts-footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.kts-footer-newsletter {
  scroll-margin-top: 90px;
}

.kts-footer-newsletter input {
  width: 100%;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 3px;
  background: transparent;
  color: #fff;
  font-size: 10px;
}

.kts-footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .62);
}

.kts-newsletter-captcha {
  width: 100%;
  margin-top: 1px;
}

.kts-newsletter-captcha-row {
  display: grid;
  grid-template-columns: max-content minmax(78px, 1fr);
  align-items: center;
  gap: 5px;
}

.kts-footer-newsletter .kts-newsletter-captcha .xf-captcha-box {
  height: 38px;
  min-height: 38px;
  gap: 3px;
  padding: 3px 4px;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.kts-footer-newsletter .kts-newsletter-captcha .xf-captcha-img {
  width: 100px;
  max-width: calc(100% - 22px);
  height: 30px;
}

.kts-footer-newsletter .kts-newsletter-captcha .xf-captcha-refresh {
  flex-basis: 20px;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, .18);
  border-radius: 6px 2px 6px 2px;
  color: #fff;
  background: var(--kts-blue);
  font-size: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.kts-footer-newsletter .kts-newsletter-captcha-row > input {
  width: auto;
  min-width: 0;
  min-height: 38px;
  height: 38px;
  padding: 6px 7px;
}

.kts-footer-newsletter button {
  width: 100%;
  min-height: 33px;
  border: 0;
  border-radius: 3px;
  background: var(--kts-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.kts-newsletter-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.kts-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 38px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
}

.kts-footer-copyright {
  color: inherit;
  transition: color .2s ease;
}

.kts-footer-copyright a {
  color: inherit;
  text-decoration: none;
}

.kts-footer-copyright a:hover,
.kts-footer-copyright a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: 0;
}

.kts-carousel-shell {
  position: relative;
  padding: 0 2px;
}

.kts-carousel-track {
  gap: 14px;
  padding: 4px 3px 19px;
}

.kts-carousel-item {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
}

.kts-carousel-item > * {
  height: 100%;
}

.kts-carousel-shell .xf-scroll-btn {
  display: inline-flex;
  width: 36px;
  height: 72px;
  border: 0;
  border-radius: 4px;
  background: var(--kts-blue);
  color: #fff;
  box-shadow: 0 9px 22px rgba(6, 43, 99, .18);
}

.kts-carousel-shell .xf-scroll-btn:hover,
.kts-carousel-shell .xf-scroll-btn:focus {
  background: var(--kts-navy);
  color: #fff;
}

.kts-carousel-shell .xf-scroll-prev {
  left: -17px;
}

.kts-carousel-shell .xf-scroll-next {
  right: -17px;
}

.kts-carousel-shell .kts-service-card,
.kts-carousel-shell .kts-testimonial-card,
.kts-carousel-shell .kts-blog-card {
  height: 100%;
}

.kts-carousel-shell .kts-service-card {
  min-height: 230px;
}

.kts-carousel-shell .kts-testimonial-card {
  min-height: 218px;
}

.kts-carousel-shell .kts-blog-card {
  min-height: 100%;
}

.kts-brand {
  width: 180px;
  min-width: 180px;
  gap: 0;
}

.kts-brand img {
  width: 176px;
  height: 60px;
  object-fit: contain;
}

.kts-footer-logo img {
  width: 170px;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .kts-carousel-item {
    flex-basis: calc((100% - 28px) / 3);
  }
}

/* Header refresh: icon-led navigation with compact sticky state. */
.xf-sticky-nav-shell {
  background: #f6f9fe;
  border-bottom: 1px solid #dfe8f5;
}

.xf-sticky-nav-shell .xf-navbar {
  min-height: 80px;
  background: #f6f9fe;
  border-bottom: 0;
  box-shadow: none;
  transition: min-height .42s cubic-bezier(.22, 1, .36, 1), background-color .42s ease, box-shadow .42s ease;
}

.xf-sticky-nav-shell .xf-navbar > .container {
  max-width: 1380px;
  gap: 28px;
}

.xf-sticky-nav-shell .kts-brand {
  width: 176px;
  min-width: 176px;
  flex: 0 0 176px;
}

.xf-sticky-nav-shell .kts-brand img {
  width: 176px;
  height: 60px;
}

.xf-sticky-nav-shell .navbar-collapse {
  align-items: center;
}

.xf-sticky-nav-shell .navbar-nav {
  align-items: center;
  gap: 5px;
}

.xf-sticky-nav-shell .xf-navbar .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 10px !important;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #243552;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .1px;
  transition: color .24s ease, background-color .24s ease, border-color .24s ease, padding .42s cubic-bezier(.22, 1, .36, 1), min-height .42s cubic-bezier(.22, 1, .36, 1), font-size .42s ease;
}

.xf-sticky-nav-shell .xf-navbar .nav-link::after {
  display: none !important;
}

.xf-sticky-nav-shell .xf-navbar .nav-link:hover,
.xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible {
  border-color: #c8daf8;
  background: #eaf2ff;
  color: var(--kts-blue);
}

.xf-sticky-nav-shell .xf-navbar .nav-link.active {
  border-color: var(--kts-blue);
  background: var(--kts-blue);
  color: #fff;
  box-shadow: 0 6px 14px rgba(var(--site-accent-rgb, 13, 91, 215), .18);
}

.xf-sticky-nav-shell .xf-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border: 1px solid #cbdcf7;
  border-radius: 4px;
  background: #fff;
  color: var(--kts-blue);
  font-size: 11px;
  transition: background-color .24s ease, border-color .24s ease, color .24s ease, transform .24s ease;
}

.xf-sticky-nav-shell .nav-link:hover .xf-nav-icon,
.xf-sticky-nav-shell .nav-link:focus-visible .xf-nav-icon {
  transform: translateY(-1px);
}

.xf-sticky-nav-shell .nav-link.active .xf-nav-icon {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.xf-sticky-nav-shell .xf-nav-label {
  white-space: nowrap;
}

.xf-sticky-nav-shell .xf-nav-chevron {
  margin-left: 1px;
  font-size: 9px;
  opacity: .72;
}

.xf-sticky-nav-shell .nav-link.active .xf-nav-chevron {
  opacity: 1;
}

.xf-sticky-nav-shell .dropdown-menu {
  min-width: 230px;
  padding: 7px;
  border: 1px solid #dfe8f5;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(21, 52, 96, .14);
}

.xf-sticky-nav-shell .dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #32435f;
  font-size: 11px;
  font-weight: 600;
}

.xf-sticky-nav-shell .dropdown-item i {
  width: 18px;
  color: var(--kts-blue);
  text-align: center;
}

.xf-sticky-nav-shell .dropdown-item:hover,
.xf-sticky-nav-shell .dropdown-item:focus {
  background: #edf4ff;
  color: var(--kts-blue);
}

.xf-sticky-nav-shell .kts-nav-cta {
  min-width: 136px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--kts-blue);
  border-radius: 5px;
  background: transparent;
  color: var(--kts-blue);
  font-size: 10px;
  box-shadow: none;
}

.xf-sticky-nav-shell .kts-nav-cta:hover,
.xf-sticky-nav-shell .kts-nav-cta:focus-visible {
  background: var(--kts-blue);
  color: #fff;
  transform: translateY(-1px);
}

.xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 58px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 40, 88, .12);
}

.xf-sticky-nav-shell.is-scrolled .kts-brand,
.xf-sticky-nav-shell.is-scrolled .kts-brand img {
  width: 150px;
  min-width: 150px;
}

.xf-sticky-nav-shell.is-scrolled .kts-brand img {
  height: 46px;
}

.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: 34px;
  padding: 4px 8px !important;
  font-size: 9px;
}

.xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  font-size: 9px;
}

.xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 9px;
}

@media (max-width: 991.98px) {
  .xf-sticky-nav-shell .xf-navbar {
    min-height: 72px;
  }

  .xf-sticky-nav-shell .xf-navbar > .container {
    gap: 0;
  }

  .xf-sticky-nav-shell .navbar-collapse {
    flex-basis: 100%;
    max-height: calc(100vh - 54px);
    padding: 8px 0 16px;
    overflow-y: auto;
    background: #f6f9fe;
  }

  .xf-sticky-nav-shell .navbar-nav {
    align-items: stretch;
    gap: 3px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .xf-sticky-nav-shell .xf-navbar .nav-link,
  .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    justify-content: flex-start;
    min-height: 44px;
    padding: 7px 10px !important;
    font-size: 11px;
  }

  .xf-sticky-nav-shell .xf-nav-icon,
  .xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 12px;
  }

  .xf-sticky-nav-shell .kts-nav-cta,
  .xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
    font-size: 11px;
  }

  .xf-sticky-nav-shell .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 3px 0 5px 38px;
    padding: 4px;
    border-color: #dfe8f5;
    box-shadow: none;
  }

  .xf-sticky-nav-shell .dropdown-item {
    min-height: 36px;
    font-size: 11px;
  }

  .xf-sticky-nav-shell .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #cbdcf7 !important;
    border-radius: 5px;
    background: #eaf2ff;
    color: var(--kts-navy);
    font-size: 17px;
  }

  .xf-sticky-nav-shell.is-scrolled .xf-navbar {
    min-height: 58px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand,
  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    width: 130px;
    min-width: 130px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    height: 42px;
  }
}

@media (max-width: 575.98px) {
  .xf-sticky-nav-shell .kts-brand,
  .xf-sticky-nav-shell .kts-brand img {
    width: 146px;
    min-width: 146px;
  }

  .xf-sticky-nav-shell .kts-brand img {
    height: 50px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand,
  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    width: 126px;
    min-width: 126px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    height: 40px;
  }
}

/* Quick contact actions: a restrained pulse on desktop and a safe-area aware bar on mobile. */
.xf-floating-contact {
  gap: 11px;
}

.xf-floating-action {
  position: relative;
  isolation: isolate;
  overflow: visible;
  box-sizing: border-box;
  width: 56px !important;
  height: 56px !important;
  border: 0;
  border-radius: 17px 7px 17px 7px !important;
  animation: xf-floating-breathe 3.8s ease-in-out infinite;
}

.xf-floating-action::before,
.xf-floating-action::after {
  position: absolute;
  z-index: -1;
  inset: -5px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: '';
  opacity: 0;
  pointer-events: none;
  animation: xf-floating-ring 3.8s ease-out infinite;
}

.xf-floating-action::after {
  animation-delay: 1.9s;
}

.xf-floating-action i {
  position: relative;
  z-index: 1;
  font-size: 22px;
}

.xf-floating-action span {
  display: none;
}

.xf-floating-action.xf-call {
  background: var(--xf-primary);
}

.xf-floating-action:hover,
.xf-floating-action:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

@keyframes xf-floating-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes xf-floating-ring {
  0% { opacity: .42; transform: scale(.82); }
  70%, 100% { opacity: 0; transform: scale(1.48); }
}

@media (max-width: 767.98px) {
  .xf-floating-contact {
    right: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 50%;
    box-sizing: border-box;
    display: flex;
    gap: 8px;
    width: min(370px, calc(100vw - 20px));
    max-width: 370px;
    transform: translateX(-50%);
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 17px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 32px rgba(10, 39, 88, .2);
    backdrop-filter: blur(12px);
  }

  .xf-floating-action {
    width: calc(50% - 4px) !important;
    flex: 0 1 calc(50% - 4px);
    min-width: 0;
    max-width: calc(50% - 4px);
    height: 50px !important;
    padding: 0 10px;
    gap: 8px;
    border-radius: 11px !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .xf-floating-action span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .xf-floating-action i {
    flex: 0 0 auto;
    font-size: 18px;
  }

  .xf-floating-action:only-child {
    width: 100% !important;
    flex-basis: 100%;
    max-width: 100%;
  }

  .xf-backtop {
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .xf-floating-action,
  .xf-floating-action::before,
  .xf-floating-action::after {
    animation: none;
  }
}

/* Reviews page: compact editorial layout with content-sized cards. */
.xf-review-page {
  padding: 0 0 78px;
  background: #f6f9fe;
}

.xf-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 42px;
  align-items: stretch;
  padding: 52px 0 42px;
  border-bottom: 1px solid #dfe8f5;
}

.xf-review-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
}

.xf-review-kicker,
.xf-review-list-heading > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--xf-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.xf-review-kicker i {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid #bcd3f5;
  border-radius: 8px 3px 8px 3px;
  background: #eaf2ff;
  font-size: 12px;
}

.xf-review-hero h1 {
  max-width: 620px;
  margin: 16px 0 13px;
  color: var(--xf-ink);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .99;
}

.xf-review-hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: #687894;
  font-size: 16px;
  line-height: 1.75;
}

.xf-review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
}

.xf-review-stats > div {
  min-width: 142px;
  padding: 0 24px;
  border-left: 1px solid #d6e2f2;
}

.xf-review-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.xf-review-stats strong,
.xf-review-stats span {
  display: block;
}

.xf-review-stats strong {
  color: var(--xf-ink);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.xf-review-stats span {
  margin-top: 5px;
  color: #71819b;
  font-size: 11px;
  font-weight: 700;
}

.xf-review-hero-art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  padding: 34px 30px;
  border-radius: 8px 3px 8px 3px;
  color: #fff;
  background: #082d69;
  box-shadow: 0 18px 42px rgba(8, 45, 105, .18);
}

.xf-review-hero-art::after {
  position: absolute;
  right: 30px;
  bottom: 24px;
  width: 74px;
  height: 4px;
  background: #ffb52e;
  content: '';
}

.xf-review-art-line {
  position: absolute;
  z-index: -1;
  display: block;
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, .18);
  transform: rotate(-35deg);
}

.xf-review-art-line-one {
  top: 72px;
  right: -20px;
}

.xf-review-art-line-two {
  top: 106px;
  right: -40px;
}

.xf-review-art-bubble {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 27px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 14px 4px 14px 4px;
  color: #082d69;
  background: #fff;
  font-size: 18px;
}

.xf-review-hero-art > strong,
.xf-review-hero-art > small {
  display: block;
}

.xf-review-hero-art > strong {
  font-size: 25px;
  font-weight: 950;
  line-height: 1.1;
}

.xf-review-hero-art > small {
  margin-top: 12px;
  color: #c9daf4;
  font-size: 12px;
  line-height: 1.6;
}

.xf-review-art-avatars {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.xf-review-art-avatars img,
.xf-review-art-avatars span,
.xf-review-art-avatars b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  border: 2px solid #082d69;
  border-radius: 50%;
  color: #082d69;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  object-fit: cover;
}

.xf-review-art-avatars img:first-child,
.xf-review-art-avatars span:first-child,
.xf-review-art-avatars b:first-child {
  margin-left: 0;
}

.xf-review-art-avatars b {
  color: #fff;
  background: #1464d7;
}

.xf-review-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 45px 0 22px;
}

.xf-review-list-heading h2 {
  margin: 8px 0 0;
  color: var(--xf-ink);
  font-size: 27px;
  font-weight: 950;
  line-height: 1.15;
}

.xf-review-list-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 3px;
  color: #6e7f99;
  font-size: 12px;
  font-weight: 800;
}

.xf-review-list-count i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #16a579;
  font-size: 10px;
}

.xf-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.xf-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 21px 21px 18px;
  border: 1px solid #dfe8f4;
  border-top: 3px solid var(--xf-primary);
  border-radius: 8px 3px 8px 3px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(27, 54, 92, .06);
}

.xf-review-card:nth-child(3n + 2) {
  border-top-color: #f2a52b;
  background: #fffdf8;
}

.xf-review-card:nth-child(3n) {
  border-top-color: #17a77c;
  background: #fbfffd;
}

.xf-review-card-top,
.xf-review-card-footer,
.xf-review-person {
  display: flex;
  align-items: center;
}

.xf-review-card-top {
  justify-content: space-between;
  margin-bottom: 19px;
}

.xf-review-number {
  color: #a4b2c5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.xf-review-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8a6b18;
  font-size: 11px;
  font-weight: 900;
}

.xf-review-rating i {
  color: #f4b42b;
  font-size: 12px;
}

.xf-review-rating i.is-muted,
.kts-stars i.is-muted {
  color: #d4ddea;
}

.xf-review-rating b {
  margin-left: 3px;
  font-size: 10px;
}

.xf-review-card blockquote {
  flex: 0 0 auto;
  margin: 0;
  color: #344766;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.xf-review-card .xf-review-more {
  margin-top: 15px;
}

.xf-review-card-footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid #e8eef6;
}

.xf-review-person {
  min-width: 0;
  gap: 9px;
}

.xf-review-person img,
.xf-review-person > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border: 2px solid #e4edf8;
  border-radius: 50%;
  color: var(--xf-primary);
  background: #eef5ff;
  font-size: 12px;
  font-weight: 900;
  object-fit: cover;
}

.xf-review-person strong,
.xf-review-person small {
  display: block;
}

.xf-review-person strong {
  overflow: hidden;
  color: var(--xf-ink);
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xf-review-person small {
  margin-top: 3px;
  color: #8190a7;
  font-size: 10px;
  font-weight: 700;
}

.xf-review-person small i {
  margin-right: 3px;
  color: var(--xf-primary);
}

.xf-review-verified {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  color: #fff;
  background: #16a579;
  font-size: 10px;
}

@media (max-width: 991.98px) {
  .xf-review-hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
    gap: 26px;
  }

  .xf-review-hero h1 {
    font-size: 42px;
  }

  .xf-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .xf-review-page {
    padding-bottom: 52px;
  }

  .xf-review-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 35px 0 30px;
  }

  .xf-review-hero-copy,
  .xf-review-hero-art {
    min-width: 0;
    max-width: 100%;
  }

  .xf-review-hero h1 {
    margin-top: 13px;
    font-size: 36px;
  }

  .xf-review-hero-copy > p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .xf-review-stats {
    margin-top: 24px;
  }

  .xf-review-stats > div {
    min-width: 0;
    padding: 0 14px;
  }

  .xf-review-stats strong {
    font-size: 22px;
  }

  .xf-review-stats span {
    max-width: 75px;
    font-size: 10px;
    line-height: 1.3;
  }

  .xf-review-hero-art {
    min-height: 240px;
    padding: 26px 23px;
  }

  .xf-review-hero-art > strong {
    font-size: 22px;
  }

  .xf-review-list-heading {
    display: block;
    padding: 34px 0 18px;
  }

  .xf-review-list-heading h2 {
    font-size: 23px;
  }

  .xf-review-list-count {
    margin-top: 13px;
  }

  .xf-review-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .xf-review-card {
    padding: 19px 17px 16px;
  }

  .xf-review-card blockquote {
    font-size: 14px;
  }
}

/* Technical service cards use a compact service-panel treatment instead of a generic box. */
.xf-service-card,
.kts-service-card {
  position: relative;
  overflow: hidden;
  border-color: #d9e5f7;
  border-radius: 12px 4px 12px 4px;
  background: linear-gradient(145deg, #fff 0%, #f5f9ff 100%);
  box-shadow: 0 18px 34px rgba(14, 47, 119, .1);
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.xf-service-card::before,
.kts-service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 106px;
  height: 106px;
  border-left: 1px solid rgba(37, 99, 235, .14);
  border-bottom: 1px solid rgba(37, 99, 235, .14);
  background: linear-gradient(135deg, transparent 48%, rgba(37, 99, 235, .08) 49%, rgba(37, 99, 235, .02) 100%);
  clip-path: polygon(34% 0, 100% 0, 100% 66%);
  content: '';
  pointer-events: none;
}

.xf-service-card::after,
.kts-service-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 7px;
  height: 7px;
  border: 1px solid #ffb52e;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 181, 46, .1);
  content: '';
  pointer-events: none;
}

.xf-service-card:hover,
.kts-service-card:hover {
  border-color: #9fc0f5;
  box-shadow: 0 22px 42px rgba(14, 47, 119, .16);
  transform: translateY(-5px);
}

.xf-service-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 22px 24px 22px;
}

.xf-service-card-meta,
.kts-service-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  color: #6e83a5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.xf-service-card-meta strong,
.kts-service-card-meta strong {
  margin-left: auto;
  color: #1464d7;
  font-size: 16px;
  letter-spacing: 0;
}

.xf-service-card .xf-service-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  flex-basis: 62px;
  margin-bottom: 17px;
  border: 1px solid #bcd3f5;
  border-radius: 17px 5px 17px 5px;
  color: #fff;
  background: linear-gradient(145deg, #1b75eb, #0b3f8f);
  box-shadow: 0 10px 20px rgba(14, 91, 215, .2), inset 0 0 0 4px rgba(255, 255, 255, .1);
}

.xf-service-card .xf-service-icon img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

.xf-service-card h3,
.xf-service-card p,
.xf-service-card .xf-card-link {
  position: relative;
  z-index: 1;
}

.xf-service-card h3 {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.3;
}

.xf-service-card p {
  min-height: 62px;
  margin: 10px 0 17px;
  line-height: 1.6;
}

.xf-service-card .xf-card-link {
  margin-top: auto;
  color: #1464d7;
}

.kts-service-card {
  min-height: 250px;
  padding: 18px 17px 17px;
}

.kts-service-card-meta {
  margin-bottom: 12px;
}

.kts-service-card-meta strong {
  font-size: 14px;
}

.kts-service-card .kts-service-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 13px;
  border: 1px solid #bcd3f5;
  border-radius: 15px 4px 15px 4px;
  color: #fff;
  background: linear-gradient(145deg, #1b75eb, #0b3f8f);
  box-shadow: 0 9px 18px rgba(14, 91, 215, .18), inset 0 0 0 3px rgba(255, 255, 255, .1);
}

.kts-service-card .kts-service-icon img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

.kts-service-card .kts-service-icon i {
  font-size: 25px;
}

.kts-service-card h3,
.kts-service-card p,
.kts-service-card .kts-text-link {
  position: relative;
  z-index: 1;
}

.kts-service-card h3 {
  font-size: 14px;
}

.kts-service-card p {
  min-height: 63px;
}

@media (max-width: 767.98px) {
  .xf-service-card {
    min-height: 0;
  }

  .xf-service-card p {
    min-height: 0;
  }

  .xf-service-card:hover,
  .kts-service-card:hover {
    transform: none;
  }
}

/* The top bar scrolls away; only the navigation remains sticky. */
body {
  padding-top: 0 !important;
  overflow-x: clip;
}

.xf-site-header {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: auto;
  box-shadow: none;
}

.xf-sticky-nav-shell {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
}

.xf-sticky-nav-shell .xf-navbar {
  min-height: 72px;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #edf1f7;
  box-shadow: 0 3px 14px rgba(9, 40, 88, .08);
  transition: min-height .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease, background-color .42s ease;
}

.xf-sticky-nav-shell .kts-brand,
.xf-sticky-nav-shell .kts-brand img,
.xf-sticky-nav-shell .xf-navbar .nav-link,
.xf-sticky-nav-shell .kts-nav-cta {
  transition: width .42s cubic-bezier(.22, 1, .36, 1), min-width .42s cubic-bezier(.22, 1, .36, 1), height .42s cubic-bezier(.22, 1, .36, 1), min-height .42s cubic-bezier(.22, 1, .36, 1), padding .42s cubic-bezier(.22, 1, .36, 1), font-size .42s ease, box-shadow .42s ease;
}

.xf-sticky-nav-shell .kts-brand img {
  width: 176px;
  height: 60px;
  object-fit: contain;
}

.xf-sticky-nav-shell .xf-navbar .nav-link {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 54px;
  box-shadow: 0 8px 24px rgba(9, 40, 88, .14);
}

.xf-sticky-nav-shell.is-scrolled .kts-brand {
  width: 150px;
  min-width: 150px;
}

.xf-sticky-nav-shell.is-scrolled .kts-brand img {
  width: 150px;
  height: 46px;
}

.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  font-size: 10px;
}

.xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
  min-height: 34px;
  padding: 7px 15px;
  font-size: 10px;
}

@media (max-width: 991.98px) {
  .xf-sticky-nav-shell .xf-navbar {
    min-height: 72px;
  }

  .xf-sticky-nav-shell .kts-brand {
    width: 150px;
    min-width: 150px;
  }

  .xf-sticky-nav-shell .kts-brand img {
    width: 150px;
    height: 52px;
  }

  .xf-sticky-nav-shell.is-scrolled .xf-navbar {
    min-height: 54px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand {
    width: 130px;
    min-width: 130px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    width: 130px;
    height: 42px;
  }

  .xf-sticky-nav-shell .xf-navbar .nav-link,
  .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    font-size: 11px;
  }

  .xf-sticky-nav-shell .navbar-collapse {
    max-height: calc(100vh - 54px);
  }
}

@media (max-width: 991.98px) {
  .kts-carousel-item {
    flex-basis: 72%;
  }

  .kts-carousel-shell .xf-scroll-prev {
    left: 8px;
  }

  .kts-carousel-shell .xf-scroll-next {
    right: 8px;
  }

  .kts-carousel-shell .xf-scroll-btn {
    width: 32px;
    height: 60px;
  }
}

@media (max-width: 575.98px) {
  .kts-carousel-item {
    flex-basis: 86%;
  }

  .kts-carousel-track {
    gap: 12px;
  }
}

.kts-carousel-track.kts-service-track .kts-carousel-item,
.kts-carousel-track.kts-testimonial-track .kts-carousel-item,
.kts-carousel-track.kts-blog-track .kts-carousel-item {
  flex-basis: calc((100% - 42px) / 4);
}

@media (max-width: 1199.98px) {
  .kts-carousel-track.kts-service-track .kts-carousel-item,
  .kts-carousel-track.kts-testimonial-track .kts-carousel-item,
  .kts-carousel-track.kts-blog-track .kts-carousel-item {
    flex-basis: calc((100% - 28px) / 3);
  }

  .kts-brand {
    min-width: 54px;
  }
}

@media (max-width: 991.98px) {
  .kts-carousel-track.kts-service-track .kts-carousel-item,
  .kts-carousel-track.kts-testimonial-track .kts-carousel-item,
  .kts-carousel-track.kts-blog-track .kts-carousel-item {
    flex-basis: 72%;
  }
}

@media (max-width: 575.98px) {
  .kts-carousel-track.kts-service-track .kts-carousel-item,
  .kts-carousel-track.kts-testimonial-track .kts-carousel-item,
  .kts-carousel-track.kts-blog-track .kts-carousel-item {
    flex-basis: 86%;
  }
}

.xf-site-header.is-scrolled .xf-navbar {
  min-height: 72px;
}

@media (max-width: 1199.98px) {
  .xf-site-header .xf-navbar .nav-link,
  .xf-site-header.is-scrolled .xf-navbar .nav-link {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 9px;
  }

  .kts-brand {
    width: 150px;
    min-width: 150px;
  }

  .kts-brand img {
    width: 150px;
    height: 54px;
  }

  .kts-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kts-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 106px;
  }

  .kts-topbar-hours,
  .kts-topbar-right > span {
    display: none;
  }

  .xf-site-header .xf-navbar,
  .xf-site-header.is-scrolled .xf-navbar {
    min-height: 72px;
  }

  .xf-site-header .navbar-collapse {
    max-height: calc(100vh - 106px);
    padding: 10px 0 18px;
    background: #fff;
  }

  .xf-site-header .xf-navbar .nav-link,
  .xf-site-header.is-scrolled .xf-navbar .nav-link {
    padding: 11px 0 !important;
    font-size: 11px;
  }

  .kts-nav-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  .kts-hero,
  .kts-hero-inner {
    min-height: 560px;
  }

  .kts-hero-copy {
    width: 64%;
  }

  .kts-about-grid {
    grid-template-columns: minmax(220px, 1fr) 1.25fr;
  }

  .kts-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .kts-stat-item {
    border-right: 1px solid #e4ebf6;
    border-bottom: 0;
  }

  .kts-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .kts-brand {
    width: 132px;
    min-width: 132px;
  }

  .kts-brand img {
    width: 132px;
    height: 48px;
  }

  .kts-footer-logo img {
    width: 150px;
    height: 62px;
  }

  .kts-topbar-inner {
    justify-content: center;
  }

  .kts-topbar-contact {
    gap: 10px;
  }

  .kts-topbar-contact > span:first-child {
    display: none;
  }

  .kts-brand-name {
    max-width: 115px;
    font-size: 14px;
  }

  .kts-hero,
  .kts-hero-inner {
    min-height: 590px;
  }

  .kts-hero {
    position: relative;
    background-position: 68% center;
  }

  .kts-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(6, 43, 99, .56);
    content: "";
  }

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

  .kts-hero-copy {
    width: 100%;
    max-width: 410px;
    padding-top: 34px;
    align-self: flex-start;
  }

  .kts-hero h1 {
    max-width: 350px;
    font-size: 33px;
  }

  .kts-hero p {
    max-width: 330px;
    font-size: 12px;
  }

  .kts-hero-features {
    gap: 13px;
    margin-top: 28px;
  }

  .kts-hero-feature {
    max-width: 137px;
  }

  .kts-hero-feature small {
    font-size: 8px;
  }

  .kts-section {
    padding: 52px 0;
  }

  .kts-section-heading h2,
  .kts-about-copy h2,
  .kts-region-copy h2 {
    font-size: 24px;
  }

  .kts-service-grid,
  .kts-testimonial-grid,
  .kts-blog-grid,
  .kts-region-grid {
    grid-template-columns: 1fr;
  }

  .kts-service-card {
    min-height: 0;
  }

  .kts-service-card p {
    min-height: 0;
  }

  .kts-about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .kts-about-image {
    max-height: 430px;
  }

  .kts-stats {
    grid-column: auto;
  }

  .kts-region-vehicle {
    order: -1;
    min-height: 0;
  }

  .kts-region-links {
    grid-template-columns: 1fr 1fr;
  }

  .kts-cta-inner {
    flex-wrap: wrap;
  }

  .kts-cta-inner > .kts-btn {
    width: 100%;
    margin-left: 64px;
  }

  .kts-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }

  .kts-footer-brand,
  .kts-footer-newsletter {
    grid-column: 1 / -1;
  }

  .kts-footer-bottom {
    flex-direction: column;
  }
}

.kts-hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--kts-navy);
}

.kts-hero-track {
  display: flex;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.kts-hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.kts-hero-carousel.has-controls .kts-hero-copy {
  padding-left: 42px;
}

.kts-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 4px;
  background: rgba(6, 43, 99, .78);
  color: #fff;
  box-shadow: 0 10px 24px rgba(3, 24, 60, .18);
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease;
}

.kts-hero-arrow:hover,
.kts-hero-arrow:focus {
  border-color: #fff;
  background: var(--kts-blue);
  color: #fff;
}

.kts-hero-prev {
  left: 20px;
}

.kts-hero-next {
  right: 20px;
}

.kts-hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.kts-hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .48);
  transition: width .2s ease, background .2s ease;
}

.kts-hero-dot.is-active {
  width: 26px;
  border-radius: 5px;
  background: #fff;
}

@media (max-width: 767.98px) {
  .kts-hero-carousel.has-controls .kts-hero-copy {
    padding-left: 0;
  }

  .kts-hero-arrow {
    top: auto;
    bottom: 18px;
    width: 30px;
    height: 58px;
    transform: none;
  }

  .kts-hero-prev {
    left: 8px;
  }

  .kts-hero-next {
    right: 8px;
  }

  .kts-hero-dots {
    bottom: 13px;
  }
}

/* Contact page: service-first layout with a dedicated request flow. */
.kts-contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--kts-navy);
}

.kts-contact-hero::before {
  position: absolute;
  top: -180px;
  right: 27%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.kts-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  min-height: 468px;
  align-items: stretch;
}

.kts-contact-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 610px;
  padding: 54px 42px 58px 0;
}

.kts-contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
}

.kts-contact-breadcrumb a:hover {
  color: #fff;
}

.kts-contact-breadcrumb i {
  color: var(--kts-orange);
  font-size: 9px;
}

.kts-contact-eyebrow,
.kts-contact-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kts-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kts-contact-eyebrow i {
  font-size: 13px;
}

.kts-contact-hero h1 {
  max-width: 570px;
  margin: 16px 0 16px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

.kts-contact-hero h1 span {
  color: #7fb2ff;
}

.kts-contact-hero-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.75;
}

.kts-contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.kts-contact-call,
.kts-contact-response {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
}

.kts-contact-call {
  padding: 8px 17px 8px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: var(--kts-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.kts-contact-call:hover {
  color: #fff;
  background: #1d6ee7;
}

.kts-contact-call > i,
.kts-contact-response > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .16);
}

.kts-contact-call span,
.kts-contact-response span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.kts-contact-call small,
.kts-contact-response small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 500;
}

.kts-contact-response {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.kts-contact-hero-visual {
  position: relative;
  min-height: 468px;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.kts-contact-hero-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 43, 99, .1);
  content: "";
  pointer-events: none;
}

.kts-contact-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: .94;
}

.kts-contact-hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.kts-contact-hero-tag {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: rgba(6, 43, 99, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.kts-contact-hero-tag i {
  color: var(--kts-orange);
}

.kts-contact-section {
  padding: 76px 0 84px;
  background: #fff;
}

.kts-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 74px;
  align-items: start;
}

.kts-contact-rail {
  padding-top: 14px;
}

.kts-contact-rail h2,
.kts-contact-form-heading h2,
.kts-contact-map-heading h2 {
  margin: 12px 0 10px;
  color: var(--kts-navy);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.18;
}

.kts-contact-rail > p,
.kts-contact-form-heading p,
.kts-contact-map-heading p {
  margin: 0;
  color: var(--kts-muted);
  font-size: 13px;
  line-height: 1.75;
}

.kts-contact-info-list {
  margin-top: 28px;
  border-top: 1px solid var(--kts-line);
}

.kts-contact-info-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--kts-line);
}

.kts-contact-info-item > span:nth-child(2) {
  min-width: 0;
}

.kts-contact-info-item small,
.kts-contact-info-item strong {
  display: block;
}

.kts-contact-info-item small {
  margin-bottom: 3px;
  color: var(--kts-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.kts-contact-info-item strong {
  overflow-wrap: anywhere;
  color: var(--kts-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

a.kts-contact-info-item:hover strong {
  color: var(--kts-blue);
}

.kts-contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 91, 215, .18);
  border-radius: 7px;
  color: var(--kts-blue);
  background: var(--kts-pale);
  font-size: 15px;
}

.kts-contact-info-arrow {
  align-self: center;
  color: #a0acc0;
  font-size: 11px;
}

.kts-contact-emergency {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 15px;
  border-left: 3px solid var(--kts-orange);
  background: #fff8e9;
}

.kts-contact-emergency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  color: #9a6200;
  background: #ffe2a0;
}

.kts-contact-emergency strong,
.kts-contact-emergency small {
  display: block;
}

.kts-contact-emergency strong {
  color: #754b00;
  font-size: 12px;
}

.kts-contact-emergency small {
  margin-top: 3px;
  color: #8e6b2c;
  font-size: 11px;
  line-height: 1.45;
}

.kts-contact-form-panel {
  padding: 34px;
  border: 1px solid var(--kts-line);
  border-top: 3px solid var(--kts-blue);
  border-radius: 8px;
  background: #f8fbff;
}

.kts-contact-form-heading {
  max-width: 560px;
  margin-bottom: 26px;
}

.kts-contact-form-heading h2 {
  margin-top: 9px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.kts-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kts-contact-field {
  display: block;
  margin: 0;
}

.kts-contact-field-wide {
  grid-column: 1 / -1;
}

.kts-contact-field > span {
  display: block;
  margin: 0 0 7px;
  color: var(--kts-navy);
  font-size: 11px;
  font-weight: 800;
}

.kts-contact-field .xf-form-control {
  width: 100%;
  min-height: 50px;
  border-color: #dce6f4;
  background: #fff;
  font-size: 13px;
}

.kts-contact-field textarea.xf-form-control {
  min-height: 128px;
  resize: vertical;
}

.kts-contact-captcha {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 18px;
  grid-column: 1 / -1;
  align-items: end;
}

.kts-contact-submit {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

.kts-contact-submit p {
  margin: 0;
  color: var(--kts-muted);
  font-size: 11px;
}

.kts-contact-submit p i {
  margin-right: 5px;
  color: var(--kts-blue);
}

.kts-contact-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 10px 17px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--kts-blue);
  box-shadow: 0 12px 24px rgba(13, 91, 215, .2);
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.kts-contact-submit-button:hover,
.kts-contact-submit-button:focus {
  color: #fff;
  background: var(--kts-navy);
  transform: translateY(-2px);
}

.js-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.js-submit-content[hidden],
.js-submit-loading[hidden] {
  display: none !important;
}

.js-loading-submit:disabled {
  cursor: wait;
  opacity: .82;
  transform: none !important;
}

.kts-footer-newsletter .js-submit-loading {
  justify-content: center;
}

.kts-contact-map-section {
  padding: 0 0 80px;
  background: #fff;
}

.kts-contact-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 22px;
  padding-top: 8px;
  border-top: 1px solid var(--kts-line);
}

.kts-contact-map-heading h2 {
  margin-bottom: 0;
}

.kts-contact-map-heading p {
  max-width: 340px;
  text-align: right;
}

.kts-contact-map {
  overflow: hidden;
  border: 1px solid var(--kts-line);
  border-radius: 8px;
  background: var(--kts-pale);
}

.kts-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 390px;
  border: 0;
}

@media (max-width: 991.98px) {
  .kts-contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .kts-contact-hero-copy {
    max-width: 700px;
    padding: 44px 0 32px;
  }

  .kts-contact-hero-visual {
    min-height: 310px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }

  .kts-contact-hero-visual img {
    object-position: center 52%;
  }

  .kts-contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .kts-contact-rail {
    max-width: 680px;
  }
}

@media (max-width: 575.98px) {
  .kts-contact-hero-copy {
    padding-top: 32px;
  }

  .kts-contact-breadcrumb {
    margin-bottom: 24px;
  }

  .kts-contact-hero h1 {
    font-size: 35px;
  }

  .kts-contact-hero-copy > p {
    font-size: 13px;
  }

  .kts-contact-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .kts-contact-call,
  .kts-contact-response {
    width: 100%;
  }

  .kts-contact-hero-visual {
    min-height: 245px;
  }

  .kts-contact-hero-ring {
    width: 210px;
    height: 210px;
  }

  .kts-contact-hero-tag {
    right: 12px;
    bottom: 12px;
  }

  .kts-contact-section {
    padding: 52px 0 58px;
  }

  .kts-contact-form-panel {
    padding: 22px 16px;
  }

  .kts-contact-form-grid,
  .kts-contact-captcha {
    grid-template-columns: 1fr;
  }

  .kts-contact-field-wide,
  .kts-contact-captcha,
  .kts-contact-submit {
    grid-column: auto;
  }

  .kts-contact-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .kts-contact-submit-button {
    width: 100%;
  }

  .kts-contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .kts-contact-map-heading p {
    text-align: left;
  }

  .kts-contact-map iframe {
    min-height: 320px;
  }
}

/* Homepage about block: editorial service profile instead of the legacy three-column card. */
.kts-about-section-v2 {
  position: relative;
  overflow: hidden;
  padding: 78px 0 84px;
  background: #f6f9ff;
}

.kts-about-section-v2::before {
  position: absolute;
  top: 0;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(13, 91, 215, .08);
  border-radius: 50%;
  content: "";
}

.kts-about-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 36px;
  color: var(--kts-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.kts-about-topline i {
  width: 44px;
  height: 2px;
  background: var(--kts-orange);
}

.kts-about-topline small {
  color: var(--kts-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.kts-about-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, .96fr) minmax(0, 1.04fr);
  gap: 70px;
  align-items: center;
}

.kts-about-visual-v2 {
  position: relative;
  min-height: 470px;
  padding: 0 24px 24px 0;
}

.kts-about-visual-v2::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86%;
  height: 86%;
  border: 1px solid var(--kts-blue);
  content: "";
  opacity: .22;
}

.kts-about-image-v2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 88%;
  height: 442px;
  background: var(--kts-navy);
}

.kts-about-image-v2::after {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, .08);
  content: "";
  pointer-events: none;
}

.kts-about-image-v2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.kts-about-visual-label {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 108px;
  padding: 14px 16px;
  color: #fff;
  background: var(--kts-blue);
}

.kts-about-visual-label strong {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.kts-about-visual-label span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 700;
}

.kts-about-visual-note {
  position: absolute;
  right: 14px;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-left: 3px solid var(--kts-orange);
  color: var(--kts-navy);
  background: #fff;
  box-shadow: 0 12px 24px rgba(6, 43, 99, .12);
  font-size: 10px;
  line-height: 1.3;
}

.kts-about-visual-note > i {
  color: var(--kts-blue);
  font-size: 18px;
}

.kts-about-visual-note strong {
  font-size: 11px;
}

.kts-about-copy-v2 {
  max-width: 590px;
}

.kts-about-copy-v2 h2 {
  margin: 12px 0 18px;
  color: var(--kts-navy);
  font-size: clamp(29px, 3.2vw, 43px);
  font-weight: 800;
  line-height: 1.12;
}

.kts-about-copy-v2 h2 span {
  color: var(--kts-blue);
}

.kts-about-copy-v2 p {
  max-width: 540px;
  margin: 0;
  color: var(--kts-muted);
  font-size: 13px;
  line-height: 1.8;
}

.kts-check-list-v2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
  margin: 25px 0 28px;
}

.kts-check-list-v2 li {
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.45;
}

.kts-check-list-v2 li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #fff;
  background: var(--kts-blue);
  font-size: 8px;
}

.kts-about-actions-v2 {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kts-about-actions-v2 > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--kts-muted);
  font-size: 10px;
  font-weight: 700;
}

.kts-about-actions-v2 > span i {
  color: var(--kts-orange);
  font-size: 14px;
}

.kts-about-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #dce6f4;
  border-bottom: 1px solid #dce6f4;
}

.kts-about-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 14px 22px;
  border-right: 1px solid #dce6f4;
}

.kts-about-metric:first-child {
  padding-left: 0;
}

.kts-about-metric-last {
  border-right: 0;
}

.kts-about-metric > i {
  color: var(--kts-blue);
  font-size: 20px;
}

.kts-about-metric strong,
.kts-about-metric small {
  display: block;
}

.kts-about-metric strong {
  color: var(--kts-navy);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
}

.kts-about-metric small {
  margin-top: 4px;
  color: var(--kts-muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .kts-about-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .kts-about-visual-v2 {
    max-width: 610px;
  }

  .kts-about-copy-v2 {
    max-width: 700px;
  }
}

@media (max-width: 575.98px) {
  .kts-about-section-v2 {
    padding: 56px 0 60px;
  }

  .kts-about-topline {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }

  .kts-about-topline small {
    width: 100%;
  }

  .kts-about-visual-v2 {
    min-height: 350px;
    padding-right: 14px;
  }

  .kts-about-image-v2 {
    width: calc(100% - 15px);
    height: 330px;
  }

  .kts-about-visual-label {
    top: 24px;
    right: 0;
    min-width: 91px;
    padding: 11px 12px;
  }

  .kts-about-visual-label strong {
    font-size: 22px;
  }

  .kts-about-visual-note {
    right: 0;
    padding: 10px 12px;
  }

  .kts-about-copy-v2 h2 {
    font-size: 30px;
  }

  .kts-check-list-v2 {
    grid-template-columns: 1fr;
  }

  .kts-about-actions-v2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .kts-about-metrics {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .kts-about-metric,
  .kts-about-metric:first-child {
    min-height: 76px;
    padding: 12px 10px;
  }

  .kts-about-metric:nth-child(2) {
    border-right: 0;
  }

  .kts-about-metric:nth-child(-n + 2) {
    border-bottom: 1px solid #dce6f4;
  }

  .kts-about-metric strong {
    font-size: 16px;
  }
}

/* Standalone about page: a service story layout distinct from generic detail pages. */
.kts-about-page-hero {
  overflow: hidden;
  color: #fff;
  background: var(--kts-navy);
}

.kts-about-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .85fr);
  min-height: 500px;
  align-items: stretch;
}

.kts-about-page-hero-copy {
  align-self: center;
  max-width: 610px;
  padding: 54px 50px 58px 0;
}

.kts-about-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
}

.kts-about-page-breadcrumb a:hover {
  color: #fff;
}

.kts-about-page-breadcrumb i {
  color: var(--kts-orange);
  font-size: 9px;
}

.kts-about-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kts-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kts-about-page-hero h1 {
  max-width: 580px;
  margin: 17px 0 16px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.07;
}

.kts-about-page-hero h1 span {
  color: #7fb2ff;
}

.kts-about-page-hero-copy > p {
  max-width: 520px;
  margin: 0 0 27px;
  color: rgba(255, 255, 255, .73);
  font-size: 14px;
  line-height: 1.8;
}

.kts-about-page-hero-visual {
  position: relative;
  min-height: 500px;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.kts-about-page-hero-image {
  height: 100%;
  overflow: hidden;
}

.kts-about-page-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  opacity: .9;
}

.kts-about-page-hero-seal {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 9px;
  align-items: center;
  min-width: 155px;
  padding: 12px 15px;
  border-left: 3px solid var(--kts-orange);
  background: rgba(6, 43, 99, .88);
}

.kts-about-page-hero-seal i {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--kts-navy);
  background: var(--kts-orange);
  font-size: 11px;
}

.kts-about-page-hero-seal strong,
.kts-about-page-hero-seal span {
  display: block;
}

.kts-about-page-hero-seal strong {
  color: #fff;
  font-size: 12px;
}

.kts-about-page-hero-seal span {
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
}

.kts-about-page-section {
  padding: 78px 0 84px;
  background: #f6f9ff;
}

.kts-about-page-heading {
  max-width: 660px;
  margin-bottom: 34px;
}

.kts-about-page-heading > span {
  color: var(--kts-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.kts-about-page-heading h2 {
  margin: 10px 0 12px;
  color: var(--kts-navy);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.13;
}

.kts-about-page-heading h2 em {
  color: var(--kts-blue);
  font-style: normal;
}

.kts-about-page-heading p {
  margin: 0;
  color: var(--kts-muted);
  font-size: 13px;
}

.kts-about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 56px;
  align-items: start;
}

.kts-about-page-story {
  padding: 32px 36px 34px;
  border: 1px solid #dfe8f5;
  border-top: 3px solid var(--kts-blue);
  border-radius: 8px;
  background: #fff;
}

.kts-about-page-story-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--kts-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kts-about-page-story-label i {
  color: var(--kts-orange);
  font-size: 17px;
}

.kts-about-page-rich-content {
  color: var(--kts-muted);
  font-size: 13px;
  line-height: 1.85;
}

.kts-about-page-rich-content h3 {
  margin: 24px 0 8px;
  color: var(--kts-navy);
  font-size: 18px;
  font-weight: 800;
}

.kts-about-page-rich-content p {
  margin: 0 0 16px;
}

.kts-about-page-rich-content ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.kts-about-page-rich-content li {
  position: relative;
  padding-left: 24px;
  color: var(--kts-text);
  font-size: 12px;
  font-weight: 700;
}

.kts-about-page-rich-content li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--kts-orange);
  content: "";
}

.kts-about-page-principles {
  border-top: 1px solid #d5e1f0;
}

.kts-about-principle {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid #d5e1f0;
}

.kts-about-principle > b {
  color: var(--kts-blue);
  font-size: 15px;
  font-weight: 800;
}

.kts-about-principle strong,
.kts-about-principle small {
  display: block;
}

.kts-about-principle strong {
  color: var(--kts-navy);
  font-size: 13px;
  font-weight: 800;
}

.kts-about-principle small {
  margin-top: 4px;
  color: var(--kts-muted);
  font-size: 11px;
  line-height: 1.55;
}

.kts-about-page-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid #d5e1f0;
  border-bottom: 1px solid #d5e1f0;
}

.kts-about-page-metrics > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 13px 18px;
  border-right: 1px solid #d5e1f0;
}

.kts-about-page-metrics > div:first-child {
  padding-left: 0;
}

.kts-about-page-metrics > div:last-child {
  border-right: 0;
}

.kts-about-page-metrics i {
  grid-row: 1 / 3;
  color: var(--kts-blue);
  font-size: 18px;
}

.kts-about-page-metrics strong,
.kts-about-page-metrics span {
  display: block;
}

.kts-about-page-metrics strong {
  color: var(--kts-navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.kts-about-page-metrics span {
  margin-top: 3px;
  color: var(--kts-muted);
  font-size: 10px;
}

@media (max-width: 991.98px) {
  .kts-about-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .kts-about-page-hero-copy {
    max-width: 700px;
    padding: 44px 0 34px;
  }

  .kts-about-page-hero-visual {
    min-height: 330px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }

  .kts-about-page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 575.98px) {
  .kts-about-page-hero-copy {
    padding-top: 32px;
  }

  .kts-about-page-breadcrumb {
    margin-bottom: 24px;
  }

  .kts-about-page-hero h1 {
    font-size: 35px;
  }

  .kts-about-page-hero-copy > p {
    font-size: 13px;
  }

  .kts-about-page-hero-visual {
    min-height: 285px;
  }

  .kts-about-page-hero-seal {
    right: 12px;
    bottom: 12px;
  }

  .kts-about-page-section {
    padding: 56px 0 60px;
  }

  .kts-about-page-story {
    padding: 24px 18px 26px;
  }

  .kts-about-page-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .kts-about-page-metrics > div,
  .kts-about-page-metrics > div:first-child {
    min-height: 72px;
    padding: 12px 10px;
  }

  .kts-about-page-metrics > div:nth-child(2) {
    border-right: 0;
  }

  .kts-about-page-metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid #d5e1f0;
  }
}

/* Final header cascade: keep the refreshed navigation above legacy theme rules. */
.xf-sticky-nav-shell {
  background: #f6f9fe;
  border-bottom: 1px solid #dfe8f5;
}

.xf-sticky-nav-shell .xf-navbar {
  min-height: 80px;
  background: #f6f9fe;
  border-bottom: 0;
  box-shadow: none;
}

.xf-sticky-nav-shell .kts-brand,
.xf-sticky-nav-shell .kts-brand img {
  width: 176px;
  min-width: 176px;
}

.xf-sticky-nav-shell .kts-brand img {
  height: 60px;
}

.xf-sticky-nav-shell .xf-navbar .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 10px !important;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #243552;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.xf-sticky-nav-shell .xf-navbar .nav-link::after {
  display: none !important;
}

.xf-sticky-nav-shell .xf-navbar .nav-link:hover,
.xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible {
  border-color: #c8daf8;
  background: #eaf2ff;
  color: var(--kts-blue);
}

.xf-sticky-nav-shell .xf-navbar .nav-link.active {
  border-color: var(--kts-blue);
  background: var(--kts-blue);
  color: #fff;
  box-shadow: 0 6px 14px rgba(var(--site-accent-rgb, 13, 91, 215), .18);
}

.xf-sticky-nav-shell .xf-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border: 1px solid #cbdcf7;
  border-radius: 4px;
  background: #fff;
  color: var(--kts-blue);
  font-size: 11px;
}

.xf-sticky-nav-shell .nav-link.active .xf-nav-icon {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.xf-sticky-nav-shell .xf-nav-label {
  white-space: nowrap;
}

.xf-sticky-nav-shell .xf-nav-chevron {
  margin-left: 1px;
  font-size: 9px;
}

.xf-sticky-nav-shell .dropdown-menu {
  min-width: 230px;
  padding: 7px;
  border: 1px solid #dfe8f5;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(21, 52, 96, .14);
}

.xf-sticky-nav-shell .dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #32435f;
  font-size: 11px;
  font-weight: 600;
}

.xf-sticky-nav-shell .dropdown-item i {
  width: 18px;
  color: var(--kts-blue);
  text-align: center;
}

.xf-sticky-nav-shell .dropdown-item:hover,
.xf-sticky-nav-shell .dropdown-item:focus {
  background: #edf4ff;
  color: var(--kts-blue);
}

.xf-sticky-nav-shell .kts-nav-cta {
  min-width: 136px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--kts-blue);
  border-radius: 5px;
  background: transparent;
  color: var(--kts-blue);
  font-size: 10px;
  box-shadow: none;
}

.xf-sticky-nav-shell .kts-nav-cta:hover,
.xf-sticky-nav-shell .kts-nav-cta:focus-visible {
  background: var(--kts-blue);
  color: #fff;
}

.xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 58px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 40, 88, .12);
}

.xf-sticky-nav-shell.is-scrolled .kts-brand,
.xf-sticky-nav-shell.is-scrolled .kts-brand img {
  width: 150px;
  min-width: 150px;
}

.xf-sticky-nav-shell.is-scrolled .kts-brand img {
  height: 46px;
}

.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: 34px;
  padding: 4px 8px !important;
  font-size: 9px;
}

.xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  font-size: 9px;
}

.xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 9px;
}

@media (max-width: 991.98px) {
  .xf-sticky-nav-shell .xf-navbar {
    min-height: 72px;
  }

  .xf-sticky-nav-shell .navbar-collapse {
    flex-basis: 100%;
    max-height: calc(100vh - 54px);
    padding: 8px 0 16px;
    overflow-y: auto;
    background: #f6f9fe;
  }

  .xf-sticky-nav-shell .navbar-nav {
    align-items: stretch;
    gap: 3px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .xf-sticky-nav-shell .xf-navbar .nav-link,
  .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    justify-content: flex-start;
    min-height: 44px;
    padding: 7px 10px !important;
    font-size: 11px;
  }

  .xf-sticky-nav-shell .xf-nav-icon,
  .xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 12px;
  }

  .xf-sticky-nav-shell .kts-nav-cta,
  .xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
    font-size: 11px;
  }

  .xf-sticky-nav-shell .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 3px 0 5px 38px;
    padding: 4px;
    box-shadow: none;
  }

  .xf-sticky-nav-shell .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #cbdcf7 !important;
    border-radius: 5px;
    background: #eaf2ff;
    color: var(--kts-navy);
    font-size: 17px;
  }

  .xf-sticky-nav-shell.is-scrolled .xf-navbar {
    min-height: 58px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand,
  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    width: 130px;
    min-width: 130px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    height: 42px;
  }
}

@media (max-width: 575.98px) {
  .xf-sticky-nav-shell .kts-brand,
  .xf-sticky-nav-shell .kts-brand img {
    width: 146px;
    min-width: 146px;
  }

  .xf-sticky-nav-shell .kts-brand img {
    height: 50px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand,
  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    width: 126px;
    min-width: 126px;
  }

  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    height: 40px;
  }
}
