: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;
  }
}

/* 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: 80px;
  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: 176px;
  min-width: 176px;
}

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

.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: 42px;
  padding: 7px 10px !important;
  font-size: 10px;
}

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

.xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 10px;
}

@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: 72px;
  }

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

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

@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: 146px;
    min-width: 146px;
  }

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

/* Final sticky-size lock: prevent menu/logo from jumping on scroll. */
body .xf-sticky-nav-shell,
body .xf-sticky-nav-shell.is-scrolled {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  border-bottom: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .16);
}

body .xf-sticky-nav-shell.is-scrolled {
  box-shadow: 0 8px 22px rgba(9, 40, 88, .09);
}

body .xf-sticky-nav-shell .xf-navbar,
body .xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 76px;
  background: transparent;
}

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

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

body .xf-sticky-nav-shell .xf-navbar .nav-link,
body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: 42px;
  padding: 6px 8px !important;
  font-size: 10px;
}

body .xf-sticky-nav-shell .xf-nav-icon,
body .xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  font-size: 11px;
}

body .xf-sticky-nav-shell .kts-nav-cta,
body .xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  body .xf-sticky-nav-shell .xf-navbar .nav-link,
  body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    gap: 6px;
    padding: 6px 6px !important;
    font-size: 9px;
  }
}

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

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

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

  body .xf-sticky-nav-shell .xf-navbar .nav-link,
  body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    min-height: 46px;
    padding: 8px 10px !important;
    font-size: 11px;
  }

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

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

/* Final header menu refresh: corporate dropdown + distinct admin icons. */
body .xf-sticky-nav-shell {
  border-bottom: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .16);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

body .xf-sticky-nav-shell .xf-navbar {
  min-height: 76px;
  background: transparent;
}

body .xf-sticky-nav-shell .navbar-nav {
  gap: 5px;
}

body .xf-sticky-nav-shell .xf-navbar .nav-link,
body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  position: relative;
  min-height: 42px;
  padding: 6px 8px !important;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--kts-text);
  font-size: 10px;
  font-weight: 800;
  overflow: hidden;
}

body .xf-sticky-nav-shell .xf-navbar .nav-link::before {
  position: absolute;
  inset: auto 10px 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--kts-green);
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .2s ease, transform .2s ease;
  content: "";
}

body .xf-sticky-nav-shell .xf-navbar .nav-link:hover,
body .xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible,
body .xf-sticky-nav-shell .xf-navbar .nav-link.active {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .22);
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  color: var(--kts-green-dark);
  box-shadow: none;
}

body .xf-sticky-nav-shell .xf-navbar .nav-link:hover::before,
body .xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible::before,
body .xf-sticky-nav-shell .xf-navbar .nav-link.active::before {
  opacity: 1;
  transform: scaleX(1);
}

body .xf-sticky-nav-shell .xf-nav-icon,
body .xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .18);
  border-radius: 9px;
  background: #fff;
  color: var(--kts-green);
  box-shadow: inset 0 0 0 5px rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  font-size: 11px;
}

body .xf-sticky-nav-shell .nav-link.active .xf-nav-icon,
body .xf-sticky-nav-shell .nav-link:hover .xf-nav-icon,
body .xf-sticky-nav-shell .nav-link:focus-visible .xf-nav-icon {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .28);
  background: var(--kts-green);
  color: #fff;
  box-shadow: 0 9px 18px rgba(var(--site-accent-rgb, 53, 169, 88), .18);
}

body .xf-sticky-nav-shell .nav-item:nth-child(2) .xf-nav-icon {
  border-radius: 50%;
}

body .xf-sticky-nav-shell .nav-item:nth-child(3) .xf-nav-icon {
  border-radius: 8px 8px 2px 8px;
}

body .xf-sticky-nav-shell .nav-item:nth-child(4) .xf-nav-icon {
  border-radius: 8px 2px 8px 8px;
}

body .xf-sticky-nav-shell .nav-item:nth-child(5) .xf-nav-icon {
  border-radius: 3px 9px 9px 9px;
}

body .xf-sticky-nav-shell .nav-item:nth-child(6) .xf-nav-icon {
  border-radius: 9px 9px 9px 3px;
}

body .xf-sticky-nav-shell .xf-nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .1);
  color: var(--kts-green);
  font-size: 9px;
}

body .xf-sticky-nav-shell .xf-nav-dropdown-root {
  cursor: pointer;
}

body .xf-sticky-nav-shell .dropdown-menu {
  min-width: 254px;
  padding: 9px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 52px rgba(7, 36, 67, .13);
}

body .xf-sticky-nav-shell .dropdown-menu::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--kts-green), rgba(var(--site-accent-rgb, 53, 169, 88), .18));
  content: "";
}

body .xf-sticky-nav-shell .dropdown-item {
  position: relative;
  min-height: 44px;
  gap: 11px;
  margin-left: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--kts-text);
  font-size: 12px;
  font-weight: 750;
}

body .xf-sticky-nav-shell .dropdown-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .15);
  border-radius: 9px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .09);
  color: var(--kts-green);
  font-size: 12px;
  text-align: center;
}

body .xf-sticky-nav-shell .dropdown-item:hover,
body .xf-sticky-nav-shell .dropdown-item:focus {
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  color: var(--kts-green-dark);
}

body .xf-sticky-nav-shell .dropdown-item:hover i,
body .xf-sticky-nav-shell .dropdown-item:focus i {
  background: var(--kts-green);
  color: #fff;
}

@media (min-width: 992px) {
  body .xf-sticky-nav-shell .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
  }

  body .xf-sticky-nav-shell .nav-item.dropdown:hover > .dropdown-menu,
  body .xf-sticky-nav-shell .nav-item.dropdown:focus-within > .dropdown-menu,
  body .xf-sticky-nav-shell .nav-item.dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1199.98px) {
  body .xf-sticky-nav-shell .navbar-nav {
    gap: 3px;
  }

  body .xf-sticky-nav-shell .xf-navbar .nav-link,
  body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    gap: 6px;
    padding: 6px 6px !important;
    font-size: 9px;
  }
}

@media (max-width: 991.98px) {
  body .xf-sticky-nav-shell .navbar-collapse {
    background: #f6fbf8;
  }

  body .xf-sticky-nav-shell .navbar-nav {
    gap: 5px;
  }

  body .xf-sticky-nav-shell .xf-navbar .nav-link,
  body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    min-height: 46px;
    padding: 8px 10px !important;
    font-size: 11px;
  }

  body .xf-sticky-nav-shell .dropdown-menu {
    margin: 4px 0 7px 39px;
    padding: 7px;
    border-radius: 8px;
    box-shadow: none;
  }
}

/* Services page refresh */
.kts-service-page {
  background:
    linear-gradient(180deg, #f6faf7 0%, #ffffff 42%, #ffffff 100%);
}

.kts-service-page-hero {
  padding: 72px 0 50px;
  background:
    radial-gradient(circle at 88% 18%, rgba(var(--kts-green-rgb), .14), transparent 29%),
    linear-gradient(135deg, rgba(var(--kts-green-rgb), .09), rgba(255, 255, 255, .94) 58%);
}

.kts-service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--kts-muted);
  font-size: 12px;
  font-weight: 700;
}

.kts-service-breadcrumb a {
  color: var(--kts-green-dark);
}

.kts-service-breadcrumb i {
  color: rgba(var(--kts-green-rgb), .58);
  font-size: 9px;
}

.kts-service-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .82fr);
  align-items: center;
  gap: 52px;
}

.kts-service-page-copy {
  max-width: 660px;
}

.kts-service-page-copy h1 {
  margin: 10px 0 18px;
  color: var(--kts-text);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
}

.kts-service-page-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--kts-muted);
  font-size: 16px;
  line-height: 1.78;
}

.kts-service-page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.kts-service-page-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 43px;
  padding: 10px 14px;
  border: 1px solid rgba(var(--kts-green-rgb), .2);
  border-radius: 8px;
  background: #fff;
  color: var(--kts-text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(11, 45, 77, .06);
}

.kts-service-page-phone i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--kts-green-soft);
  color: var(--kts-green);
  font-size: 12px;
}

.kts-service-page-panel {
  position: relative;
  padding-bottom: 72px;
}

.kts-service-page-image {
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
  border: 1px solid rgba(var(--kts-green-rgb), .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 54px rgba(11, 45, 77, .13);
}

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

.kts-service-page-stats {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kts-service-page-stat {
  display: grid;
  min-height: 112px;
  padding: 16px 12px;
  border: 1px solid rgba(var(--kts-green-rgb), .17);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 36px rgba(11, 45, 77, .1);
}

.kts-service-page-stat i {
  color: var(--kts-green);
  font-size: 20px;
}

.kts-service-page-stat strong {
  margin-top: 8px;
  color: var(--kts-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.kts-service-page-stat span {
  margin-top: 6px;
  color: var(--kts-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.kts-services-list-section {
  padding-top: 64px;
}

.kts-services-list-heading {
  max-width: 620px;
  margin: 0 auto 30px;
}

.kts-services-list-heading h2 {
  margin-top: 8px;
}

.kts-service-grid-all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.kts-service-page .kts-service-card.kts-service-list-card {
  min-height: 286px;
  padding: 26px 20px 24px;
  border: 1px solid rgba(var(--kts-green-rgb), .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fcf9 100%);
  box-shadow: 0 18px 38px rgba(11, 45, 77, .08);
  text-align: center;
}

.kts-service-page .kts-service-card.kts-service-list-card::before {
  top: -62px;
  right: -48px;
  width: 134px;
  height: 134px;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--kts-green-rgb), .09);
  clip-path: none;
}

.kts-service-page .kts-service-card.kts-service-list-card::after {
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(var(--kts-green-rgb), .16);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px var(--kts-green-soft);
}

.kts-service-page .kts-service-card.kts-service-list-card:hover {
  border-color: rgba(var(--kts-green-rgb), .42);
  box-shadow: 0 24px 46px rgba(11, 45, 77, .13);
  transform: translateY(-4px);
}

.kts-service-page .kts-service-card.kts-service-list-card .kts-service-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border: 1px solid rgba(var(--kts-green-rgb), .16);
  border-radius: 50%;
  background: var(--kts-green-soft);
  color: var(--kts-green);
  box-shadow: none;
}

.kts-service-page .kts-service-card.kts-service-list-card .kts-service-icon img {
  width: 74px;
  height: 74px;
  filter: none;
  object-fit: contain;
}

.kts-service-page .kts-service-card.kts-service-list-card .kts-service-icon i {
  color: var(--kts-green);
  font-size: 28px;
}

.kts-service-page .kts-service-card.kts-service-list-card h3 {
  position: relative;
  z-index: 1;
  min-height: 42px;
  margin: 0;
  color: var(--kts-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
}

.kts-service-page .kts-service-card.kts-service-list-card p {
  position: relative;
  z-index: 1;
  min-height: 72px;
  margin: 12px 0 0;
  color: var(--kts-muted);
  font-size: 12px;
  line-height: 1.62;
}

.kts-service-page .kts-service-card.kts-service-list-card .kts-service-card-link {
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--kts-green);
}

@media (max-width: 1199.98px) {
  .kts-service-page-hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
    gap: 34px;
  }

  .kts-service-page-copy h1 {
    font-size: 42px;
  }

  .kts-service-grid-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .kts-service-page-hero {
    padding: 46px 0 44px;
  }

  .kts-service-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .kts-service-page-copy {
    max-width: none;
  }

  .kts-service-page-copy h1 {
    max-width: 680px;
    font-size: 38px;
  }

  .kts-service-page-panel {
    max-width: 640px;
  }

  .kts-service-grid-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .kts-service-page-hero {
    padding: 32px 0 36px;
  }

  .kts-service-breadcrumb {
    max-width: 100%;
    margin-bottom: 18px;
    overflow: hidden;
    white-space: nowrap;
  }

  .kts-service-page-copy h1 {
    font-size: 31px;
    line-height: 1.14;
  }

  .kts-service-page-copy p {
    font-size: 13px;
    line-height: 1.72;
  }

  .kts-service-page-actions {
    align-items: stretch;
    gap: 10px;
  }

  .kts-service-page-actions .kts-btn,
  .kts-service-page-phone {
    width: 100%;
  }

  .kts-service-page-panel {
    padding-bottom: 0;
  }

  .kts-service-page-image {
    aspect-ratio: 1.2 / 1;
  }

  .kts-service-page-stats {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .kts-service-page-stat {
    min-height: 0;
    grid-template-columns: 28px minmax(44px, auto) 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px;
  }

  .kts-service-page-stat strong,
  .kts-service-page-stat span {
    margin-top: 0;
  }

  .kts-services-list-section {
    padding-top: 46px;
  }

  .kts-service-grid-all {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kts-service-page .kts-service-card.kts-service-list-card {
    min-height: 0;
    padding: 22px 18px 56px;
  }

  .kts-service-page .kts-service-card.kts-service-list-card h3,
  .kts-service-page .kts-service-card.kts-service-list-card p {
    min-height: 0;
  }
}

/* TemizLIFE contact page active override: keep it after every legacy page block. */
body .kts-contact-hero {
  position: relative;
  overflow: hidden;
  color: var(--site-dark, #082646);
  background: linear-gradient(180deg, #f6fbf8 0%, #fff 72%, #f7fbf8 100%);
}

body .kts-contact-hero::before {
  inset: 0;
  width: auto;
  height: 58%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(var(--site-accent-rgb, 53, 169, 88), .12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
}

body .kts-contact-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: 52px;
  min-height: 0;
  padding: 64px 0 28px;
  align-items: center;
}

body .kts-contact-hero-copy {
  max-width: 690px;
  padding: 0;
}

body .kts-contact-breadcrumb {
  margin-bottom: 28px;
  color: #65758c;
}

body .kts-contact-breadcrumb a {
  color: var(--site-accent, #35a958);
}

body .kts-contact-breadcrumb a:hover {
  color: var(--site-dark, #082646);
}

body .kts-contact-breadcrumb i {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .62);
}

body .kts-contact-eyebrow,
body .kts-contact-section-label {
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .2);
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  color: var(--site-accent, #35a958);
  font-size: 11px;
  letter-spacing: 0;
}

body .kts-contact-eyebrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--site-accent, #35a958);
}

body .kts-contact-hero h1 {
  max-width: 680px;
  margin: 18px 0;
  color: var(--site-dark, #082646);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.03;
}

body .kts-contact-hero h1 span {
  display: block;
  color: var(--site-accent, #35a958);
}

body .kts-contact-hero-copy > p {
  max-width: 610px;
  color: #5f7087;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.78;
}

body .kts-contact-hero-actions {
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

body .kts-contact-call,
body .kts-contact-response {
  min-height: 58px;
  border-radius: 12px;
}

body .kts-contact-call {
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .28);
  background: var(--site-accent, #35a958);
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb, 53, 169, 88), .24);
}

body .kts-contact-call:hover {
  background: #188342;
  transform: translateY(-2px);
}

body .kts-contact-response {
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(192, 220, 204, .82);
  background: rgba(255, 255, 255, .9);
  color: var(--site-dark, #082646);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .07);
}

body .kts-contact-call > i,
body .kts-contact-response > i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

body .kts-contact-response > i {
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .1);
  color: var(--site-accent, #35a958);
}

body .kts-contact-response small {
  color: #6b7a90;
}

body .kts-contact-hero-visual {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 20px;
  border-left: 1px solid rgba(192, 220, 204, .82);
  background: #eaf5ee;
  box-shadow: 0 26px 62px rgba(6, 35, 59, .14);
}

body .kts-contact-hero-visual::after {
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(8, 38, 70, 0), rgba(8, 38, 70, .58));
}

body .kts-contact-hero-visual img {
  height: 100%;
  min-height: 430px;
  object-position: center;
  opacity: 1;
}

body .kts-contact-hero-ring {
  display: none;
}

body .kts-contact-hero-tag,
body .kts-contact-hero-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .92);
  color: var(--site-dark, #082646);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .14);
  backdrop-filter: blur(10px);
}

body .kts-contact-hero-tag {
  right: 22px;
  bottom: 22px;
  border-radius: 999px;
}

body .kts-contact-hero-tag i {
  color: var(--site-accent, #35a958);
}

body .kts-contact-hero-card {
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 16px;
}

body .kts-contact-hero-card strong {
  color: var(--site-accent, #35a958);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

body .kts-contact-hero-card small {
  margin-top: 4px;
  color: #5f7087;
  font-size: 12px;
  font-weight: 800;
}

body .kts-contact-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 64px;
}

body .kts-contact-step {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 93% 10%, rgba(var(--site-accent-rgb, 53, 169, 88), .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafffc 100%);
  box-shadow: 0 20px 46px rgba(6, 35, 59, .08);
}

body .kts-contact-step span,
body .kts-contact-step strong,
body .kts-contact-step small {
  display: block;
}

body .kts-contact-step span {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .72);
  font-size: 12px;
  font-weight: 900;
}

body .kts-contact-step strong {
  margin-top: 11px;
  color: var(--site-dark, #082646);
  font-size: 17px;
  font-weight: 900;
}

body .kts-contact-step small {
  margin-top: 7px;
  color: #607187;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
}

body .kts-contact-section {
  padding: 76px 0 86px;
  background: linear-gradient(180deg, #fff 0%, #f6fbf8 100%);
}

body .kts-contact-layout {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
}

body .kts-contact-rail {
  padding-top: 8px;
}

body .kts-contact-rail h2,
body .kts-contact-form-heading h2,
body .kts-contact-map-heading h2 {
  color: var(--site-dark, #082646);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900;
}

body .kts-contact-rail > p,
body .kts-contact-form-heading p,
body .kts-contact-map-heading p {
  color: #617189;
  font-size: 14px;
  font-weight: 600;
}

body .kts-contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  border-top: 0;
}

body .kts-contact-info-item {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 35, 59, .06);
}

body .kts-contact-info-item strong {
  color: var(--site-dark, #082646);
  font-size: 14px;
}

body a.kts-contact-info-item:hover {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .42);
  transform: translateY(-2px);
}

body a.kts-contact-info-item:hover strong {
  color: var(--site-accent, #35a958);
}

body .kts-contact-info-icon {
  width: 46px;
  height: 46px;
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .18);
  border-radius: 12px;
  color: var(--site-accent, #35a958);
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .09);
}

body .kts-contact-emergency {
  gap: 13px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .22);
  border-left: 4px solid var(--site-accent, #35a958);
  border-radius: 16px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
}

body .kts-contact-emergency-icon {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  background: var(--site-accent, #35a958);
}

body .kts-contact-emergency strong {
  color: var(--site-dark, #082646);
  font-size: 13px;
}

body .kts-contact-emergency small {
  color: #65758c;
  font-size: 12px;
}

body .kts-contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(192, 220, 204, .9);
  border-top: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 8%, rgba(var(--site-accent-rgb, 53, 169, 88), .14), transparent 26%),
    #fff;
  box-shadow: 0 26px 62px rgba(6, 35, 59, .1);
}

body .kts-contact-form-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--site-accent, #35a958), #8fcf4e);
  content: "";
}

body .kts-contact-form-heading,
body .kts-contact-form-grid {
  position: relative;
  z-index: 1;
}

body .kts-contact-field > span {
  color: var(--site-dark, #082646);
  font-size: 12px;
}

body .kts-contact-field .xf-form-control {
  min-height: 54px;
  border: 1px solid #dce9e1;
  border-radius: 12px;
  background: #fbfefd;
  color: var(--site-dark, #082646);
}

body .kts-contact-field .xf-form-control:focus {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .72);
  box-shadow: 0 0 0 4px rgba(var(--site-accent-rgb, 53, 169, 88), .12);
}

body .kts-contact-field textarea.xf-form-control {
  min-height: 146px;
}

body .kts-contact-submit p i {
  color: var(--site-accent, #35a958);
}

body .kts-contact-submit-button {
  min-height: 52px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--site-accent, #35a958);
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb, 53, 169, 88), .24);
}

body .kts-contact-submit-button:hover,
body .kts-contact-submit-button:focus {
  background: #188342;
}

body .kts-contact-map-section {
  padding: 0 0 88px;
  background: #f6fbf8;
}

body .kts-contact-map-heading {
  align-items: center;
  margin-bottom: 24px;
  padding-top: 0;
  border-top: 0;
}

body .kts-contact-map {
  border: 1px solid rgba(192, 220, 204, .9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(6, 35, 59, .09);
}

body .kts-contact-map iframe {
  min-height: 430px;
}

@media (max-width: 991.98px) {
  body .kts-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 22px;
  }

  body .kts-contact-hero h1 {
    font-size: 44px;
  }

  body .kts-contact-hero-visual,
  body .kts-contact-hero-visual img {
    min-height: 330px;
  }

  body .kts-contact-steps,
  body .kts-contact-layout {
    grid-template-columns: 1fr;
  }

  body .kts-contact-steps {
    padding-bottom: 52px;
  }
}

@media (max-width: 575.98px) {
  body .kts-contact-hero-grid {
    padding: 34px 0 18px;
  }

  body .kts-contact-breadcrumb {
    margin-bottom: 20px;
  }

  body .kts-contact-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  body .kts-contact-hero-copy > p {
    font-size: 14px;
  }

  body .kts-contact-call,
  body .kts-contact-response {
    width: 100%;
  }

  body .kts-contact-hero-visual,
  body .kts-contact-hero-visual img {
    min-height: 286px;
  }

  body .kts-contact-hero-card {
    left: 14px;
    bottom: 14px;
    max-width: 174px;
    padding: 11px 12px;
  }

  body .kts-contact-hero-tag {
    right: 14px;
    bottom: 14px;
    max-width: 160px;
  }

  body .kts-contact-steps {
    gap: 12px;
    padding-bottom: 40px;
  }

  body .kts-contact-section {
    padding: 52px 0 60px;
  }

  body .kts-contact-form-panel {
    padding: 24px 16px;
    border-radius: 18px;
  }

  body .kts-contact-form-grid,
  body .kts-contact-captcha {
    grid-template-columns: 1fr;
  }

  body .kts-contact-field-wide,
  body .kts-contact-captcha,
  body .kts-contact-submit {
    grid-column: auto;
  }

  body .kts-contact-submit {
    align-items: stretch;
    flex-direction: column;
  }

  body .kts-contact-submit-button {
    width: 100%;
  }

  body .kts-contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body .kts-contact-map-heading p {
    text-align: left;
  }

  body .kts-contact-map iframe {
    min-height: 320px;
  }
}

/* Contact page: one calm surface for the office details and request form. */
body .kts-contact-min-page {
  color: var(--site-dark, #082646);
  background: #f4faf6;
}

body .kts-contact-min-hero {
  padding: 24px 0 72px;
  background: #fff;
}

body .kts-contact-min-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
  color: #809091;
  font-size: 12px;
  font-weight: 700;
}

body .kts-contact-min-breadcrumb a {
  color: var(--site-accent, #35a958);
}

body .kts-contact-min-breadcrumb i {
  color: #a3b7ad;
  font-size: 10px;
}

body .kts-contact-min-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 72px;
  align-items: center;
}

body .kts-contact-min-hero-copy {
  min-width: 0;
  max-width: 620px;
}

body .kts-contact-min-eyebrow,
body .kts-contact-min-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--site-accent, #35a958);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body .kts-contact-min-eyebrow i {
  font-size: 14px;
}

body .kts-contact-min-hero h1 {
  max-width: 590px;
  margin: 18px 0 16px;
  color: var(--site-dark, #082646);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.05;
}

body .kts-contact-min-hero h1 em {
  display: block;
  color: var(--site-accent, #35a958);
  font-style: normal;
}

body .kts-contact-min-hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: #617275;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

body .kts-contact-min-hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}

body .kts-contact-min-hero-meta > a,
body .kts-contact-min-hero-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

body .kts-contact-min-hero-meta > a {
  color: var(--site-dark, #082646);
}

body .kts-contact-min-hero-meta > a:hover strong {
  color: var(--site-accent, #35a958);
}

body .kts-contact-min-hero-meta > a > i,
body .kts-contact-min-hero-meta > span > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: #eaf6ed;
  color: var(--site-accent, #35a958);
  font-size: 13px;
}

body .kts-contact-min-hero-meta small,
body .kts-contact-min-hero-meta strong {
  display: block;
}

body .kts-contact-min-hero-meta small {
  margin-bottom: 2px;
  color: #84928f;
  font-size: 10px;
  font-weight: 700;
}

body .kts-contact-min-hero-meta strong {
  color: var(--site-dark, #082646);
  font-size: 13px;
  font-weight: 900;
}

body .kts-contact-min-hero-image {
  min-width: 0;
  height: 416px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf5ee;
}

body .kts-contact-min-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body .kts-contact-min-section {
  padding: 74px 0 86px;
  background: #f4faf6;
}

body .kts-contact-min-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  padding: 54px 58px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(6, 35, 59, .08);
}

body .kts-contact-min-office,
body .kts-contact-min-form-area {
  min-width: 0;
}

body .kts-contact-min-office h2,
body .kts-contact-min-form-area h2,
body .kts-contact-min-map-heading h2 {
  margin: 14px 0 12px;
  color: var(--site-dark, #082646);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.12;
}

body .kts-contact-min-office > p,
body .kts-contact-min-form-area > p,
body .kts-contact-min-map-heading p {
  margin: 0;
  color: #667976;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

body .kts-contact-min-details {
  display: grid;
  gap: 17px;
  margin-top: 32px;
}

body .kts-contact-min-details > a,
body .kts-contact-min-details > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
  color: var(--site-dark, #082646);
}

body .kts-contact-min-details > a:hover strong {
  color: var(--site-accent, #35a958);
}

body .kts-contact-min-details i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #eaf6ed;
  color: var(--site-accent, #35a958);
  font-size: 12px;
}

body .kts-contact-min-details small,
body .kts-contact-min-details strong {
  display: block;
  overflow-wrap: anywhere;
}

body .kts-contact-min-details small {
  margin-bottom: 2px;
  color: #84928f;
  font-size: 10px;
  font-weight: 800;
}

body .kts-contact-min-details strong {
  color: var(--site-dark, #082646);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

body .kts-contact-min-note {
  display: grid;
  gap: 4px;
  margin-top: 32px;
  padding-top: 16px;
}

body .kts-contact-min-note strong {
  color: var(--site-dark, #082646);
  font-size: 12px;
  font-weight: 900;
}

body .kts-contact-min-note span {
  color: #687b75;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

body .kts-contact-min-process {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

body .kts-contact-min-process > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body .kts-contact-min-process > div > span {
  color: var(--site-accent, #35a958);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
}

body .kts-contact-min-process p {
  margin: 0;
}

body .kts-contact-min-process strong,
body .kts-contact-min-process small {
  display: block;
}

body .kts-contact-min-process strong {
  color: var(--site-dark, #082646);
  font-size: 12px;
  font-weight: 900;
}

body .kts-contact-min-process small {
  margin-top: 2px;
  color: #75847f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

body .kts-contact-min-form-area {
  padding-left: 8px;
}

body .kts-contact-min-form {
  margin-top: 28px;
}

body .kts-contact-min-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

body .kts-contact-min-form-grid > label {
  display: block;
  min-width: 0;
}

body .kts-contact-min-form-grid > label > span,
body .kts-contact-min-captcha label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--site-dark, #082646);
  font-size: 11px;
  font-weight: 900;
}

body .kts-contact-min-form-grid .xf-form-control {
  min-height: 48px;
  padding: 13px 14px;
  border: 0;
  border-radius: 6px;
  background: #f4faf6;
  color: var(--site-dark, #082646);
  box-shadow: none;
}

body .kts-contact-min-form-grid .xf-form-control:focus {
  border: 0;
  outline: 2px solid rgba(var(--site-accent-rgb, 53, 169, 88), .3);
  box-shadow: none;
}

body .kts-contact-min-form-grid textarea.xf-form-control {
  min-height: 132px;
  resize: vertical;
}

body .kts-contact-min-field-wide {
  grid-column: 1 / -1;
}

body .kts-contact-min-captcha {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: end;
  gap: 14px;
  grid-column: 1 / -1;
}

body .kts-contact-min-captcha .xf-captcha-box {
  border: 0;
  background: #f4faf6;
  box-shadow: none;
}

body .kts-contact-min-captcha .xf-captcha-refresh {
  border: 0;
  background: #e4f3e8;
  color: var(--site-accent, #35a958);
}

body .kts-contact-min-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  grid-column: 1 / -1;
}

body .kts-contact-min-submit > span {
  color: #789087;
  font-size: 11px;
  font-weight: 700;
}

body .kts-contact-min-submit > span i {
  margin-right: 7px;
  color: var(--site-accent, #35a958);
}

body .kts-contact-min-submit-button {
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--site-accent, #35a958);
  color: #fff;
  box-shadow: 0 12px 24px rgba(var(--site-accent-rgb, 53, 169, 88), .2);
}

body .kts-contact-min-submit-button:hover,
body .kts-contact-min-submit-button:focus {
  background: #188342;
}

body .kts-contact-min-map-section {
  padding: 0 0 86px;
  background: #f4faf6;
}

body .kts-contact-min-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

body .kts-contact-min-map-heading h2 {
  margin-bottom: 0;
}

body .kts-contact-min-map-heading p {
  max-width: 420px;
  text-align: right;
}

body .kts-contact-min-map {
  overflow: hidden;
  border-radius: 8px;
  background: #eaf5ee;
}

body .kts-contact-min-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

@media (max-width: 991.98px) {
  body .kts-contact-min-hero-grid,
  body .kts-contact-min-panel {
    grid-template-columns: 1fr;
  }

  body .kts-contact-min-hero-grid {
    gap: 42px;
  }

  body .kts-contact-min-panel {
    gap: 48px;
  }

  body .kts-contact-min-form-area {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  body .kts-contact-min-hero {
    padding: 18px 0 46px;
  }

  body .kts-contact-min-breadcrumb {
    margin-bottom: 38px;
  }

  body .kts-contact-min-hero h1 {
    margin-top: 14px;
    font-size: 36px;
  }

  body .kts-contact-min-hero-copy > p {
    font-size: 14px;
  }

  body .kts-contact-min-hero-meta {
    display: grid;
    gap: 16px;
    margin-top: 26px;
  }

  body .kts-contact-min-hero-image {
    height: 270px;
  }

  body .kts-contact-min-section {
    padding: 46px 0 58px;
  }

  body .kts-contact-min-panel {
    gap: 42px;
    padding: 30px 20px;
    border-radius: 8px;
  }

  body .kts-contact-min-office h2,
  body .kts-contact-min-form-area h2,
  body .kts-contact-min-map-heading h2 {
    font-size: 28px;
  }

  body .kts-contact-min-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body .kts-contact-min-field-wide,
  body .kts-contact-min-captcha,
  body .kts-contact-min-submit {
    grid-column: auto;
  }

  body .kts-contact-min-captcha {
    grid-template-columns: 1fr;
  }

  body .kts-contact-min-submit {
    align-items: stretch;
    flex-direction: column;
  }

  body .kts-contact-min-submit-button {
    width: 100%;
  }

  body .kts-contact-min-map-section {
    padding-bottom: 60px;
  }

  body .kts-contact-min-map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  body .kts-contact-min-map-heading p {
    text-align: left;
  }

  body .kts-contact-min-map iframe {
    min-height: 300px;
  }
}

/* Blog detail banner: a lightweight, wide image before the article content. */
body .xf-blog-detail-banner {
  padding: 28px 0 10px;
  background: #f7fbf8;
}

body .xf-blog-detail-banner-media {
  overflow: hidden;
  aspect-ratio: 1600 / 650;
  border-radius: 8px;
  background: #eaf5ee;
  box-shadow: 0 18px 38px rgba(6, 35, 59, .08);
}

body .xf-blog-detail-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

@media (max-width: 575.98px) {
  body .xf-blog-detail-banner {
    padding: 18px 0 6px;
  }

  body .xf-blog-detail-banner-media {
    aspect-ratio: 1.42;
  }

  body .xf-blog-detail-banner-media img {
    object-position: 68% center;
  }
}

/* Shared compact page-detail heading for interior pages. */
body .container {
  max-width: 1200px;
}

body .xf-sticky-nav-shell .xf-navbar > .container {
  max-width: 1200px;
}

body .xf-page-hero {
  padding: 34px 0 36px;
  background: #f7fbf8;
  border-bottom: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .16);
}

body .xf-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--site-dark, #082646);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

body .xf-page-hero-description {
  max-width: 760px;
  margin: 12px 0 0;
  color: #657b83;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

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

body .xf-page-hero .xf-breadcrumb ol {
  gap: 6px;
}

body .xf-page-hero .xf-breadcrumb li {
  color: #78908f;
  font-size: 12px;
  font-weight: 700;
}

body .xf-page-hero .xf-breadcrumb li + li::before {
  color: var(--site-accent, #35a958);
}

body .xf-page-hero .xf-breadcrumb a {
  color: var(--site-accent, #35a958);
}

body .kts-region-hub-map-strip {
  padding: 30px 0 0;
  background: #f7fbf8;
}

body .kts-region-hub-list {
  padding-top: 42px;
}

body .kts-region-hub-map-strip .kts-region-hub-map-shell {
  min-height: 0;
  border: 1px solid #d9e9df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 35, 59, .08);
}

body .kts-region-hub-map-strip .kts-region-hub-map {
  min-height: 240px;
}

/* Contact page final simplification: direct details, form, then map. */
body .kts-contact-min-section {
  padding: 42px 0 58px;
}

body .kts-contact-min-panel {
  grid-template-columns: minmax(220px, .58fr) minmax(0, 1.42fr);
  gap: 64px;
  padding: 42px 48px;
}

body .kts-contact-min-details {
  margin-top: 0;
  gap: 22px;
}

body .kts-contact-min-form-area {
  padding-left: 0;
}

body .kts-contact-min-form-area h2 {
  margin: 0 0 24px;
  font-size: 30px;
}

body .kts-contact-min-form {
  margin-top: 0;
}

body .kts-contact-min-submit {
  justify-content: flex-end;
}

body .kts-contact-min-map-section {
  padding: 0 0 64px;
}

body .kts-contact-min-map-heading {
  display: none;
}

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

  body .xf-page-hero h1 {
    font-size: 32px;
  }

  body .xf-page-hero-description {
    margin-top: 10px;
    font-size: 14px;
  }

  body .kts-region-hub-map-strip {
    padding-top: 20px;
  }

  body .kts-region-hub-list {
    padding-top: 28px;
  }

  body .kts-region-hub-map-strip .kts-region-hub-map {
    min-height: 180px;
  }
}

@media (max-width: 575.98px) {
  body .kts-contact-min-section {
    padding: 30px 0 46px;
  }

  body .kts-contact-min-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px 20px;
  }

  body .kts-contact-min-form-area h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  body .kts-contact-min-map-section {
    padding-bottom: 48px;
  }
}

/* TemizLIFE contact page final layer: green corporate request flow. */
.kts-contact-hero {
  position: relative;
  overflow: hidden;
  color: var(--site-dark, #082646);
  background:
    linear-gradient(180deg, #f6fbf8 0%, #fff 70%, #f7fbf8 100%);
}

.kts-contact-hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 58%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(var(--site-accent-rgb, 53, 169, 88), .12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.kts-contact-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: 52px;
  min-height: 0;
  padding: 64px 0 28px;
  align-items: center;
}

.kts-contact-hero-copy {
  max-width: 690px;
  padding: 0;
}

.kts-contact-breadcrumb {
  margin-bottom: 28px;
  color: #65758c;
}

.kts-contact-breadcrumb a {
  color: var(--site-accent, #35a958);
}

.kts-contact-breadcrumb a:hover {
  color: var(--site-dark, #082646);
}

.kts-contact-breadcrumb i {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .62);
}

.kts-contact-eyebrow,
.kts-contact-section-label {
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .2);
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  color: var(--site-accent, #35a958);
  font-size: 11px;
  letter-spacing: 0;
}

.kts-contact-eyebrow i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--site-accent, #35a958);
  font-size: 12px;
}

.kts-contact-hero h1 {
  max-width: 680px;
  margin: 18px 0 18px;
  color: var(--site-dark, #082646);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.03;
}

.kts-contact-hero h1 span {
  display: block;
  color: var(--site-accent, #35a958);
}

.kts-contact-hero-copy > p {
  max-width: 610px;
  color: #5f7087;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.78;
}

.kts-contact-hero-actions {
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.kts-contact-call,
.kts-contact-response {
  min-height: 58px;
  border-radius: 12px;
}

.kts-contact-call {
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .28);
  background: var(--site-accent, #35a958);
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb, 53, 169, 88), .24);
}

.kts-contact-call:hover {
  background: #188342;
  transform: translateY(-2px);
}

.kts-contact-response {
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(192, 220, 204, .82);
  background: rgba(255, 255, 255, .9);
  color: var(--site-dark, #082646);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .07);
}

.kts-contact-call > i,
.kts-contact-response > i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.kts-contact-call > i {
  background: rgba(255, 255, 255, .18);
}

.kts-contact-response > i {
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .1);
  color: var(--site-accent, #35a958);
}

.kts-contact-response small {
  color: #6b7a90;
}

.kts-contact-hero-visual {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 20px;
  background: #eaf5ee;
  box-shadow: 0 26px 62px rgba(6, 35, 59, .14);
}

.kts-contact-hero-visual::after {
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(8, 38, 70, 0), rgba(8, 38, 70, .58));
}

.kts-contact-hero-visual img {
  height: 100%;
  min-height: 430px;
  object-position: center;
  opacity: 1;
}

.kts-contact-hero-ring {
  display: none;
}

.kts-contact-hero-tag,
.kts-contact-hero-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .92);
  color: var(--site-dark, #082646);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .14);
  backdrop-filter: blur(10px);
}

.kts-contact-hero-tag {
  right: 22px;
  bottom: 22px;
  border-radius: 999px;
  color: var(--site-dark, #082646);
}

.kts-contact-hero-tag i {
  color: var(--site-accent, #35a958);
}

.kts-contact-hero-card {
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 16px;
}

.kts-contact-hero-card strong {
  color: var(--site-accent, #35a958);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.kts-contact-hero-card small {
  margin-top: 4px;
  color: #5f7087;
  font-size: 12px;
  font-weight: 800;
}

.kts-contact-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 64px;
}

.kts-contact-step {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 93% 10%, rgba(var(--site-accent-rgb, 53, 169, 88), .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafffc 100%);
  box-shadow: 0 20px 46px rgba(6, 35, 59, .08);
}

.kts-contact-step span,
.kts-contact-step strong,
.kts-contact-step small {
  display: block;
}

.kts-contact-step span {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .72);
  font-size: 12px;
  font-weight: 900;
}

.kts-contact-step strong {
  margin-top: 11px;
  color: var(--site-dark, #082646);
  font-size: 17px;
  font-weight: 900;
}

.kts-contact-step small {
  margin-top: 7px;
  color: #607187;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
}

.kts-contact-section {
  padding: 76px 0 86px;
  background:
    linear-gradient(180deg, #fff 0%, #f6fbf8 100%);
}

.kts-contact-layout {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
}

.kts-contact-rail {
  padding-top: 8px;
}

.kts-contact-rail h2,
.kts-contact-form-heading h2,
.kts-contact-map-heading h2 {
  color: var(--site-dark, #082646);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900;
}

.kts-contact-rail > p,
.kts-contact-form-heading p,
.kts-contact-map-heading p {
  color: #617189;
  font-size: 14px;
  font-weight: 600;
}

.kts-contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  border-top: 0;
}

.kts-contact-info-item {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 35, 59, .06);
}

.kts-contact-info-item strong {
  color: var(--site-dark, #082646);
  font-size: 14px;
}

a.kts-contact-info-item:hover {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .42);
  transform: translateY(-2px);
}

a.kts-contact-info-item:hover strong {
  color: var(--site-accent, #35a958);
}

.kts-contact-info-icon {
  width: 46px;
  height: 46px;
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .18);
  border-radius: 12px;
  color: var(--site-accent, #35a958);
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .09);
}

.kts-contact-info-arrow {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .65);
}

.kts-contact-emergency {
  gap: 13px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .22);
  border-left: 4px solid var(--site-accent, #35a958);
  border-radius: 16px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
}

.kts-contact-emergency-icon {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  background: var(--site-accent, #35a958);
}

.kts-contact-emergency strong {
  color: var(--site-dark, #082646);
  font-size: 13px;
}

.kts-contact-emergency small {
  color: #65758c;
  font-size: 12px;
}

.kts-contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(192, 220, 204, .9);
  border-top: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 8%, rgba(var(--site-accent-rgb, 53, 169, 88), .14), transparent 26%),
    #fff;
  box-shadow: 0 26px 62px rgba(6, 35, 59, .1);
}

.kts-contact-form-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--site-accent, #35a958), #8fcf4e);
  content: "";
}

.kts-contact-form-heading {
  position: relative;
  z-index: 1;
}

.kts-contact-form-grid {
  position: relative;
  z-index: 1;
}

.kts-contact-field > span {
  color: var(--site-dark, #082646);
  font-size: 12px;
}

.kts-contact-field .xf-form-control {
  min-height: 54px;
  border: 1px solid #dce9e1;
  border-radius: 12px;
  background: #fbfefd;
  color: var(--site-dark, #082646);
}

.kts-contact-field .xf-form-control:focus {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .72);
  box-shadow: 0 0 0 4px rgba(var(--site-accent-rgb, 53, 169, 88), .12);
}

.kts-contact-field textarea.xf-form-control {
  min-height: 146px;
}

.kts-contact-captcha .xf-captcha-box {
  border-color: rgba(192, 220, 204, .9);
  border-radius: 14px;
  background: #f7fbf8;
}

.kts-contact-submit {
  padding-top: 4px;
}

.kts-contact-submit p {
  color: #65758c;
  font-weight: 700;
}

.kts-contact-submit p i {
  color: var(--site-accent, #35a958);
}

.kts-contact-submit-button {
  min-height: 52px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--site-accent, #35a958);
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb, 53, 169, 88), .24);
}

.kts-contact-submit-button:hover,
.kts-contact-submit-button:focus {
  background: #188342;
}

.kts-contact-map-section {
  padding: 0 0 88px;
  background: #f6fbf8;
}

.kts-contact-map-heading {
  align-items: center;
  margin-bottom: 24px;
  padding-top: 0;
  border-top: 0;
}

.kts-contact-map-heading p {
  max-width: 430px;
}

.kts-contact-map {
  border: 1px solid rgba(192, 220, 204, .9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(6, 35, 59, .09);
}

.kts-contact-map iframe {
  min-height: 430px;
}

@media (max-width: 991.98px) {
  .kts-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 22px;
  }

  .kts-contact-hero h1 {
    font-size: 44px;
  }

  .kts-contact-hero-visual {
    min-height: 330px;
  }

  .kts-contact-hero-visual img {
    min-height: 330px;
  }

  .kts-contact-steps {
    grid-template-columns: 1fr;
    padding-bottom: 52px;
  }

  .kts-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .kts-contact-hero-grid {
    padding: 34px 0 18px;
  }

  .kts-contact-breadcrumb {
    margin-bottom: 20px;
  }

  .kts-contact-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .kts-contact-hero-copy > p {
    font-size: 14px;
  }

  .kts-contact-call,
  .kts-contact-response {
    width: 100%;
  }

  .kts-contact-hero-visual,
  .kts-contact-hero-visual img {
    min-height: 286px;
  }

  .kts-contact-hero-card {
    left: 14px;
    bottom: 14px;
    max-width: 174px;
    padding: 11px 12px;
  }

  .kts-contact-hero-tag {
    right: 14px;
    bottom: 14px;
    max-width: 160px;
  }

  .kts-contact-steps {
    gap: 12px;
    padding-bottom: 40px;
  }

  .kts-contact-step {
    padding: 18px;
    border-radius: 16px;
  }

  .kts-contact-section {
    padding: 52px 0 60px;
  }

  .kts-contact-info-item {
    border-radius: 14px;
  }

  .kts-contact-form-panel {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .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;
  }

  .kts-contact-map-heading p {
    text-align: left;
  }

  .kts-contact-map iframe {
    min-height: 320px;
  }
}

/* TemizLIFE home blog final layer: compact image crop without distortion. */
#blog.kts-blog-section .kts-blog-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(198, 216, 207, .82);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 35, 59, .08);
}

#blog.kts-blog-section .kts-blog-image {
  position: relative;
  display: block;
  aspect-ratio: 2.15 / 1;
  min-height: 0;
  overflow: hidden;
  background: #eef7f1;
}

#blog.kts-blog-section .kts-blog-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

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

#blog.kts-blog-section .kts-blog-body {
  display: flex;
  min-height: 132px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 20px 20px;
}

#blog.kts-blog-section .kts-blog-card h3 {
  margin: 0;
  color: var(--site-dark, #092243);
  font-size: 15px;
  line-height: 1.35;
}

#blog.kts-blog-section .kts-blog-body time {
  display: block;
  margin: 14px 0 0;
  color: #8a98aa;
  font-size: 12px;
  font-weight: 600;
}

#blog.kts-blog-section .kts-blog-body .kts-text-link {
  float: none;
  align-self: flex-end;
  margin-top: auto;
  color: var(--site-accent, #38b058);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  #blog.kts-blog-section .kts-blog-image {
    aspect-ratio: 2.08 / 1;
  }
}

@media (max-width: 575.98px) {
  #blog.kts-blog-section .kts-blog-image {
    aspect-ratio: 2 / 1;
  }

  #blog.kts-blog-section .kts-blog-body {
    min-height: 126px;
    padding: 16px 17px 18px;
  }

  #blog.kts-blog-section .kts-blog-card h3 {
    font-size: 14px;
  }
}

/* TemizLIFE testimonials final layer: overrides legacy static review grid. */
#yorumlar.kts-testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    radial-gradient(circle at 14% 22%, rgba(var(--site-accent-rgb, 56, 176, 88), .1), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6fbf8 46%, #fff 100%);
}

#yorumlar.kts-testimonials-section::before {
  position: absolute;
  top: 108px;
  left: 50%;
  width: min(1100px, calc(100% - 28px));
  height: 210px;
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb, 56, 176, 88), .08);
  filter: blur(44px);
  transform: translateX(-50%);
  content: "";
  pointer-events: none;
}

#yorumlar.kts-testimonials-section .container {
  position: relative;
  z-index: 1;
}

#yorumlar.kts-testimonials-section .kts-section-heading {
  max-width: 690px;
  margin: 0 auto 28px;
}

#yorumlar.kts-testimonials-section .kts-carousel-shell {
  position: relative;
  margin: 0 -10px;
  padding: 6px 60px 12px;
}

#yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 22px;
  overflow-x: auto !important;
  overflow-y: visible;
  padding: 16px 4px 28px;
  scroll-behavior: smooth;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

#yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track::-webkit-scrollbar {
  height: 8px;
}

#yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(8, 43, 74, .06);
}

#yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb, 56, 176, 88), .58);
}

#yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track .kts-carousel-item {
  min-width: 0;
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}

#yorumlar.kts-testimonials-section .kts-testimonial-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 288px;
  flex-direction: column;
  overflow: hidden;
  padding: 25px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 93% 8%, rgba(var(--site-accent-rgb, 56, 176, 88), .15), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fafffc 100%);
  box-shadow: 0 22px 52px rgba(6, 35, 59, .09);
  text-align: left;
}

#yorumlar.kts-testimonials-section .kts-testimonial-card::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 138px;
  height: 138px;
  border: 22px solid rgba(var(--site-accent-rgb, 56, 176, 88), .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

#yorumlar.kts-testimonials-section .kts-testimonial-card:hover {
  border-color: rgba(var(--site-accent-rgb, 56, 176, 88), .42);
  box-shadow: 0 26px 60px rgba(6, 35, 59, .12);
  transform: translateY(-3px);
}

#yorumlar.kts-testimonials-section .kts-testimonial-top,
#yorumlar.kts-testimonials-section .kts-testimonial-person,
#yorumlar.kts-testimonials-section .kts-testimonial-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

#yorumlar.kts-testimonials-section .kts-testimonial-top {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

#yorumlar.kts-testimonials-section .kts-testimonial-person {
  min-width: 0;
  gap: 12px;
}

#yorumlar.kts-testimonials-section .kts-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--site-accent, #38b058), #93cf4f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(var(--site-accent-rgb, 56, 176, 88), .22);
  font-size: 21px;
  font-weight: 900;
}

#yorumlar.kts-testimonials-section .kts-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#yorumlar.kts-testimonials-section .kts-testimonial-person strong,
#yorumlar.kts-testimonials-section .kts-testimonial-person small {
  display: block;
}

#yorumlar.kts-testimonials-section .kts-testimonial-person strong {
  overflow: hidden;
  color: var(--site-dark, #092243);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#yorumlar.kts-testimonials-section .kts-testimonial-person small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: #65758c;
  font-size: 12px;
  font-weight: 700;
}

#yorumlar.kts-testimonials-section .kts-testimonial-person small i {
  color: var(--site-accent, #38b058);
  font-size: 11px;
}

#yorumlar.kts-testimonials-section .kts-testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 194, 13, .15);
  color: #b87900;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

#yorumlar.kts-testimonials-section .kts-testimonial-rating i,
#yorumlar.kts-testimonials-section .kts-stars {
  color: #ffc20d;
}

#yorumlar.kts-testimonials-section .kts-quote-mark {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 32px;
  color: var(--site-accent, #38b058);
  font-size: 62px;
  font-weight: 900;
  line-height: .64;
}

#yorumlar.kts-testimonials-section .kts-testimonial-card p {
  position: relative;
  z-index: 1;
  min-height: 90px;
  margin: 9px 0 18px;
  color: #405169;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.74;
}

#yorumlar.kts-testimonials-section .kts-review-more {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin: -8px 0 14px;
  border: 0;
  background: transparent;
  color: var(--site-accent, #38b058);
  font-size: 12px;
  font-weight: 900;
}

#yorumlar.kts-testimonials-section .kts-testimonial-bottom {
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 43, 74, .08);
}

#yorumlar.kts-testimonials-section .kts-stars {
  display: inline-flex;
  gap: 3px;
  margin: 0;
  font-size: 13px;
}

#yorumlar.kts-testimonials-section .kts-stars .is-muted {
  color: #d8e0e9;
}

#yorumlar.kts-testimonials-section .kts-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--site-dark, #092243);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

#yorumlar.kts-testimonials-section .kts-verified i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--site-accent, #38b058);
  color: #fff;
  font-size: 8px;
}

#yorumlar.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(var(--site-accent-rgb, 56, 176, 88), .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--site-accent, #38b058);
  box-shadow: 0 18px 34px rgba(6, 35, 59, .12);
  transform: translateY(-50%);
}

#yorumlar.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn:hover,
#yorumlar.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn:focus-visible {
  border-color: var(--site-accent, #38b058);
  background: var(--site-accent, #38b058);
  color: #fff;
}

#yorumlar.kts-testimonials-section .kts-carousel-shell .xf-scroll-prev {
  left: 4px;
}

#yorumlar.kts-testimonials-section .kts-carousel-shell .xf-scroll-next {
  right: 4px;
}

@media (max-width: 991.98px) {
  #yorumlar.kts-testimonials-section {
    padding: 48px 0 54px;
  }

  #yorumlar.kts-testimonials-section .kts-carousel-shell {
    margin: 0 -8px;
    padding-right: 44px;
    padding-left: 44px;
  }

  #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track .kts-carousel-item {
    flex-basis: 76%;
  }
}

@media (max-width: 575.98px) {
  #yorumlar.kts-testimonials-section {
    padding: 42px 0 46px;
  }

  #yorumlar.kts-testimonials-section .kts-carousel-shell {
    margin: 0 -8px;
    padding: 0 12px 4px;
  }

  #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track {
    gap: 14px;
    padding: 12px 0 20px;
  }

  #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track .kts-carousel-item {
    flex-basis: 88%;
  }

  #yorumlar.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn {
    display: none !important;
  }

  #yorumlar.kts-testimonials-section .kts-testimonial-card {
    min-height: 266px;
    padding: 20px;
    border-radius: 16px;
  }

  #yorumlar.kts-testimonials-section .kts-testimonial-top {
    align-items: flex-start;
  }

  #yorumlar.kts-testimonials-section .kts-testimonial-card p {
    font-size: 13px;
    line-height: 1.68;
  }
}

/* TemizLIFE homepage testimonials: modern admin-driven carousel. */
.kts-testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 58px;
  background:
    linear-gradient(180deg, #fff 0%, var(--site-light) 52%, #fff 100%);
}

.kts-testimonials-section::before {
  position: absolute;
  top: 86px;
  left: 50%;
  width: min(1040px, calc(100% - 32px));
  height: 160px;
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb), .08);
  filter: blur(46px);
  transform: translateX(-50%);
  content: "";
  pointer-events: none;
}

.kts-testimonials-section .container {
  position: relative;
  z-index: 1;
}

.kts-testimonials-section .kts-section-heading {
  max-width: 640px;
  margin: 0 auto 28px;
}

.kts-testimonials-section .kts-carousel-shell {
  position: relative;
  margin: 0 -12px;
  padding: 6px 58px 10px;
}

.kts-testimonials-section .kts-testimonial-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 22px;
  overflow-x: auto !important;
  overflow-y: visible;
  padding: 14px 4px 24px;
  scroll-behavior: smooth;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.kts-testimonials-section .kts-testimonial-track::-webkit-scrollbar {
  height: 8px;
}

.kts-testimonials-section .kts-testimonial-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(8, 43, 74, .06);
}

.kts-testimonials-section .kts-testimonial-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb), .55);
}

.kts-testimonials-section .kts-testimonial-track .kts-carousel-item {
  min-width: 0;
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}

.kts-testimonials-section .kts-testimonial-card {
  position: relative;
  display: flex;
  min-height: 268px;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(197, 217, 208, .72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(var(--site-accent-rgb), .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafffc 100%);
  box-shadow: 0 24px 52px rgba(6, 35, 59, .09);
  text-align: left;
}

.kts-testimonials-section .kts-testimonial-card::after {
  position: absolute;
  right: -32px;
  bottom: -44px;
  width: 128px;
  height: 128px;
  border: 22px solid rgba(var(--site-accent-rgb), .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.kts-testimonial-top,
.kts-testimonial-person,
.kts-testimonial-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.kts-testimonial-top {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.kts-testimonial-person {
  min-width: 0;
  gap: 12px;
}

.kts-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--site-accent), #8fcf4e);
  color: #fff;
  box-shadow: 0 12px 24px rgba(var(--site-accent-rgb), .22);
  font-size: 21px;
  font-weight: 800;
}

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

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

.kts-testimonial-person strong {
  color: var(--kts-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.kts-testimonial-person small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: var(--kts-muted);
  font-size: 12px;
  font-weight: 600;
}

.kts-testimonial-person small i {
  color: var(--site-accent);
  font-size: 11px;
}

.kts-testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 194, 13, .15);
  color: #b87900;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.kts-testimonial-rating i,
.kts-testimonials-section .kts-stars {
  color: #ffc20d;
}

.kts-testimonials-section .kts-quote-mark {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 32px;
  color: var(--site-accent);
  font-size: 60px;
  font-weight: 800;
  line-height: .65;
}

.kts-testimonials-section .kts-testimonial-card p {
  position: relative;
  z-index: 1;
  min-height: 82px;
  margin: 8px 0 18px;
  color: #41536a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.kts-testimonials-section .kts-review-more {
  position: relative;
  z-index: 1;
  margin: -7px 0 14px;
  color: var(--site-accent);
}

.kts-testimonial-bottom {
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 43, 74, .08);
}

.kts-testimonials-section .kts-stars {
  margin: 0;
  font-size: 13px;
}

.kts-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--site-dark);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.kts-verified i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--site-accent);
  color: #fff;
  font-size: 8px;
}

.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--site-accent-rgb), .28);
  border-radius: 50%;
  background: #fff;
  color: var(--site-accent);
  box-shadow: 0 18px 34px rgba(6, 35, 59, .12);
  transform: translateY(-50%);
}

.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn:hover,
.kts-testimonials-section .kts-carousel-shell .xf-scroll-btn:focus-visible {
  border-color: var(--site-accent);
  background: var(--site-accent);
  color: #fff;
}

.kts-testimonials-section .kts-carousel-shell .xf-scroll-prev {
  left: 0;
}

.kts-testimonials-section .kts-carousel-shell .xf-scroll-next {
  right: 0;
}

@media (max-width: 991.98px) {
  .kts-testimonials-section .kts-carousel-shell {
    padding-right: 44px;
    padding-left: 44px;
  }

  .kts-testimonials-section .kts-testimonial-track .kts-carousel-item {
    flex-basis: 76%;
  }
}

@media (max-width: 575.98px) {
  .kts-testimonials-section {
    padding: 42px 0 44px;
  }

  .kts-testimonials-section .kts-carousel-shell {
    margin: 0 -8px;
    padding: 0 12px 4px;
  }

  .kts-testimonials-section .kts-testimonial-track {
    gap: 14px;
    padding: 12px 0 20px;
  }

  .kts-testimonials-section .kts-testimonial-track .kts-carousel-item {
    flex-basis: 88%;
  }

  .kts-testimonials-section .kts-carousel-shell .xf-scroll-btn {
    display: none !important;
  }

  .kts-testimonials-section .kts-testimonial-card {
    min-height: 254px;
    padding: 20px;
    border-radius: 16px;
  }

  .kts-testimonial-top {
    align-items: flex-start;
  }

  .kts-testimonial-rating {
    padding: 6px 9px;
  }

  .kts-testimonials-section .kts-testimonial-card p {
    font-size: 13px;
  }
}

/* TemizLIFE final QA layer: keep the reference-like cleaning homepage above older service skins. */
.xf-sticky-nav-shell,
.xf-sticky-nav-shell.is-scrolled {
  background: rgba(255, 255, 255, .98) !important;
  border-bottom: 1px solid rgba(226, 234, 240, .8);
  box-shadow: 0 10px 24px rgba(6, 35, 59, .045);
}

.xf-sticky-nav-shell .xf-navbar,
.xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 76px;
  background: transparent;
  box-shadow: none;
}

.xf-sticky-nav-shell .xf-navbar .nav-link,
.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: auto;
  padding: 26px 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--kts-text);
  font-size: 12px;
  font-weight: 700;
}

.xf-sticky-nav-shell .xf-navbar .nav-link:hover,
.xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible,
.xf-sticky-nav-shell .xf-navbar .nav-link.active,
.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link.active {
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--kts-green) !important;
  box-shadow: none !important;
}

.xf-sticky-nav-shell .xf-nav-icon,
.xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  display: none;
}

.kts-services-section .container,
.kts-about-section-v2 .container,
.kts-regions-section .container,
.kts-testimonials-section .container,
.kts-blog-section .container {
  max-width: 1200px;
}

.kts-services-section .kts-service-card {
  overflow: hidden;
  min-height: 246px;
  padding: 28px 22px 23px;
  border: 1px solid var(--kts-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(12, 46, 76, .07);
  text-align: center;
}

.kts-services-section .kts-service-card::before,
.kts-services-section .kts-service-card::after {
  display: none;
}

.kts-services-section .kts-service-card:hover {
  border-color: rgba(var(--kts-green-rgb), .34);
  box-shadow: 0 18px 34px rgba(12, 46, 76, .11);
  transform: translateY(-3px);
}

.kts-services-section .kts-service-card .kts-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 17px;
  border: 0;
  border-radius: 50%;
  background: var(--kts-green-soft);
  box-shadow: none;
  color: var(--kts-green);
}

.kts-services-section .kts-service-card .kts-service-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: none;
}

.kts-services-section .kts-service-card .kts-service-icon i {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--kts-green-soft);
  color: var(--kts-green);
  font-size: 30px;
}

.kts-services-section .kts-service-card h3,
.kts-services-section .kts-service-card p {
  position: relative;
  z-index: 1;
  text-align: center;
}

.kts-services-section .kts-service-card h3 {
  font-size: 15px;
  line-height: 1.25;
}

.kts-services-section .kts-service-card p {
  display: -webkit-box;
  min-height: 56px;
  margin-top: 11px;
  overflow: hidden;
  color: var(--kts-muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.kts-about-section-v2 {
  padding: 54px 0 50px;
  background: #fff;
}

.kts-about-section-v2::before,
.kts-about-visual-v2::before,
.kts-about-image-v2::after {
  display: none;
}

.kts-about-section-v2 .kts-about-feature {
  grid-template-columns: minmax(320px, 455px) minmax(0, 1fr);
  gap: 70px;
}

.kts-about-section-v2 .kts-about-visual-v2 {
  min-height: 0;
  padding: 0;
}

.kts-about-section-v2 .kts-about-image-v2 {
  width: 100%;
  height: auto;
  aspect-ratio: 1.72 / 1;
  border-radius: 14px;
  background: var(--kts-pale);
}

.kts-about-section-v2 .kts-about-visual-label {
  top: auto;
  right: 34px;
  bottom: -18px;
  align-items: center;
  min-width: 128px;
  min-height: 92px;
  padding: 15px 18px;
  border-radius: 12px;
  color: var(--kts-green-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 35, 59, .14);
  text-align: center;
}

.kts-about-section-v2 .kts-about-visual-label strong {
  color: #7fc33a;
  font-size: 40px;
  line-height: 1;
}

.kts-about-section-v2 .kts-about-visual-label span {
  margin-top: 5px;
  color: var(--kts-green-dark);
  font-size: 12px;
}

.kts-about-section-v2 .kts-about-copy-v2 h2 {
  color: var(--kts-text);
  font-size: 32px;
  line-height: 1.18;
}

.kts-about-section-v2 .kts-about-copy-v2 h2 span {
  color: var(--kts-green);
}

.kts-about-section-v2 .kts-about-actions-v2 {
  display: none;
}

.kts-region-copy h2 {
  white-space: normal;
}

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

  .xf-sticky-nav-shell .xf-navbar .nav-link,
  .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    min-height: 44px;
    padding: 8px 10px !important;
  }

  .kts-service-showcase,
  .kts-about-section-v2 .kts-about-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .kts-about-section-v2 .kts-about-visual-v2 {
    max-width: 560px;
  }
}

@media (max-width: 575.98px) {
  .kts-services-section .kts-service-card {
    min-height: 0;
  }

  .kts-service-grid {
    grid-template-columns: 1fr;
  }

  .kts-about-section-v2 {
    padding: 42px 0 44px;
  }

  .kts-about-section-v2 .kts-about-image-v2 {
    aspect-ratio: 1.35 / 1;
  }

  .kts-about-section-v2 .kts-about-visual-label {
    right: 18px;
    bottom: -14px;
    min-width: 112px;
    min-height: 82px;
  }

  .kts-about-section-v2 .kts-about-visual-label strong {
    font-size: 34px;
  }

  .kts-region-panel {
    display: block;
  }

  .kts-region-copy {
    width: auto;
    min-width: 0;
    padding: 24px 22px 18px;
  }

  .kts-region-map {
    position: relative;
    inset: auto;
    height: 180px;
  }
}

@media (min-width: 768px) {
  .xf-floating-contact {
    display: none !important;
  }
}

/* Admin-color hero carousel controls. */
.kts-hero-carousel .kts-hero-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(var(--site-accent-rgb), .32) !important;
  border-radius: 50% !important;
  background: var(--site-accent) !important;
  color: var(--site-surface) !important;
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb), .24);
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kts-hero-carousel .kts-hero-arrow:hover,
.kts-hero-carousel .kts-hero-arrow:focus-visible {
  border-color: var(--site-dark) !important;
  background: var(--site-dark) !important;
  color: var(--site-surface) !important;
  box-shadow: 0 18px 38px rgba(6, 35, 59, .26);
  transform: translateY(-50%) scale(1.04);
}

.kts-hero-carousel .kts-hero-arrow i {
  color: inherit;
  font-size: 16px;
}

.kts-hero-carousel .kts-hero-prev {
  left: 24px;
}

.kts-hero-carousel .kts-hero-next {
  right: 24px;
}

.kts-hero-carousel .kts-hero-dot {
  border: 1px solid rgba(var(--site-accent-rgb), .3);
  background: rgba(255, 255, 255, .88);
}

.kts-hero-carousel .kts-hero-dot.is-active {
  border-color: var(--site-accent);
  background: var(--site-accent);
}

@media (max-width: 575.98px) {
  .kts-hero-carousel .kts-hero-arrow {
    width: 42px;
    height: 42px;
  }

  .kts-hero-carousel .kts-hero-prev {
    left: 12px;
  }

  .kts-hero-carousel .kts-hero-next {
    right: 12px;
  }
}

/* TemizLIFE cleaning-company redesign overrides. */
:root {
  --kts-green: var(--site-accent, #35a958);
  --kts-green-rgb: var(--site-accent-rgb, 53, 169, 88);
  --kts-green-dark: #188342;
  --kts-green-soft: rgba(var(--kts-green-rgb), .12);
  --kts-navy: var(--site-dark, #082b4a);
  --kts-text: #092343;
  --kts-muted: #607083;
  --kts-line: #e2eaf0;
  --kts-pale: var(--site-light, #f4faf6);
  --kts-blue: var(--kts-green);
  --kts-orange: #f6c21a;
}

body {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--kts-text);
  background: #fff;
}

.container {
  max-width: 1060px;
}

.kts-topbar {
  display: none;
}

.xf-sticky-nav-shell {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(229, 238, 235, .86);
  box-shadow: 0 12px 26px rgba(6, 35, 59, .04);
  backdrop-filter: blur(14px);
}

.xf-sticky-nav-shell .xf-navbar,
.xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 76px;
  background: transparent;
  box-shadow: none;
}

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

.xf-sticky-nav-shell .kts-brand,
.xf-sticky-nav-shell.is-scrolled .kts-brand {
  width: 178px;
  min-width: 178px;
  flex: 0 0 178px;
}

.xf-sticky-nav-shell .kts-brand img,
.xf-sticky-nav-shell.is-scrolled .kts-brand img {
  width: 178px;
  height: 56px;
  object-fit: contain;
}

.xf-sticky-nav-shell .navbar-nav {
  gap: 18px;
}

.xf-sticky-nav-shell .xf-navbar .nav-link,
.xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: auto;
  padding: 26px 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--kts-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.xf-sticky-nav-shell .xf-navbar .nav-link:hover,
.xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible,
.xf-sticky-nav-shell .xf-navbar .nav-link.active {
  background: transparent;
  color: var(--kts-green);
  box-shadow: none;
}

.xf-sticky-nav-shell .xf-nav-icon {
  display: none;
}

.xf-sticky-nav-shell .xf-nav-chevron {
  color: var(--kts-green);
  font-size: 10px;
}

.xf-sticky-nav-shell .dropdown-menu {
  min-width: 222px;
  padding: 9px;
  border: 1px solid var(--kts-line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(6, 35, 59, .12);
}

.xf-sticky-nav-shell .dropdown-item {
  border-radius: 6px;
  color: var(--kts-text);
  font-size: 12px;
}

.xf-sticky-nav-shell .dropdown-item i {
  color: var(--kts-green);
}

.xf-sticky-nav-shell .dropdown-item:hover,
.xf-sticky-nav-shell .dropdown-item:focus {
  background: var(--kts-green-soft);
  color: var(--kts-green-dark);
}

.kts-nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  color: var(--kts-text);
}

.kts-nav-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  border: 2px solid var(--kts-green);
  border-radius: 50%;
  color: var(--kts-green);
  font-size: 15px;
}

.kts-nav-contact-text small,
.kts-nav-contact-text strong {
  display: block;
  line-height: 1.15;
}

.kts-nav-contact-text small {
  color: var(--kts-green);
  font-size: 11px;
  font-weight: 800;
}

.kts-nav-contact-text strong {
  margin-top: 2px;
  color: #050e1e;
  font-size: 17px;
  font-weight: 800;
}

.kts-hero-carousel {
  background: #eef6f8;
}

.kts-hero {
  position: relative;
  min-height: 437px;
  overflow: hidden;
  border-radius: 0 0 0 0;
  background-color: #eef6f8;
  background-position: center center;
  background-size: cover;
}

.kts-hero::before {
  display: none;
}

.kts-hero-inner {
  min-height: 437px;
}

.kts-hero-carousel.has-controls .kts-hero-copy,
.kts-hero-copy {
  width: 52%;
  max-width: 560px;
  padding: 38px 0 48px;
  color: var(--kts-text);
}

.kts-hero-badge {
  display: none;
}

.kts-hero h1 {
  max-width: 520px;
  margin: 0 0 15px;
  color: var(--kts-text);
  font-size: 39px;
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
}

.kts-hero h1 span {
  display: block;
  margin-top: 2px;
  color: var(--kts-green);
  font-family: "Caveat", cursive;
  font-size: 58px;
  font-weight: 600;
  line-height: .88;
  text-transform: none;
}

.kts-hero p {
  max-width: 430px;
  color: var(--kts-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.kts-hero-actions {
  margin-top: 22px;
  order: 3;
}

.kts-hero-actions .kts-btn-outline {
  display: none;
}

.kts-btn,
.kts-nav-contact,
.kts-service-card,
.kts-testimonial-card,
.kts-blog-card {
  border-radius: 8px;
}

.kts-btn {
  min-height: 43px;
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 12px;
  text-transform: none;
}

.kts-btn-primary {
  border-color: var(--kts-green);
  background: var(--kts-green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(var(--kts-green-rgb), .2);
}

.kts-btn-primary:hover,
.kts-btn-outline-blue:hover {
  border-color: var(--kts-green-dark);
  background: var(--kts-green-dark);
  color: #fff;
}

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

.kts-hero-features {
  gap: 22px;
  margin-top: 18px;
  color: var(--kts-text);
}

.kts-hero-feature {
  gap: 8px;
  max-width: none;
}

.kts-feature-icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border: 0;
  color: var(--kts-text);
  font-size: 15px;
}

.kts-hero-feature strong {
  color: var(--kts-text);
  font-size: 12px;
  font-weight: 500;
}

.kts-hero-feature small {
  display: none;
}

.kts-hero-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--kts-text);
  box-shadow: 0 12px 30px rgba(6, 35, 59, .12);
}

.kts-hero-arrow:hover,
.kts-hero-arrow:focus {
  background: var(--kts-green);
  color: #fff;
}

.kts-hero-prev {
  left: 18px;
}

.kts-hero-next {
  right: 18px;
}

.kts-hero-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .82);
}

.kts-hero-dot.is-active {
  width: 8px;
  border-radius: 50%;
  background: var(--kts-green);
}

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

.kts-service-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.kts-services-intro h2,
.kts-about-copy-v2 h2,
.kts-region-copy h2,
.kts-section-heading h2 {
  color: var(--kts-text);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.18;
}

.kts-services-intro h2 {
  margin: 8px 0 14px;
}

.kts-services-intro p,
.kts-about-copy-v2 p,
.kts-region-copy p {
  color: var(--kts-muted);
  font-size: 12px;
  line-height: 1.75;
}

.kts-services-intro .kts-btn {
  margin-top: 16px;
}

.kts-eyebrow,
.kts-section-heading > span {
  color: var(--kts-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.kts-service-card {
  position: relative;
  min-height: 212px;
  padding: 27px 18px 22px;
  border: 1px solid var(--kts-line);
  background: #fff;
  box-shadow: 0 14px 28px rgba(12, 46, 76, .07);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.kts-service-card:hover {
  border-color: rgba(var(--kts-green-rgb), .36);
  box-shadow: 0 20px 36px rgba(12, 46, 76, .11);
  transform: translateY(-3px);
}

.kts-service-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 15px;
  color: var(--kts-green);
}

.kts-service-icon img {
  width: 74px;
  height: 74px;
}

.kts-service-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--kts-green-soft);
  font-size: 29px;
}

.kts-service-card h3 {
  margin: 0;
  color: var(--kts-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

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

.kts-service-card-link {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: transparent;
}

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

.kts-about-feature {
  display: grid;
  grid-template-columns: minmax(320px, 455px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.kts-about-visual-v2 {
  position: relative;
}

.kts-about-image-v2 {
  overflow: hidden;
  aspect-ratio: 1.78 / 1;
  border-radius: 14px;
  background: var(--kts-pale);
}

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

.kts-about-visual-label {
  position: absolute;
  right: 34px;
  bottom: -16px;
  display: grid;
  place-items: center;
  min-width: 116px;
  min-height: 90px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 35, 59, .14);
  text-align: center;
}

.kts-about-visual-label strong {
  color: #84c341;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.kts-about-visual-label span {
  color: var(--kts-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.kts-about-copy-v2 h2 {
  max-width: 440px;
  margin: 8px 0 14px;
}

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

.kts-about-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.kts-about-highlight {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.kts-about-highlight i {
  color: #83be3d;
  font-size: 26px;
}

.kts-about-highlight strong,
.kts-about-highlight small {
  display: block;
}

.kts-about-highlight strong {
  color: var(--kts-text);
  font-size: 15px;
  font-weight: 800;
}

.kts-about-highlight small {
  color: var(--kts-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.kts-about-actions-v2 {
  display: none;
}

.kts-regions-section {
  padding: 36px 0 30px;
  background: #fff;
}

.kts-region-panel {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-radius: 14px;
  background: #eef4f7;
}

.kts-region-copy {
  position: relative;
  z-index: 2;
  width: 32%;
  min-width: 255px;
  padding: 31px 0 29px 42px;
}

.kts-region-copy h2 {
  margin: 7px 0 10px;
  font-size: 23px;
}

.kts-region-copy p {
  display: none;
}

.kts-region-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 190px;
  margin: 12px 0 13px;
}

.kts-region-links a {
  display: inline-flex;
  gap: 7px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--kts-text);
  font-size: 11px;
  font-weight: 500;
}

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

.kts-region-map {
  position: absolute;
  inset: 0 0 0 30%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.kts-region-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kts-section-heading {
  margin-bottom: 24px;
}

.kts-section-heading i {
  display: none;
}

.kts-testimonials-section {
  padding-top: 18px;
  padding-bottom: 26px;
}

.kts-carousel-shell .xf-scroll-btn {
  display: none;
}

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

.kts-testimonial-track .kts-carousel-item,
.kts-blog-track .kts-carousel-item {
  min-width: 0;
}

.kts-testimonial-card {
  min-height: 118px;
  padding: 18px 25px;
  border: 1px solid var(--kts-line);
  box-shadow: 0 10px 24px rgba(12, 46, 76, .06);
}

.kts-quote-mark {
  color: #8bc541;
  font-size: 34px;
}

.kts-testimonial-card p {
  min-height: 45px;
  margin: 5px 0 8px;
  color: var(--kts-muted);
  font-size: 11px;
  line-height: 1.55;
}

.kts-stars {
  margin-bottom: 5px;
  color: #ffc20d;
}

.kts-testimonial-card strong {
  font-size: 11px;
}

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

.kts-blog-card {
  overflow: hidden;
  border: 1px solid var(--kts-line);
  box-shadow: 0 12px 24px rgba(12, 46, 76, .07);
}

.kts-blog-image {
  aspect-ratio: 2.95 / 1;
}

.kts-blog-body {
  padding: 13px 14px 16px;
}

.kts-blog-card h3 {
  font-size: 12px;
  line-height: 1.35;
}

.kts-blog-body time {
  display: inline-block;
  margin: 10px 0 0;
  color: #93a0ae;
  font-size: 10px;
}

.kts-blog-body .kts-text-link {
  float: right;
  margin-top: 10px;
  color: var(--kts-green);
  font-size: 10px;
  text-transform: none;
}

.kts-after-grid {
  display: none;
}

.kts-cta-section {
  background: var(--kts-green);
}

.kts-footer {
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
  background: #062646;
  color: rgba(255, 255, 255, .74);
}

.kts-footer::before {
  position: absolute;
  top: -52px;
  right: -120px;
  width: 460px;
  height: 150px;
  border-radius: 0 0 50% 50%;
  background: rgba(9, 65, 112, .9);
  content: "";
}

.kts-footer > .container {
  position: relative;
  z-index: 1;
}

.kts-footer-grid {
  grid-template-columns: 1.25fr .9fr .86fr .95fr 1.05fr;
  gap: 30px;
}

.kts-footer-logo img {
  width: 170px;
  height: 62px;
}

.kts-footer-brand p,
.kts-footer-column p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.65;
}

.kts-footer-social a,
.kts-footer-contact li i {
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.kts-footer-social a::before,
.kts-footer-social a::after,
.kts-footer-contact li i::after {
  display: none;
}

.kts-footer-social a:hover,
.kts-footer-social a:focus-visible {
  background: var(--kts-green);
  transform: translateY(-2px);
}

.kts-footer-column h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
}

.kts-footer-column li,
.kts-footer-column li a {
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
}

.kts-footer-contact li {
  align-items: flex-start;
}

.kts-footer-contact li i {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
  color: #9bd54d;
  background: transparent;
}

.kts-footer-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 35px;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 9px;
  background: var(--kts-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.kts-footer-quote:hover {
  background: #fff;
  color: var(--kts-green-dark);
}

.kts-footer-bottom {
  margin-top: 30px;
  border-color: rgba(255, 255, 255, .1);
  font-size: 10px;
}

.xf-floating-contact {
  z-index: 40;
}

@media (max-width: 1199.98px) {
  .xf-sticky-nav-shell .navbar-nav {
    gap: 12px;
  }

  .xf-sticky-nav-shell .xf-navbar .nav-link,
  .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    font-size: 11px;
  }

  .kts-service-showcase {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .kts-services-intro {
    max-width: 620px;
  }
}

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

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

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

  .xf-sticky-nav-shell .navbar-collapse {
    margin-top: 8px;
    padding: 10px 0 16px;
    background: #fff;
    border-top: 1px solid var(--kts-line);
  }

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

  .xf-sticky-nav-shell .xf-navbar .nav-link,
  .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    min-height: 42px;
    padding: 9px 0 !important;
    font-size: 13px;
  }

  .xf-sticky-nav-shell .navbar-toggler {
    border-color: rgba(var(--kts-green-rgb), .28) !important;
    background: var(--kts-green-soft);
    color: var(--kts-green-dark);
  }

  .kts-nav-contact {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 9px 0;
  }

  .kts-hero,
  .kts-hero-inner {
    min-height: 560px;
  }

  .kts-hero {
    background-position: 68% center;
  }

  .kts-hero::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .56);
    content: "";
  }

  .kts-hero-inner {
    position: relative;
    z-index: 1;
  }

  .kts-hero-carousel.has-controls .kts-hero-copy,
  .kts-hero-copy {
    width: 100%;
    max-width: 520px;
    padding: 34px 26px 92px;
  }

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

  .kts-about-feature {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .kts-about-image-v2 {
    max-width: 620px;
  }

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

  .kts-footer-brand,
  .kts-footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .kts-section {
    padding: 38px 0;
  }

  .kts-hero,
  .kts-hero-inner {
    min-height: 570px;
  }

  .kts-hero {
    background-position: 72% center;
  }

  .kts-hero h1 {
    max-width: 310px;
    font-size: 34px;
  }

  .kts-hero h1 span {
    font-size: 47px;
  }

  .kts-hero p {
    max-width: 315px;
    font-size: 13px;
  }

  .kts-hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 250px;
  }

  .kts-hero-arrow {
    bottom: 22px;
    width: 36px;
    height: 36px;
  }

  .kts-hero-prev {
    left: 14px;
  }

  .kts-hero-next {
    right: 14px;
  }

  .kts-service-grid,
  .kts-testimonial-track,
  .kts-blog-track {
    grid-template-columns: 1fr;
  }

  .kts-services-intro h2,
  .kts-about-copy-v2 h2,
  .kts-region-copy h2,
  .kts-section-heading h2 {
    font-size: 25px;
  }

  .kts-about-visual-label {
    right: 18px;
    bottom: -12px;
  }

  .kts-about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kts-region-panel {
    min-height: 0;
  }

  .kts-region-copy {
    width: 100%;
    min-width: 0;
    padding: 28px 24px 220px;
  }

  .kts-region-map {
    inset: auto 0 0 0;
    height: 220px;
  }

  .kts-region-map img {
    object-position: center bottom;
  }

  .kts-blog-image {
    aspect-ratio: 2.65 / 1;
  }

  .kts-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .xf-sticky-nav-shell .kts-brand,
  .xf-sticky-nav-shell.is-scrolled .kts-brand,
  .xf-sticky-nav-shell .kts-brand img,
  .xf-sticky-nav-shell.is-scrolled .kts-brand img {
    width: 140px;
    min-width: 140px;
  }

  .kts-hero h1 {
    font-size: 30px;
  }

  .kts-hero h1 span {
    font-size: 42px;
  }

  .kts-about-highlights {
    gap: 14px 8px;
  }

  .kts-footer-bottom {
    align-items: flex-start;
  }
}

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

/* TemizLIFE reviews page final layer: matches the refreshed homepage testimonial cards. */
.xf-review-page {
  position: relative;
  overflow: hidden;
  padding: 0 0 92px;
  background:
    radial-gradient(circle at 12% 9%, rgba(var(--site-accent-rgb, 53, 169, 88), .09), transparent 30%),
    linear-gradient(180deg, #f6fbf8 0%, #fff 52%, #f7fbf8 100%);
}

.xf-review-page > .container {
  position: relative;
  z-index: 1;
}

.xf-review-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .82fr);
  gap: 48px;
  align-items: center;
  padding: 68px 0 56px;
  border-bottom: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .18);
}

.xf-review-hero-copy {
  max-width: 690px;
}

.xf-review-kicker,
.xf-review-list-heading > div > span {
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .2);
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  color: var(--site-accent, #35a958);
  font-size: 11px;
  letter-spacing: 0;
}

.xf-review-kicker i {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--site-accent, #35a958);
}

.xf-review-hero h1 {
  max-width: 690px;
  margin: 18px 0 16px;
  color: var(--site-dark, #082646);
  font-size: 56px;
  line-height: 1.03;
}

.xf-review-hero-copy > p {
  max-width: 620px;
  color: #5f7087;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.72;
}

.xf-review-stats {
  gap: 12px;
  margin-top: 32px;
}

.xf-review-stats > div,
.xf-review-stats > div:first-child {
  min-width: 148px;
  padding: 16px 18px;
  border: 1px solid rgba(195, 217, 206, .78);
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .07);
}

.xf-review-stats strong {
  color: var(--site-dark, #082646);
  font-size: 29px;
}

.xf-review-stats span {
  color: #607187;
  font-size: 11px;
  font-weight: 800;
}

.xf-review-hero-art {
  min-height: 318px;
  padding: 36px 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 14%, rgba(var(--site-accent-rgb, 53, 169, 88), .32), transparent 32%),
    linear-gradient(145deg, var(--site-dark, #082646) 0%, #0b3a60 100%);
  box-shadow: 0 26px 62px rgba(6, 35, 59, .18);
}

.xf-review-hero-art::after {
  right: 34px;
  bottom: 30px;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: var(--site-accent, #35a958);
}

.xf-review-art-line {
  background: rgba(255, 255, 255, .13);
}

.xf-review-art-bubble {
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border: 0;
  border-radius: 16px;
  color: var(--site-accent, #35a958);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
}

.xf-review-hero-art > strong {
  max-width: 310px;
  font-size: 28px;
  line-height: 1.08;
}

.xf-review-hero-art > small {
  max-width: 310px;
  color: #d9e9df;
  font-size: 13px;
  font-weight: 600;
}

.xf-review-art-avatars img,
.xf-review-art-avatars span,
.xf-review-art-avatars b {
  width: 38px;
  height: 38px;
  border: 3px solid #0b3a60;
  color: #fff;
  background: linear-gradient(145deg, var(--site-accent, #35a958), #7fc943);
}

.xf-review-art-avatars b {
  background: #fff;
  color: var(--site-dark, #082646);
}

.xf-review-list-heading {
  align-items: center;
  padding: 52px 0 24px;
}

.xf-review-list-heading h2 {
  margin-top: 11px;
  color: var(--site-dark, #082646);
  font-size: 34px;
  line-height: 1.14;
}

.xf-review-list-count {
  align-self: end;
  margin-bottom: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .2);
  border-radius: 999px;
  background: #fff;
  color: #516379;
  box-shadow: 0 12px 24px rgba(6, 35, 59, .06);
}

.xf-review-list-count i {
  background: var(--site-accent, #35a958);
}

.xf-review-grid {
  gap: 22px;
}

.xf-review-grid .xf-review-card,
.xf-review-grid .xf-review-card:nth-child(3n + 2),
.xf-review-grid .xf-review-card:nth-child(3n) {
  position: relative;
  min-height: 298px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-top: 1px solid rgba(192, 220, 204, .82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 93% 8%, rgba(var(--site-accent-rgb, 53, 169, 88), .15), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fafffc 100%);
  box-shadow: 0 22px 52px rgba(6, 35, 59, .09);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.xf-review-grid .xf-review-card::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 138px;
  height: 138px;
  border: 22px solid rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.xf-review-grid .xf-review-card:hover {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .42);
  box-shadow: 0 26px 60px rgba(6, 35, 59, .12);
  transform: translateY(-3px);
}

.xf-review-card-top,
.xf-review-card-footer,
.xf-review-person {
  position: relative;
  z-index: 1;
}

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

.xf-review-person {
  gap: 12px;
}

.xf-review-person img,
.xf-review-person > span:first-child {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--site-accent, #35a958), #8fcf4e);
  box-shadow: 0 12px 24px rgba(var(--site-accent-rgb, 53, 169, 88), .22);
  font-size: 21px;
}

.xf-review-person strong {
  color: var(--site-dark, #082646);
  font-size: 15px;
}

.xf-review-person small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #65758c;
  font-size: 12px;
}

.xf-review-person small i {
  color: var(--site-accent, #35a958);
}

.xf-review-rating {
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 194, 13, .15);
  color: #b87900;
  font-size: 12px;
}

.xf-review-rating i {
  color: #ffc20d;
}

.xf-review-rating b {
  margin-left: 0;
  font-size: 12px;
}

.xf-review-quote-mark {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 32px;
  color: var(--site-accent, #35a958);
  font-size: 62px;
  font-weight: 900;
  line-height: .64;
}

.xf-review-card blockquote {
  position: relative;
  z-index: 1;
  min-height: 86px;
  margin: 8px 0 18px;
  color: #405169;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.74;
}

.xf-review-card .xf-review-more {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin: -8px 0 14px;
  color: var(--site-accent, #35a958);
}

.xf-review-card-footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 43, 74, .08);
}

.xf-review-stars {
  display: inline-flex;
  gap: 3px;
  color: #ffc20d;
  font-size: 13px;
}

.xf-review-stars .is-muted {
  color: #d8e0e9;
}

.xf-review-verified {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border-radius: 0;
  color: var(--site-dark, #082646);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.xf-review-verified i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--site-accent, #35a958);
  color: #fff;
  font-size: 8px;
}

@media (max-width: 991.98px) {
  .xf-review-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 42px;
  }

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

  .xf-review-hero-art {
    max-width: 620px;
  }
}

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

  .xf-review-hero {
    padding: 36px 0 34px;
  }

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

  .xf-review-hero-copy > p {
    font-size: 14px;
  }

  .xf-review-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .xf-review-stats > div,
  .xf-review-stats > div:first-child {
    min-width: 0;
    padding: 13px 10px;
  }

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

  .xf-review-stats span {
    max-width: none;
    font-size: 9px;
  }

  .xf-review-hero-art {
    min-height: 246px;
    padding: 26px 22px;
    border-radius: 16px;
  }

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

  .xf-review-list-heading {
    padding: 36px 0 18px;
  }

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

  .xf-review-list-count {
    width: fit-content;
    margin-top: 14px;
  }

  .xf-review-grid {
    gap: 16px;
  }

  .xf-review-grid .xf-review-card,
  .xf-review-grid .xf-review-card:nth-child(3n + 2),
  .xf-review-grid .xf-review-card:nth-child(3n) {
    min-height: 272px;
    padding: 20px;
    border-radius: 16px;
  }

  .xf-review-card-top {
    align-items: flex-start;
  }

  .xf-review-card blockquote {
    font-size: 13px;
    line-height: 1.68;
  }
}

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

/* TemizLIFE contact page active override: loaded after legacy contact rules. */
body .kts-contact-hero {
  color: var(--site-dark, #082646);
  background: linear-gradient(180deg, #f6fbf8 0%, #fff 72%, #f7fbf8 100%);
}

body .kts-contact-hero::before {
  inset: 0;
  width: auto;
  height: 58%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(var(--site-accent-rgb, 53, 169, 88), .12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
}

body .kts-contact-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: 52px;
  min-height: 0;
  padding: 64px 0 28px;
  align-items: center;
}

body .kts-contact-hero-copy {
  max-width: 690px;
  padding: 0;
}

body .kts-contact-breadcrumb {
  margin-bottom: 28px;
  color: #65758c;
}

body .kts-contact-breadcrumb a {
  color: var(--site-accent, #35a958);
}

body .kts-contact-breadcrumb a:hover {
  color: var(--site-dark, #082646);
}

body .kts-contact-breadcrumb i {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .62);
}

body .kts-contact-eyebrow,
body .kts-contact-section-label {
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .2);
  border-radius: 999px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
  color: var(--site-accent, #35a958);
  font-size: 11px;
  letter-spacing: 0;
}

body .kts-contact-eyebrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--site-accent, #35a958);
}

body .kts-contact-hero h1 {
  max-width: 680px;
  margin: 18px 0;
  color: var(--site-dark, #082646);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.03;
}

body .kts-contact-hero h1 span {
  display: block;
  color: var(--site-accent, #35a958);
}

body .kts-contact-hero-copy > p {
  max-width: 610px;
  color: #5f7087;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.78;
}

body .kts-contact-hero-actions {
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

body .kts-contact-call,
body .kts-contact-response {
  min-height: 58px;
  border-radius: 12px;
}

body .kts-contact-call {
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .28);
  background: var(--site-accent, #35a958);
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb, 53, 169, 88), .24);
}

body .kts-contact-call:hover {
  background: #188342;
  transform: translateY(-2px);
}

body .kts-contact-response {
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(192, 220, 204, .82);
  background: rgba(255, 255, 255, .9);
  color: var(--site-dark, #082646);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .07);
}

body .kts-contact-call > i,
body .kts-contact-response > i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

body .kts-contact-response > i {
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .1);
  color: var(--site-accent, #35a958);
}

body .kts-contact-response small {
  color: #6b7a90;
}

body .kts-contact-hero-visual {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 20px;
  background: #eaf5ee;
  box-shadow: 0 26px 62px rgba(6, 35, 59, .14);
}

body .kts-contact-hero-visual::after {
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(8, 38, 70, 0), rgba(8, 38, 70, .58));
}

body .kts-contact-hero-visual img {
  height: 100%;
  min-height: 430px;
  object-position: center;
  opacity: 1;
}

body .kts-contact-hero-ring {
  display: none;
}

body .kts-contact-hero-tag,
body .kts-contact-hero-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .92);
  color: var(--site-dark, #082646);
  box-shadow: 0 16px 34px rgba(6, 35, 59, .14);
  backdrop-filter: blur(10px);
}

body .kts-contact-hero-tag {
  right: 22px;
  bottom: 22px;
  border-radius: 999px;
}

body .kts-contact-hero-tag i {
  color: var(--site-accent, #35a958);
}

body .kts-contact-hero-card {
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 16px;
}

body .kts-contact-hero-card strong {
  color: var(--site-accent, #35a958);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

body .kts-contact-hero-card small {
  margin-top: 4px;
  color: #5f7087;
  font-size: 12px;
  font-weight: 800;
}

body .kts-contact-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 64px;
}

body .kts-contact-step {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 18px;
  background:
    radial-gradient(circle at 93% 10%, rgba(var(--site-accent-rgb, 53, 169, 88), .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafffc 100%);
  box-shadow: 0 20px 46px rgba(6, 35, 59, .08);
}

body .kts-contact-step span,
body .kts-contact-step strong,
body .kts-contact-step small {
  display: block;
}

body .kts-contact-step span {
  color: rgba(var(--site-accent-rgb, 53, 169, 88), .72);
  font-size: 12px;
  font-weight: 900;
}

body .kts-contact-step strong {
  margin-top: 11px;
  color: var(--site-dark, #082646);
  font-size: 17px;
  font-weight: 900;
}

body .kts-contact-step small {
  margin-top: 7px;
  color: #607187;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
}

body .kts-contact-section {
  padding: 76px 0 86px;
  background: linear-gradient(180deg, #fff 0%, #f6fbf8 100%);
}

body .kts-contact-layout {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
}

body .kts-contact-rail {
  padding-top: 8px;
}

body .kts-contact-rail h2,
body .kts-contact-form-heading h2,
body .kts-contact-map-heading h2 {
  color: var(--site-dark, #082646);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900;
}

body .kts-contact-rail > p,
body .kts-contact-form-heading p,
body .kts-contact-map-heading p {
  color: #617189;
  font-size: 14px;
  font-weight: 600;
}

body .kts-contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  border-top: 0;
}

body .kts-contact-info-item {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(192, 220, 204, .82);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 35, 59, .06);
}

body .kts-contact-info-item strong {
  color: var(--site-dark, #082646);
  font-size: 14px;
}

body a.kts-contact-info-item:hover {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .42);
  transform: translateY(-2px);
}

body a.kts-contact-info-item:hover strong {
  color: var(--site-accent, #35a958);
}

body .kts-contact-info-icon {
  width: 46px;
  height: 46px;
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .18);
  border-radius: 12px;
  color: var(--site-accent, #35a958);
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .09);
}

body .kts-contact-emergency {
  gap: 13px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .22);
  border-left: 4px solid var(--site-accent, #35a958);
  border-radius: 16px;
  background: rgba(var(--site-accent-rgb, 53, 169, 88), .08);
}

body .kts-contact-emergency-icon {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  background: var(--site-accent, #35a958);
}

body .kts-contact-emergency strong {
  color: var(--site-dark, #082646);
  font-size: 13px;
}

body .kts-contact-emergency small {
  color: #65758c;
  font-size: 12px;
}

body .kts-contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(192, 220, 204, .9);
  border-top: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 8%, rgba(var(--site-accent-rgb, 53, 169, 88), .14), transparent 26%),
    #fff;
  box-shadow: 0 26px 62px rgba(6, 35, 59, .1);
}

body .kts-contact-form-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--site-accent, #35a958), #8fcf4e);
  content: "";
}

body .kts-contact-form-heading,
body .kts-contact-form-grid {
  position: relative;
  z-index: 1;
}

body .kts-contact-field > span {
  color: var(--site-dark, #082646);
  font-size: 12px;
}

body .kts-contact-field .xf-form-control {
  min-height: 54px;
  border: 1px solid #dce9e1;
  border-radius: 12px;
  background: #fbfefd;
  color: var(--site-dark, #082646);
}

body .kts-contact-field .xf-form-control:focus {
  border-color: rgba(var(--site-accent-rgb, 53, 169, 88), .72);
  box-shadow: 0 0 0 4px rgba(var(--site-accent-rgb, 53, 169, 88), .12);
}

body .kts-contact-field textarea.xf-form-control {
  min-height: 146px;
}

body .kts-contact-submit p i {
  color: var(--site-accent, #35a958);
}

body .kts-contact-submit-button {
  min-height: 52px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--site-accent, #35a958);
  box-shadow: 0 16px 34px rgba(var(--site-accent-rgb, 53, 169, 88), .24);
}

body .kts-contact-submit-button:hover,
body .kts-contact-submit-button:focus {
  background: #188342;
}

body .kts-contact-map-section {
  padding: 0 0 88px;
  background: #f6fbf8;
}

body .kts-contact-map-heading {
  align-items: center;
  margin-bottom: 24px;
  padding-top: 0;
  border-top: 0;
}

body .kts-contact-map {
  border: 1px solid rgba(192, 220, 204, .9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(6, 35, 59, .09);
}

body .kts-contact-map iframe {
  min-height: 430px;
}

@media (max-width: 991.98px) {
  body .kts-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 22px;
  }

  body .kts-contact-hero h1 {
    font-size: 44px;
  }

  body .kts-contact-hero-visual,
  body .kts-contact-hero-visual img {
    min-height: 330px;
  }

  body .kts-contact-steps,
  body .kts-contact-layout {
    grid-template-columns: 1fr;
  }

  body .kts-contact-steps {
    padding-bottom: 52px;
  }
}

@media (max-width: 575.98px) {
  body .kts-contact-hero-grid {
    padding: 34px 0 18px;
  }

  body .kts-contact-breadcrumb {
    margin-bottom: 20px;
  }

  body .kts-contact-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  body .kts-contact-hero-copy > p {
    font-size: 14px;
  }

  body .kts-contact-call,
  body .kts-contact-response {
    width: 100%;
  }

  body .kts-contact-hero-visual,
  body .kts-contact-hero-visual img {
    min-height: 286px;
  }

  body .kts-contact-hero-card {
    left: 14px;
    bottom: 14px;
    max-width: 174px;
    padding: 11px 12px;
  }

  body .kts-contact-hero-tag {
    right: 14px;
    bottom: 14px;
    max-width: 160px;
  }

  body .kts-contact-steps {
    gap: 12px;
    padding-bottom: 40px;
  }

  body .kts-contact-section {
    padding: 52px 0 60px;
  }

  body .kts-contact-form-panel {
    padding: 24px 16px;
    border-radius: 18px;
  }

  body .kts-contact-form-grid,
  body .kts-contact-captcha {
    grid-template-columns: 1fr;
  }

  body .kts-contact-field-wide,
  body .kts-contact-captcha,
  body .kts-contact-submit {
    grid-column: auto;
  }

  body .kts-contact-submit {
    align-items: stretch;
    flex-direction: column;
  }

  body .kts-contact-submit-button {
    width: 100%;
  }

  body .kts-contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body .kts-contact-map-heading p {
    text-align: left;
  }

  body .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 services-page cascade guard after legacy service blocks. */
body .kts-service-page .kts-service-grid.kts-service-grid-all {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body .kts-service-page .kts-service-card.kts-service-list-card {
  min-height: 286px;
  padding: 26px 20px 24px;
  border-color: rgba(var(--kts-green-rgb), .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fcf9 100%);
  box-shadow: 0 18px 38px rgba(11, 45, 77, .08);
  text-align: center;
}

body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-color: rgba(var(--kts-green-rgb), .16);
  border-radius: 50%;
  background: var(--kts-green-soft);
  color: var(--kts-green);
  box-shadow: none;
}

body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-icon img {
  width: 74px;
  height: 74px;
  filter: none;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  body .kts-service-page .kts-service-grid.kts-service-grid-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body .kts-service-page .kts-service-grid.kts-service-grid-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body .kts-service-page .kts-service-grid.kts-service-grid-all {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body .kts-service-page .kts-service-card.kts-service-list-card {
    min-height: 0;
    padding: 22px 18px 56px;
  }
}

/* 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;
  }
}
/* Final sticky-size lock: prevent menu/logo from jumping on scroll. */
body .xf-sticky-nav-shell,
body .xf-sticky-nav-shell.is-scrolled {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  border-bottom: 1px solid rgba(var(--site-accent-rgb, 53, 169, 88), .16);
}

body .xf-sticky-nav-shell.is-scrolled {
  box-shadow: 0 8px 22px rgba(9, 40, 88, .09);
}

body .xf-sticky-nav-shell .xf-navbar,
body .xf-sticky-nav-shell.is-scrolled .xf-navbar {
  min-height: 76px;
  background: transparent;
}

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

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

body .xf-sticky-nav-shell .xf-navbar .nav-link,
body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
  min-height: 42px;
  padding: 6px 8px !important;
  font-size: 10px;
}

body .xf-sticky-nav-shell .xf-nav-icon,
body .xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  font-size: 11px;
}

body .xf-sticky-nav-shell .kts-nav-cta,
body .xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  body .xf-sticky-nav-shell .xf-navbar .nav-link,
  body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    gap: 6px;
    padding: 6px 6px !important;
    font-size: 9px;
  }
}

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

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

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

  body .xf-sticky-nav-shell .xf-navbar .nav-link,
  body .xf-sticky-nav-shell.is-scrolled .xf-navbar .nav-link {
    min-height: 46px;
    padding: 8px 10px !important;
    font-size: 11px;
  }

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

  body .xf-sticky-nav-shell .kts-nav-cta,
  body .xf-sticky-nav-shell.is-scrolled .kts-nav-cta {
    width: 100%;
    min-height: 44px;
    margin-top: 8px;
    font-size: 11px;
  }
}
/* Final sticky icon visibility lock. */
body .xf-sticky-nav-shell .xf-nav-icon,
body .xf-sticky-nav-shell.is-scrolled .xf-nav-icon {
  display: inline-flex !important;
}

/* Final service detail media lock: keep every service image crisp and proportional. */
body .xf-detail-carousel {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 0;
  border-radius: 14px;
  background: #f7fbf8;
  box-shadow: 0 18px 42px rgba(9, 40, 88, .10) !important;
}

body .xf-detail-carousel .carousel-inner,
body .xf-detail-carousel .carousel-item {
  width: 100%;
  height: 100% !important;
  border-radius: inherit;
}

body .xf-detail-carousel .xf-detail-main-img {
  display: block;
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
}

body .xf-detail-carousel .carousel-control-prev,
body .xf-detail-carousel .carousel-control-next {
  width: 54px;
  opacity: 1 !important;
}

body .xf-detail-carousel .carousel-control-prev-icon,
body .xf-detail-carousel .carousel-control-next-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-color: rgba(var(--site-accent-rgb, 53, 169, 88), .92);
  background-size: 46%;
  box-shadow: 0 12px 28px rgba(9, 40, 88, .18);
}

body .xf-detail-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
body .xf-detail-carousel .carousel-control-next:hover .carousel-control-next-icon,
body .xf-detail-carousel .carousel-control-prev:focus-visible .carousel-control-prev-icon,
body .xf-detail-carousel .carousel-control-next:focus-visible .carousel-control-next-icon {
  background-color: var(--site-accent, #35a958);
}

@media (max-width: 575.98px) {
  body .xf-detail-carousel {
    border-radius: 10px;
  }

  body .xf-detail-carousel .carousel-control-prev,
  body .xf-detail-carousel .carousel-control-next {
    width: 44px;
  }

  body .xf-detail-carousel .carousel-control-prev-icon,
  body .xf-detail-carousel .carousel-control-next-icon {
    width: 32px;
    height: 32px;
  }
}

/* Final service-list card action lock: keep the arrow below text, never over it. */
body .kts-service-page .kts-service-card.kts-service-list-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 318px;
  padding: 26px 20px 22px;
}

body .kts-service-page .kts-service-card.kts-service-list-card::after {
  display: none;
}

body .kts-service-page .kts-service-card.kts-service-list-card p {
  display: -webkit-box;
  width: 100%;
  min-height: 60px;
  margin: 14px 0 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-card-link {
  position: relative;
  inset: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin-top: auto;
  border: 1px solid rgba(var(--kts-green-rgb), .18);
  border-radius: 999px;
  background: rgba(var(--kts-green-rgb), .08);
  color: var(--kts-green);
}

body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-card-link::before {
  content: "\f061";
  color: inherit;
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-card-link i {
  display: none;
  color: inherit;
  font-size: 15px;
  line-height: 1;
}

body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-card-link:hover,
body .kts-service-page .kts-service-card.kts-service-list-card .kts-service-card-link:focus-visible {
  border-color: rgba(var(--kts-green-rgb), .34);
  background: var(--kts-green);
  color: #fff;
}

@media (max-width: 767.98px) {
  body .kts-service-page .kts-service-card.kts-service-list-card {
    min-height: 0;
    padding: 22px 18px;
  }
}

/* Final header underline lock: active/hover line belongs only under menu text. */
body .xf-sticky-nav-shell .xf-navbar .nav-link::before {
  display: none !important;
  content: none !important;
}

body .xf-sticky-nav-shell .xf-nav-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

body .xf-sticky-nav-shell .xf-nav-label::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--kts-green);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
  content: "";
}

body .xf-sticky-nav-shell .xf-navbar .nav-link:hover .xf-nav-label::after,
body .xf-sticky-nav-shell .xf-navbar .nav-link:focus-visible .xf-nav-label::after,
body .xf-sticky-nav-shell .xf-navbar .nav-link.active .xf-nav-label::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Final blog showcase image lock: 4:3 cards, clean crop, no old banner stretching. */
body .xf-blog-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

body .xf-blog-card .xf-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5fbf7;
}

body .xf-blog-card .xf-img img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
}

body .xf-blog-card .xf-body {
  width: 100%;
  min-width: 0;
  min-height: 220px;
}

body .xf-blog-card h3,
body .xf-blog-card h3 a,
body .xf-sidebar-card a span,
body .xf-sidebar-card a strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

body .xf-section .row > [class*="col-"] {
  min-width: 0;
}

body .xf-sidebar-card a > img {
  width: 72px;
  height: 58px;
  flex: 0 0 72px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767.98px) {
  body .xf-blog-card .xf-body {
    min-height: 0;
  }
}

/* Final blog-detail media lock: use the same clean 4:3 vitrin language on detail pages. */
body .xf-detail-panel > .xf-article-main-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto !important;
  max-height: none !important;
  border-radius: 14px;
  object-fit: cover !important;
  object-position: center;
  background: #f5fbf7;
}

body #xfBlogGallery.xf-detail-carousel {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  border-radius: 14px;
  background: #f5fbf7;
}

body #xfBlogGallery.xf-detail-carousel .carousel-inner,
body #xfBlogGallery.xf-detail-carousel .carousel-item {
  height: 100% !important;
}

body #xfBlogGallery.xf-detail-carousel .xf-article-main-img {
  display: block;
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
}

@media (max-width: 575.98px) {
  body .xf-detail-panel > .xf-article-main-img,
  body #xfBlogGallery.xf-detail-carousel {
    border-radius: 10px;
  }
}

/* Final testimonial bleed lock: reserve room for card shadows inside the scrollport. */
body #yorumlar.kts-testimonials-section {
  overflow: visible;
}

body #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track {
  padding: 16px 56px 58px;
}

body #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track .kts-carousel-item {
  flex-basis: calc((100% - 10px) / 3);
}

body #yorumlar.kts-testimonials-section .kts-testimonial-card {
  box-shadow: 0 18px 32px rgba(6, 35, 59, .09);
}

@media (max-width: 991.98px) {
  body #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track {
    padding: 16px 44px 54px;
  }

  body #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track .kts-carousel-item {
    flex-basis: 76%;
  }
}

@media (max-width: 575.98px) {
  body #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track {
    padding: 12px 12px 48px;
  }

  body #yorumlar.kts-testimonials-section .kts-carousel-track.kts-testimonial-track .kts-carousel-item {
    flex-basis: 88%;
  }
}

/* Service-region hub: a location-first layout with the admin theme palette. */
body .kts-region-hub-page {
  background: #f7fbf8;
  color: var(--site-dark);
}

body .kts-region-hub-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 70px;
  background: var(--site-dark);
}

body .kts-region-hub-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 600;
}

body .kts-region-hub-breadcrumb a {
  color: rgba(255, 255, 255, .72);
}

body .kts-region-hub-breadcrumb a:hover,
body .kts-region-hub-breadcrumb a:focus-visible {
  color: #fff;
}

body .kts-region-hub-breadcrumb i {
  color: var(--site-accent);
  font-size: 9px;
}

body .kts-region-hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 56px;
}

body .kts-region-hub-copy {
  max-width: 610px;
}

body .kts-region-hub-eyebrow,
body .kts-region-hub-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--site-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

body .kts-region-hub-eyebrow i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--site-accent-rgb), .5);
  border-radius: 50%;
  background: rgba(var(--site-accent-rgb), .14);
  font-size: 11px;
}

body .kts-region-hub-copy h1 {
  max-width: 580px;
  margin: 16px 0 18px;
  color: #fff;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

body .kts-region-hub-copy > p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.75;
}

body .kts-region-hub-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

body .kts-region-hub-actions .kts-btn {
  min-height: 48px;
  border-radius: 7px;
}

body .kts-region-hub-actions .kts-btn i {
  margin-left: 10px;
}

body .kts-region-hub-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
}

body .kts-region-hub-note i {
  color: var(--site-accent);
}

body .kts-region-hub-stats {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

body .kts-region-hub-stats > div {
  min-width: 110px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

body .kts-region-hub-stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

body .kts-region-hub-stats strong,
body .kts-region-hub-stats span {
  display: block;
}

body .kts-region-hub-stats strong {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

body .kts-region-hub-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 600;
}

body .kts-region-hub-map-shell {
  position: relative;
  min-height: 350px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: #edf6f0;
  box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
}

body .kts-region-hub-map-label,
body .kts-region-hub-map-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #17335f;
  font-size: 11px;
  font-weight: 700;
}

body .kts-region-hub-map-label i,
body .kts-region-hub-map-footer i {
  color: var(--site-accent);
}

body .kts-region-hub-map-label span {
  margin-right: auto;
  color: #44627c;
}

body .kts-region-hub-map-label strong {
  font-size: 11px;
  font-weight: 800;
}

body .kts-region-hub-map {
  display: flex;
  align-items: center;
  min-height: 270px;
  margin: 10px -4px 6px;
  border-top: 1px solid rgba(23, 51, 95, .1);
  border-bottom: 1px solid rgba(23, 51, 95, .1);
}

body .kts-region-hub-map img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
}

body .kts-region-hub-map-footer {
  color: #718798;
  font-size: 10px;
  font-weight: 600;
}

body .kts-region-hub-map-footer span:first-child {
  color: #2e6a58;
}

body .kts-region-hub-map-footer i {
  margin-right: 4px;
  font-size: 7px;
}

body .kts-region-hub-list {
  padding: 68px 0 88px;
}

body .kts-region-hub-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

body .kts-region-hub-heading h2 {
  max-width: 610px;
  margin: 10px 0 0;
  color: var(--site-dark);
  font-size: 32px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

body .kts-region-hub-heading p {
  max-width: 320px;
  margin: 0 0 2px;
  color: #687f8c;
  font-size: 13px;
  line-height: 1.65;
}

body .kts-region-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body .kts-region-hub-card {
  position: relative;
  display: flex;
  min-height: 232px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #d9e9df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 35, 59, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body .kts-region-hub-card:hover,
body .kts-region-hub-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(var(--site-accent-rgb), .48);
  box-shadow: 0 18px 34px rgba(6, 35, 59, .1);
}

body .kts-region-hub-card-top,
body .kts-region-hub-card-meta,
body .kts-region-hub-card-link {
  position: relative;
  z-index: 1;
}

body .kts-region-hub-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

body .kts-region-hub-card-index {
  color: #9bb7a8;
  font-size: 12px;
  font-weight: 800;
}

body .kts-region-hub-card-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f6ed;
  color: var(--site-accent);
}

body .kts-region-hub-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #6b8979;
  font-size: 10px;
  font-weight: 700;
}

body .kts-region-hub-card-status i {
  color: var(--site-accent);
  font-size: 7px;
}

body .kts-region-hub-card-body {
  flex: 1;
  padding: 24px 0 20px;
}

body .kts-region-hub-card-body h3 {
  margin: 0;
  color: var(--site-dark);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

body .kts-region-hub-card-body h3 a {
  color: inherit;
}

body .kts-region-hub-card-body h3 a:hover,
body .kts-region-hub-card-body h3 a:focus-visible {
  color: var(--site-accent);
}

body .kts-region-hub-card-body p {
  margin: 9px 0 0;
  color: #6a8290;
  font-size: 12px;
  font-weight: 600;
}

body .kts-region-hub-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #80988c;
  font-size: 10px;
  font-weight: 600;
}

body .kts-region-hub-card-meta i {
  margin-right: 5px;
  color: var(--site-accent);
}

body .kts-region-hub-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #e8f0eb;
  color: var(--site-dark);
  font-size: 12px;
  font-weight: 800;
}

body .kts-region-hub-card-link i {
  color: var(--site-accent);
  transition: transform .2s ease;
}

body .kts-region-hub-card-link:hover,
body .kts-region-hub-card-link:focus-visible {
  color: var(--site-accent);
}

body .kts-region-hub-card-link:hover i,
body .kts-region-hub-card-link:focus-visible i {
  transform: translateX(4px);
}

body .kts-region-hub-empty {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed #c9ded0;
  border-radius: 8px;
  background: #fff;
  color: #6a8290;
  text-align: center;
}

body .kts-region-hub-empty i {
  margin-bottom: 8px;
  color: var(--site-accent);
  font-size: 28px;
}

body .kts-region-hub-empty strong {
  color: var(--site-dark);
  font-size: 16px;
}

body .kts-region-hub-empty span {
  font-size: 12px;
}

@media (max-width: 991.98px) {
  body .kts-region-hub-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body .kts-region-hub-copy {
    max-width: 760px;
  }

  body .kts-region-hub-map-shell {
    min-height: 300px;
  }

  body .kts-region-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  body .kts-region-hub-hero {
    padding: 18px 0 44px;
  }

  body .kts-region-hub-breadcrumb {
    margin-bottom: 30px;
  }

  body .kts-region-hub-copy h1 {
    margin-top: 14px;
    font-size: 34px;
  }

  body .kts-region-hub-copy > p {
    font-size: 14px;
  }

  body .kts-region-hub-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  body .kts-region-hub-stats {
    gap: 12px;
    margin-top: 32px;
  }

  body .kts-region-hub-stats > div {
    min-width: 0;
    padding-right: 12px;
  }

  body .kts-region-hub-stats strong {
    font-size: 21px;
  }

  body .kts-region-hub-stats span {
    font-size: 10px;
  }

  body .kts-region-hub-map-shell {
    min-height: 230px;
    padding: 12px;
  }

  body .kts-region-hub-map {
    min-height: 185px;
  }

  body .kts-region-hub-map-label,
  body .kts-region-hub-map-footer {
    font-size: 9px;
  }

  body .kts-region-hub-list {
    padding: 46px 0 58px;
  }

  body .kts-region-hub-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }

  body .kts-region-hub-heading h2 {
    font-size: 26px;
  }

  body .kts-region-hub-heading p {
    max-width: 100%;
  }

  body .kts-region-hub-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body .kts-region-hub-card {
    min-height: 214px;
    padding: 18px;
  }
}

/* Service-region category and detail surfaces. */
body .kts-region-inner-page,
body .kts-region-detail-page {
  background: #f7fbf8;
}

body .kts-region-inner-hero {
  padding: 22px 0 58px;
  background: var(--site-dark);
}

body .kts-region-inner-hero-grid,
body .kts-region-detail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

body .kts-region-inner-hero h1,
body .kts-region-detail-heading h1 {
  max-width: 700px;
  margin: 15px 0 12px;
  color: #fff;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

body .kts-region-inner-hero p,
body .kts-region-detail-heading p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.7;
}

body .kts-region-inner-counter {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 14px;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .68);
}

body .kts-region-inner-counter strong {
  grid-row: span 2;
  color: var(--site-accent);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

body .kts-region-inner-counter span {
  font-size: 11px;
  font-weight: 700;
}

body .kts-region-inner-counter i {
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

body .kts-region-inner-content,
body .kts-region-detail-content {
  padding: 62px 0 82px;
}

body .kts-region-inner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: 34px;
}

body .kts-region-inner-section-head {
  margin-bottom: 20px;
}

body .kts-region-inner-section-head-spaced {
  margin-top: 48px;
}

body .kts-region-inner-section-head > span {
  color: var(--site-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

body .kts-region-inner-section-head h2 {
  margin: 8px 0 0;
  color: var(--site-dark);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

body .kts-region-subgrid,
body .kts-region-place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body .kts-region-subcard {
  position: relative;
  min-height: 186px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #d9e9df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 35, 59, .04);
}

body .kts-region-subcard-index {
  color: #9bb7a8;
  font-size: 11px;
  font-weight: 800;
}

body .kts-region-subcard-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 16px;
  border-radius: 50%;
  background: #e9f6ed;
  color: var(--site-accent);
}

body .kts-region-subcard h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--site-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

body .kts-region-subcard h3 a:hover,
body .kts-region-subcard h3 a:focus-visible {
  color: var(--site-accent);
}

body .kts-region-subcard p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #708894;
  font-size: 11px;
  font-weight: 600;
}

body .kts-region-subcard-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--site-accent);
}

body .kts-region-place-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid #dfece4;
  border-radius: 8px;
  background: #fff;
  color: var(--site-dark);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body .kts-region-place-card.has-media {
  grid-template-columns: 54px minmax(0, 1fr) auto;
}

body .kts-region-place-media {
  width: 54px;
  height: 54px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #e9f6ed;
}

body .kts-region-place-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .kts-region-place-card:hover,
body .kts-region-place-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--site-accent-rgb), .5);
  box-shadow: 0 12px 22px rgba(6, 35, 59, .07);
}

body .kts-region-place-pin {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f6ed;
  color: var(--site-accent);
  font-size: 13px;
}

body .kts-region-place-card strong,
body .kts-region-place-card small {
  display: block;
}

body .kts-region-place-card strong {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

body .kts-region-place-card small {
  margin-top: 5px;
  color: #718895;
  font-size: 10px;
  font-weight: 600;
}

body .kts-region-place-card > i {
  color: var(--site-accent);
  font-size: 12px;
}

body .kts-region-rail-card {
  padding: 22px;
  border: 1px solid #d9e9df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(6, 35, 59, .05);
}

body .kts-region-rail-label {
  color: var(--site-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

body .kts-region-rail-card h2 {
  margin: 8px 0 18px;
  color: var(--site-dark);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

body .kts-region-rail-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .kts-region-rail-card li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #4f6b79;
  font-size: 11px;
  font-weight: 700;
}

body .kts-region-rail-card li a:hover,
body .kts-region-rail-card li a:focus-visible,
body .kts-region-rail-card li a.active {
  background: #e9f6ed;
  color: var(--site-dark);
}

body .kts-region-rail-card li a > i,
body .kts-region-rail-card li a span i {
  color: var(--site-accent);
  font-size: 10px;
}

body .kts-region-rail-card li a span i {
  margin-right: 7px;
}

body .kts-region-rail-cta {
  display: block;
  margin-top: 14px;
  padding: 20px;
  border-radius: 8px;
  background: var(--site-dark);
  color: #fff;
}

body .kts-region-rail-cta span,
body .kts-region-rail-cta strong {
  display: block;
}

body .kts-region-rail-cta span {
  color: var(--site-accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

body .kts-region-rail-cta span i {
  margin-right: 6px;
}

body .kts-region-rail-cta strong {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

body .kts-region-rail-cta strong i {
  margin-left: 8px;
  color: var(--site-accent);
}

body .kts-region-inner-copy {
  margin-top: 44px;
  padding: 26px;
  border: 1px solid #dfece4;
  border-radius: 8px;
  background: #fff;
}

body .kts-region-inner-copy h2,
body .kts-region-inner-copy h3 {
  color: var(--site-dark);
}

body .kts-region-inner-copy p,
body .kts-region-inner-copy li {
  color: #4f6b79;
  font-size: 14px;
  line-height: 1.75;
}

body .kts-region-detail-heading {
  align-items: center;
}

body .kts-region-detail-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

body .kts-region-detail-category i {
  color: var(--site-accent);
}

body .kts-region-detail-media {
  overflow: hidden;
  border: 1px solid #d9e9df;
  border-radius: 8px;
  background: #e9f6ed;
}

body .kts-region-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

body .kts-region-detail-copy {
  margin-top: 16px;
}

body .kts-region-detail-copy-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--site-accent);
  font-size: 11px;
  font-weight: 800;
}

body .kts-region-detail-copy h2 {
  margin: 10px 0 12px;
  color: var(--site-dark);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

body .kts-region-detail-copy .kts-region-detail-path {
  color: #718895;
  font-size: 12px;
}

body .kts-region-detail-copy .kts-btn {
  min-height: 46px;
  margin-top: 14px;
  border-radius: 7px;
}

@media (max-width: 991.98px) {
  body .kts-region-inner-layout {
    grid-template-columns: 1fr;
  }

  body .kts-region-inner-rail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .75fr);
    align-items: start;
    gap: 14px;
  }

  body .kts-region-rail-cta {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  body .kts-region-inner-hero {
    padding: 18px 0 42px;
  }

  body .kts-region-inner-hero-grid,
  body .kts-region-detail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  body .kts-region-inner-hero h1,
  body .kts-region-detail-heading h1 {
    font-size: 34px;
  }

  body .kts-region-inner-hero p,
  body .kts-region-detail-heading p {
    font-size: 14px;
  }

  body .kts-region-inner-counter {
    width: 100%;
    max-width: 210px;
  }

  body .kts-region-inner-content,
  body .kts-region-detail-content {
    padding: 44px 0 58px;
  }

  body .kts-region-inner-section-head h2 {
    font-size: 25px;
  }

  body .kts-region-subgrid,
  body .kts-region-place-grid {
    grid-template-columns: 1fr;
  }

  body .kts-region-inner-rail {
    display: block;
  }

  body .kts-region-rail-cta {
    margin-top: 12px;
  }

  body .kts-region-inner-copy {
    padding: 20px;
  }

  body .kts-region-detail-copy h2 {
    font-size: 25px;
  }
}

/* Final review-page spacing override. */
body .xf-review-page {
  background: #fff;
  padding-top: 42px;
}

@media (max-width: 767.98px) {
body .xf-review-page {
    background: #fff;
    padding-top: 28px;
  }
}

/* Contact page final minimalist layout: equal columns, no visible card surface. */
body .kts-contact-min-page,
body .kts-contact-min-section,
body .kts-contact-min-map-section {
  background: #fff;
}

body .kts-contact-min-section {
  padding: 64px 0 72px;
}

body .kts-contact-min-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body .kts-contact-min-office,
body .kts-contact-min-form-area {
  align-self: start;
}

body .kts-contact-min-details {
  gap: 30px;
  margin-top: 6px;
}

body .kts-contact-min-details > a,
body .kts-contact-min-details > div {
  gap: 15px;
}

body .kts-contact-min-details i {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  border-radius: 50%;
}

body .kts-contact-min-details strong {
  font-size: 15px;
}

body .kts-contact-min-form-area h2 {
  display: none;
}

body .kts-contact-min-form {
  margin-top: 0;
}

body .kts-contact-min-map-section {
  padding: 0 0 80px;
}

body .kts-contact-min-map {
  border-radius: 0;
  background: transparent;
}

/* Full-width newsletter band above the footer. */
body .kts-newsletter-section {
  padding: 42px 0;
  background: #edf8f0;
  border-top: 1px solid rgba(var(--site-accent-rgb), .14);
  border-bottom: 1px solid rgba(var(--site-accent-rgb), .14);
}

body .kts-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 64px;
}

body .kts-newsletter-copy {
  max-width: 510px;
}

body .kts-newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--site-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body .kts-newsletter-eyebrow i {
  font-size: 14px;
}

body .kts-newsletter-copy h2 {
  margin: 10px 0 8px;
  color: var(--site-dark);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

body .kts-newsletter-copy p {
  max-width: 430px;
  margin: 0;
  color: #5e7881;
  font-size: 13px;
  line-height: 1.65;
}

body .kts-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

body .kts-newsletter-email,
body .kts-newsletter-captcha-input {
  display: block;
  margin: 0;
}

body .kts-newsletter-email input,
body .kts-newsletter-captcha-input input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfe5d5;
  border-radius: 6px;
  outline: 0;
  color: var(--site-dark);
  background: #fff;
  font-size: 13px;
}

body .kts-newsletter-email input:focus,
body .kts-newsletter-captcha-input input:focus {
  border-color: var(--site-accent);
  box-shadow: 0 0 0 3px rgba(var(--site-accent-rgb), .12);
}

body .kts-newsletter-form > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--site-accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease;
}

body .kts-newsletter-form > button:hover,
body .kts-newsletter-form > button:focus-visible {
  background: #258b48;
  transform: translateY(-1px);
}

body .kts-newsletter-captcha-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(210px, .72fr) minmax(150px, 1fr);
  align-items: center;
  gap: 10px;
}

body .kts-newsletter-captcha-row .xf-captcha-box {
  height: 48px;
  min-height: 48px;
  padding: 4px 6px;
  border-color: #cfe5d5;
  border-radius: 6px;
  background: #fff;
}

body .kts-newsletter-captcha-row .xf-captcha-img {
  width: 150px;
  height: 38px;
}

body .kts-newsletter-captcha-row .xf-captcha-refresh {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  color: var(--site-accent);
  border-color: rgba(var(--site-accent-rgb), .18);
  background: #eaf6ed;
}

body .kts-newsletter-captcha-row .xf-captcha-refresh:hover,
body .kts-newsletter-captcha-row .xf-captcha-refresh:focus-visible {
  color: #fff;
  background: var(--site-accent);
  border-color: var(--site-accent);
}

body .kts-newsletter-form > small {
  display: block;
  grid-column: 1 / -1;
  color: #6f878d;
  font-size: 10px;
  line-height: 1.5;
}

body .kts-newsletter-form > small i {
  margin-right: 5px;
  color: var(--site-accent);
}

@media (min-width: 992px) {
  body .kts-newsletter-form {
    grid-template-columns: minmax(140px, .95fr) minmax(255px, 1.45fr) auto;
  }

  body .kts-newsletter-captcha-row {
    grid-column: auto;
    grid-template-columns: minmax(145px, .8fr) minmax(100px, 1fr);
  }
}

@media (max-width: 767.98px) {
  body .kts-newsletter-section {
    padding: 34px 0;
  }

  body .kts-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body .kts-newsletter-copy h2 {
    font-size: 26px;
  }

  body .kts-newsletter-form {
    grid-template-columns: 1fr;
  }

  body .kts-newsletter-form > button {
    width: 100%;
  }

  body .kts-newsletter-captcha-row {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  body .kts-contact-min-section {
    padding: 42px 0 54px;
  }

  body .kts-contact-min-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  body .kts-contact-min-map-section {
    padding-bottom: 56px;
  }
}

/* Keep the contact map in the left column and stretch both desktop columns equally. */
body .kts-contact-min-panel {
  align-items: stretch;
}

body .kts-contact-min-office {
  display: flex;
  align-self: stretch;
  min-height: 0;
  flex-direction: column;
}

body .kts-contact-min-form-area {
  align-self: stretch;
  display: flex;
  min-height: 0;
  flex-direction: column;
}

body .kts-contact-min-form-area > .kts-contact-min-form {
  height: 100%;
}

body .kts-contact-min-inline-map {
  display: flex;
  height: 285px;
  min-height: 285px;
  margin-top: 38px;
  overflow: hidden;
  flex: 0 0 285px;
  border-radius: 0;
  background: #f4faf6;
}

body .kts-contact-min-inline-map iframe {
  display: block;
  width: 100%;
  min-height: 0;
  height: 100%;
  flex: 0 0 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  body .kts-contact-min-inline-map {
    height: 280px;
    min-height: 280px;
    margin-top: 34px;
    flex-basis: 280px;
  }

  body .kts-contact-min-inline-map iframe {
    min-height: 0;
  }
}

/* Restore the slim location/language bar above the sticky navigation. */
body .xf-site-header .kts-topbar {
  display: block;
  height: 32px;
  color: var(--kts-text);
  background: #f1faf4;
  border-bottom: 1px solid rgba(var(--site-accent-rgb), .14);
}

body .xf-site-header .kts-topbar-inner {
  min-height: 32px;
  justify-content: space-between;
  gap: 18px;
}

body .xf-site-header .kts-topbar-location,
body .xf-site-header .kts-topbar-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

body .xf-site-header .kts-topbar-location span {
  display: inline-flex;
  align-items: center;
  color: var(--kts-text);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

body .xf-site-header .kts-topbar-location i {
  margin-right: 6px;
  color: var(--kts-green);
  font-size: 10px;
}

body .xf-site-header .gtranslate-topbar {
  display: flex;
  align-items: center;
  margin: 0;
}

body .xf-site-header .gtranslate-topbar .gt_switcher {
  border-color: rgba(var(--site-accent-rgb), .18) !important;
  border-radius: 999px !important;
  background: #fff !important;
}

body .xf-site-header .gtranslate-topbar .gt_switcher .gt_selected a,
body .xf-site-header .gtranslate-topbar .gt_switcher .gt_option a {
  color: var(--kts-text) !important;
}

@media (max-width: 991.98px) {
  body .xf-site-header .kts-topbar-inner {
    justify-content: space-between;
  }

  body .xf-site-header .kts-topbar-location span {
    font-size: 9px;
  }
}

/* Newsletter layout: one heading above a full-width subscription form. */
body .kts-newsletter-inner {
  display: block;
}

body .kts-newsletter-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: var(--site-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

body .kts-newsletter-label i {
  font-size: 13px;
}

body .kts-newsletter-form {
  width: 100%;
  max-width: none;
}

body .kts-newsletter-form > small {
  display: none;
}

/* Keep the newsletter CAPTCHA control fitted to its image and refresh button. */
body .kts-newsletter-captcha-row .xf-captcha-box {
  width: 202px;
  max-width: 100%;
  justify-self: start;
}

@media (min-width: 768px) {
  body .kts-newsletter-captcha-row {
    grid-template-columns: 202px minmax(0, 1fr);
  }
}
