/* ============================================================
   Kome Care — Global Redesign Stylesheet
   Fonts : Inter (body) + Sora (headings) via Google Fonts
   Palette:
     Orange    #ff9b71  Hover #ff7934
     Navy      #001C4C
     Body text #5E5F63
     Warm bg   #F1EBE9 / #f8f2ef
     Border    #E5E7EB
     Yellow    #EDC701
   Prefix : .kc-  (no conflicts with existing .tp- classes)
   ============================================================ */

/* ── Root variables ─────────────────────────────────────── */
:root {
  --kc-orange:      #ff9b71;
  --kc-orange-dark: #ff7934;
  --kc-navy:        #001C4C;
  --kc-body:        #5E5F63;
  --kc-warm-bg:     #F1EBE9;
  --kc-soft-bg:     #f8f2ef;
  --kc-border:      #E5E7EB;
  --kc-white:       #fff;
  --kc-light:       #F8F9FA;
  --kc-footer:      #0f1e3c;
  --kc-radius:      12px;
  --kc-shadow:      0 2px 20px rgba(0,28,76,.08);
  --kc-shadow-lg:   0 8px 40px rgba(0,28,76,.14);
  --kc-t:           .22s ease;
}

/* ── Global type overrides ──────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--kc-body);
}

/* Prevent horizontal "float"/scroll from Bootstrap g-5 rows whose -24px
   negative margins exceed the .container's 12px padding. Scoped to <main> —
   NOT html/body — so the fixed off-canvas mobile menu (a sibling of <main>,
   rendered in header.php) keeps its own internal scrolling. `clip` (not hidden)
   does NOT create a scroll container, so position:sticky (the page TOC) works. */
main { overflow-x: clip; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--kc-navy);
}

/* ── Utility ─────────────────────────────────────────────── */
.kc-divider { border: none; border-top: 1px solid var(--kc-border); margin: 0; }

/* ============================================================
   HEADER REDESIGN
   ============================================================ */

/* Remove top-bar entirely */
.tp-header-top { display: none !important; }

/* Single sticky row */
.tp-header-area {
  background: #fff;
  border-bottom: 1px solid var(--kc-border);
  box-shadow: 0 1px 12px rgba(0,28,76,.05);
}
.tp-header-bottom.white-bg { border-bottom: none; }

/* Logo */
.logo img { max-height: 50px; width: auto !important; }

/* Desktop nav links */
.tp-main-menu-content > ul > li > a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--kc-navy);
  padding: 8px 12px;
  border-radius: 6px;
  transition: background var(--kc-t), color var(--kc-t);
}
.tp-main-menu-content > ul > li > a:hover {
  background: var(--kc-soft-bg);
  color: var(--kc-orange-dark);
}
/* Compact, single-line desktop nav. The legacy theme spaced items with big
   30px/40px margins (and let two-word links wrap); here the top menu is a tight
   flex row and the link padding above supplies the breathing room. */
.tp-main-menu-content > ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.tp-main-menu-content > ul > li,
.tp-main-menu-content > ul > li:not(:last-child) {
  margin-left: 0;
  margin-right: 2px;
}
.tp-main-menu-content > ul > li > a {
  white-space: nowrap;
  padding: 8px 14px;
}

/* Dropdown */
.tp-submenu {
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  box-shadow: var(--kc-shadow-lg);
  padding: 6px 0;
}
.tp-submenu li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--kc-body);
  padding: 8px 18px;
  transition: color var(--kc-t), background var(--kc-t);
}
.tp-submenu li a:hover {
  color: var(--kc-orange-dark);
  background: var(--kc-soft-bg);
}

/* "Request Care" pill CTA */
.kc-btn-request-care {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--kc-orange);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--kc-t), transform .15s ease;
}
.kc-btn-request-care:hover {
  background: var(--kc-orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger button */
.offcanvas-open-btn {
  background: none;
  border: 2px solid var(--kc-border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--kc-navy);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: border-color var(--kc-t), color var(--kc-t);
}
.offcanvas-open-btn:hover {
  border-color: var(--kc-orange);
  color: var(--kc-orange);
}
/* Icon must follow the button colour (overrides main.css white) — otherwise
   the white bars icon is invisible on the transparent/white button. */
.offcanvas-open-btn i { color: inherit; }

/* ============================================================
   SHARED SECTION HEADERS
   ============================================================ */
.kc-section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kc-orange-dark);
  margin-bottom: 12px;
}
.kc-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.kc-section-sub {
  font-size: 16px;
  color: var(--kc-body);
  line-height: 1.7;
  max-width: 520px;
}
.kc-section-header { margin-bottom: 56px; }

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.kc-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kc-orange); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  transition: background var(--kc-t), transform .15s ease, box-shadow .15s ease;
}
.kc-btn-primary:hover {
  background: var(--kc-orange-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,121,52,.28);
}
.kc-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--kc-navy);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 50px; border: 2px solid var(--kc-border);
  text-decoration: none;
  transition: border-color var(--kc-t), color var(--kc-t);
}
.kc-btn-secondary:hover { border-color: var(--kc-orange); color: var(--kc-orange-dark); }

.kc-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--kc-navy);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  transition: background var(--kc-t), color var(--kc-t);
}
.kc-btn-white:hover { background: var(--kc-orange); color: #fff; }

.kc-btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kc-navy); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 50px; text-decoration: none;
  transition: background var(--kc-t), transform .15s ease;
}
.kc-btn-navy:hover { background: #001033; color: #fff; transform: translateY(-2px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.kc-hero {
  padding: 88px 0 80px;
  background: var(--kc-white);
  overflow: hidden;
  position: relative;
}
.kc-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 48%; height: 100%;
  background: linear-gradient(135deg, var(--kc-soft-bg) 0%, var(--kc-warm-bg) 100%);
  border-radius: 0 0 0 80px;
  z-index: 0;
}
.kc-hero .container { position: relative; z-index: 1; }

.kc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,155,113,.12); color: var(--kc-orange-dark);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.kc-hero-eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--kc-orange); flex-shrink: 0;
}

.kc-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; color: var(--kc-navy); line-height: 1.18;
  margin-bottom: 20px;
}
.kc-hero h1 em { font-style: normal; color: var(--kc-orange); }

.kc-hero-sub {
  font-size: 17px; color: var(--kc-body);
  line-height: 1.72; margin-bottom: 32px; max-width: 470px;
}
.kc-hero-actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.kc-hero-trust {
  display: flex; align-items: center;
  gap: 22px; flex-wrap: wrap;
}
.kc-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--kc-body); font-weight: 500;
}
.kc-hero-trust-item i { color: var(--kc-orange); font-size: 13px; }

/* Hero image column */
.kc-hero-image-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.kc-hero-image-wrap::before {
  content: '';
  position: absolute; top: -30px; left: -10px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,155,113,.13); z-index: 0;
}
.kc-hero-image {
  position: relative; z-index: 1;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--kc-shadow-lg);
  max-width: 500px; width: 100%;
}
.kc-hero-image img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
}
.kc-hero-badge {
  position: absolute; bottom: 28px; left: -20px;
  background: #fff; border-radius: var(--kc-radius);
  box-shadow: var(--kc-shadow-lg);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.kc-hero-badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--kc-orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; flex-shrink: 0;
}
.kc-hero-badge-text strong {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--kc-navy); line-height: 1;
}
.kc-hero-badge-text span { font-size: 12px; color: var(--kc-body); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.kc-trust-bar { background: var(--kc-navy); padding: 26px 0; }
.kc-trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 36px; flex-wrap: wrap;
}
.kc-trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.8);
  font-size: 13px; font-weight: 500; white-space: nowrap;
}
.kc-trust-item i { color: var(--kc-orange); font-size: 17px; }
.kc-trust-item strong { color: #fff; }
.kc-trust-separator {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.15);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.kc-services { padding: 100px 0; background: var(--kc-white); }

.kc-service-card {
  background: var(--kc-white);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  padding: 34px 28px;
  height: 100%;
  position: relative; overflow: hidden;
  transition: box-shadow var(--kc-t), transform var(--kc-t), border-color var(--kc-t);
}
.kc-service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--kc-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--kc-t);
}
.kc-service-card:hover {
  box-shadow: var(--kc-shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.kc-service-card:hover::after { transform: scaleX(1); }

.kc-service-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--kc-soft-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--kc-t);
}
.kc-service-card:hover .kc-service-icon { background: rgba(255,155,113,.15); }
.kc-service-icon i { font-size: 26px; color: var(--kc-orange); }

.kc-service-card h3 {
  font-family: 'Sora', sans-serif; font-size: 1.05rem;
  font-weight: 700; color: var(--kc-navy); margin-bottom: 10px;
}
.kc-service-card p {
  font-size: 14px; color: var(--kc-body);
  line-height: 1.65; margin-bottom: 20px;
}
.kc-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--kc-orange-dark); font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: gap var(--kc-t);
}
.kc-service-link:hover { gap: 10px; color: var(--kc-orange-dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.kc-why { padding: 100px 0; background: var(--kc-light); }
.kc-why-image {
  border-radius: var(--kc-radius); overflow: hidden;
  box-shadow: var(--kc-shadow-lg);
}
.kc-why-image img {
  width: 100%; height: 500px;
  object-fit: cover; display: block;
}
.kc-why-feature {
  display: flex; gap: 18px; margin-bottom: 28px;
}
.kc-why-feature:last-child { margin-bottom: 0; }
.kc-why-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--kc-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.kc-why-feature-text h4 {
  font-family: 'Sora', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--kc-navy); margin-bottom: 4px;
}
.kc-why-feature-text p {
  font-size: 14px; color: var(--kc-body);
  line-height: 1.62; margin: 0;
}
.kc-stats-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 36px;
}
.kc-stat-card {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 22px 20px;
  text-align: center;
}
.kc-stat-number {
  font-family: 'Sora', sans-serif; font-size: 2rem;
  font-weight: 800; color: var(--kc-orange);
  display: block; line-height: 1;
}
.kc-stat-label {
  font-size: 12px; color: var(--kc-body);
  margin-top: 4px; display: block;
}

/* ============================================================
   FUNDING TEASER
   ============================================================ */
.kc-funding {
  padding: 80px 0;
  background: var(--kc-navy);
  position: relative; overflow: hidden;
}
.kc-funding::before {
  content: '';
  position: absolute; top: -60px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,155,113,.06);
  pointer-events: none;
}
.kc-funding .kc-section-title { color: #fff; }
.kc-funding .kc-section-sub { color: rgba(255,255,255,.7); }

/* Scoped under .kc-funding (homepage section) so the dark, vertically-stacked
   card here is not clobbered by the unrelated light .kc-funding-card block
   further down this file (which targets a different .kc-funding-card-body
   layout). Without this scoping the icon/title/text collapse into flex columns. */
.kc-funding .kc-funding-card {
  display: block;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--kc-radius); padding: 30px 26px;
  transition: background var(--kc-t);
  height: 100%;
}
.kc-funding .kc-funding-card:hover { background: rgba(255,255,255,.11); }
.kc-funding .kc-funding-card-icon {
  width: 50px; height: 50px;
  background: rgba(255,155,113,.18); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--kc-orange); font-size: 22px; margin-bottom: 18px;
}
.kc-funding .kc-funding-card h4 {
  font-family: 'Sora', sans-serif;
  color: #fff; font-size: 1.05rem; margin-bottom: 10px;
}
.kc-funding .kc-funding-card p {
  color: rgba(255,255,255,.68); font-size: 14px;
  line-height: 1.65; margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.kc-testimonials { padding: 100px 0; background: var(--kc-white); }

.kc-testimonial-card {
  background: var(--kc-white);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  padding: 34px 28px;
  box-shadow: var(--kc-shadow);
  height: 100%;
  position: relative;
}
.kc-testimonial-card::before {
  content: '\201C';
  position: absolute; top: 14px; right: 22px;
  font-size: 70px; font-family: Georgia, serif;
  color: var(--kc-orange); opacity: .18; line-height: 1;
}
.kc-testimonial-stars {
  color: #EDC701; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px;
}
.kc-testimonial-text {
  font-size: 15px; color: var(--kc-body);
  line-height: 1.78; font-style: italic; margin-bottom: 24px;
}
.kc-testimonial-author {
  display: flex; align-items: center; gap: 13px;
}
.kc-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--kc-soft-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--kc-orange); font-size: 17px; flex-shrink: 0;
}
.kc-testimonial-author-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--kc-navy);
}
.kc-testimonial-author-role { font-size: 12px; color: var(--kc-body); }

/* Google Reviews badge */
.kc-google-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  background: var(--kc-white);
  border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius);
  padding: 22px 32px;
  box-shadow: var(--kc-shadow);
  margin-top: 48px;
}
.kc-google-badge__logo {
  display: flex; align-items: center; gap: 10px;
}
.kc-google-badge__logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.kc-google-badge__logo-label {
  font-size: 13px; font-weight: 600; color: var(--kc-body); letter-spacing: .02em;
}
.kc-google-badge__divider {
  width: 1px; height: 34px; background: var(--kc-border); flex-shrink: 0;
}
.kc-google-badge__rating {
  display: flex; align-items: center; gap: 10px;
}
.kc-google-badge__stars {
  color: #EDC701; font-size: 18px; letter-spacing: 2px; line-height: 1;
}
.kc-google-badge__score {
  font-family: 'Sora', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--kc-navy); line-height: 1;
}
.kc-google-badge__count {
  font-size: 14px; color: var(--kc-body);
}
.kc-google-badge__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--kc-orange);
  text-decoration: none; white-space: nowrap;
  transition: color .2s;
}
.kc-google-badge__cta:hover { color: var(--kc-navy); }
@media (max-width: 575px) {
  .kc-google-badge { flex-direction: column; gap: 12px; text-align: center; }
  .kc-google-badge__divider { display: none; }
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.kc-blog { padding: 100px 0; background: var(--kc-light); }

.kc-blog-card {
  background: var(--kc-white); border-radius: var(--kc-radius);
  overflow: hidden; box-shadow: var(--kc-shadow); height: 100%;
  transition: box-shadow var(--kc-t), transform var(--kc-t);
}
.kc-blog-card:hover { box-shadow: var(--kc-shadow-lg); transform: translateY(-4px); }
.kc-blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.kc-blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .42s ease;
}
.kc-blog-card:hover .kc-blog-card-img img { transform: scale(1.05); }
.kc-blog-card-body { padding: 22px 26px 26px; }
.kc-blog-tag {
  display: inline-block;
  background: rgba(255,155,113,.12); color: var(--kc-orange-dark);
  font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}
.kc-blog-card-title {
  font-family: 'Sora', sans-serif; font-size: .975rem;
  font-weight: 700; color: var(--kc-navy); line-height: 1.42; margin-bottom: 10px;
}
.kc-blog-card-title a { color: inherit; text-decoration: none; transition: color var(--kc-t); }
.kc-blog-card-title a:hover { color: var(--kc-orange-dark); }
.kc-blog-meta {
  font-size: 12px; color: var(--kc-body);
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px;
}
.kc-blog-read-more {
  color: var(--kc-orange-dark); font-size: 13px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--kc-t);
}
.kc-blog-read-more:hover { gap: 9px; color: var(--kc-orange-dark); }

/* ============================================================
   JOBS STRIP
   ============================================================ */
.kc-jobs-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--kc-orange) 0%, var(--kc-orange-dark) 100%);
  text-align: center;
}
.kc-jobs-strip .kc-section-title {
  color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 12px;
}
.kc-jobs-strip .kc-section-sub {
  color: rgba(255,255,255,.82); margin: 0 auto 32px;
}

/* ============================================================
   CONTACT / CALLBACK SECTION
   ============================================================ */
.kc-contact-section { padding: 100px 0; background: var(--kc-white); }

.kc-contact-info > h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem; color: var(--kc-navy); margin-bottom: 10px;
}
.kc-contact-info > p {
  color: var(--kc-body); font-size: 15px;
  line-height: 1.72; margin-bottom: 30px;
}
.kc-contact-detail {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 18px;
}
.kc-contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--kc-soft-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--kc-orange); font-size: 16px; flex-shrink: 0;
}
.kc-contact-detail-text strong {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--kc-body); margin-bottom: 2px;
}
.kc-contact-detail-text a,
.kc-contact-detail-text span {
  color: var(--kc-navy); font-size: 15px; font-weight: 500;
  text-decoration: none;
}
.kc-contact-detail-text a:hover { color: var(--kc-orange-dark); }

.kc-callback-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--kc-soft-bg); border-radius: var(--kc-radius);
  padding: 18px 20px; margin-top: 30px;
  border-left: 3px solid var(--kc-orange);
}
.kc-callback-badge i { font-size: 24px; color: var(--kc-orange); flex-shrink: 0; }
.kc-callback-badge p {
  margin: 0; font-size: 13px; color: var(--kc-body); line-height: 1.55;
}
.kc-callback-badge strong { color: var(--kc-navy); }

/* Contact form card */
.kc-form {
  background: var(--kc-light); border-radius: 16px; padding: 40px;
}
.kc-form-group { margin-bottom: 18px; }
.kc-form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--kc-navy); margin-bottom: 6px;
}
.kc-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--kc-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--kc-navy); background: #fff;
  transition: border-color var(--kc-t), box-shadow var(--kc-t);
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.kc-form-control:focus {
  border-color: var(--kc-orange);
  box-shadow: 0 0 0 3px rgba(255,155,113,.15);
}
.kc-form-control::placeholder { color: #b0b0b0; }
textarea.kc-form-control { min-height: 130px; resize: vertical; }
.kc-form-submit {
  width: 100%; padding: 14px;
  background: var(--kc-orange); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--kc-t), transform .15s ease;
}
.kc-form-submit:hover {
  background: var(--kc-orange-dark); transform: translateY(-1px);
}

/* ============================================================
   SPECIALIST SERVICES PILLS
   ============================================================ */
.kc-specialist-services {
  padding: 64px 0;
  background: var(--kc-soft-bg); text-align: center;
}
.kc-specialist-services .kc-section-title {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem); margin-bottom: 6px;
}
.kc-services-pills {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center; margin-top: 26px;
}
.kc-pill-link {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  border: 1.5px solid var(--kc-border); border-radius: 50px;
  font-size: 13px; font-weight: 500; color: var(--kc-navy);
  text-decoration: none; background: #fff;
  transition: background var(--kc-t), border-color var(--kc-t), color var(--kc-t);
}
.kc-pill-link:hover {
  background: var(--kc-orange); border-color: var(--kc-orange); color: #fff;
}

/* ============================================================
   GLOBAL FOOTER
   ============================================================ */
.kc-footer { font-family: 'Inter', sans-serif; }

.kc-footer-main {
  background: var(--kc-footer);
  padding: 80px 0 44px;
  color: rgba(255,255,255,.8);
}
.kc-footer-logo { display: inline-block; margin-bottom: 16px; }
.kc-footer-logo img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
}
.kc-footer-brand p {
  font-size: 14px; line-height: 1.72;
  color: rgba(255,255,255,.6); margin-bottom: 20px; max-width: 290px;
}
.kc-footer-reg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.kc-footer-reg span {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.kc-footer-reg i { color: var(--kc-orange); font-size: 12px; width: 14px; }

.kc-footer-links h4,
.kc-footer-contact h4 {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
  color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.kc-footer-links h4 + h4 { margin-top: 26px; }

.kc-footer-links ul,
.kc-footer-contact ul { list-style: none; margin: 0; padding: 0; }
.kc-footer-links ul li { margin-bottom: 10px; }
.kc-footer-links ul li a {
  color: rgba(255,255,255,.62); font-size: 13px; text-decoration: none;
  transition: color var(--kc-t), padding-left var(--kc-t);
}
.kc-footer-links ul li a:hover { color: var(--kc-orange); padding-left: 4px; }

.kc-footer-cookie-btn {
  background: none; border: none; padding: 0;
  color: rgba(255,255,255,.62); font-size: 13px; cursor: pointer;
  text-decoration: underline; font-family: 'Inter', sans-serif;
  transition: color var(--kc-t);
}
.kc-footer-cookie-btn:hover { color: var(--kc-orange); }

.kc-footer-contact ul li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6;
  margin-bottom: 12px;
}
.kc-footer-contact ul li i {
  color: var(--kc-orange); font-size: 13px;
  margin-top: 3px; flex-shrink: 0; width: 14px;
}
.kc-footer-contact ul li a {
  color: rgba(255,255,255,.75); text-decoration: none; transition: color var(--kc-t);
}
.kc-footer-contact ul li a:hover { color: var(--kc-orange); }

.kc-footer-map-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,155,113,.8); font-size: 13px; font-weight: 500;
  text-decoration: none; margin: 12px 0 20px;
  transition: color var(--kc-t);
}
.kc-footer-map-link:hover { color: var(--kc-orange); }

.kc-footer-social { display: flex; gap: 10px; }
.kc-footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.62);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none;
  transition: background var(--kc-t), color var(--kc-t);
}
.kc-footer-social a:hover { background: var(--kc-orange); color: #fff; }

.kc-footer-bottom {
  background: rgba(0,0,0,.28); padding: 16px 0;
  color: rgba(255,255,255,.42); font-size: 12px;
}
.kc-footer-bottom .container {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.kc-footer-bottom p { margin: 0; }
.kc-footer-cqc { display: flex; align-items: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .kc-hero h1 { font-size: 2.4rem; }
}

@media (max-width: 991px) {
  .kc-hero { padding: 64px 0 60px; text-align: center; }
  .kc-hero::before { display: none; }
  .kc-hero-actions, .kc-hero-trust { justify-content: center; }
  .kc-hero-sub { margin-left: auto; margin-right: auto; }
  .kc-hero-image-wrap { margin-top: 48px; }
  .kc-hero-badge { left: 0; }
  .kc-why-image { margin-bottom: 40px; }
  .kc-why-image img { height: 380px; }
  .kc-section-sub { max-width: 100%; }
}

@media (max-width: 767px) {
  .kc-trust-bar-inner { gap: 14px; }
  .kc-trust-item { font-size: 11px; }
  .kc-trust-separator { display: none; }
  .kc-hero-image img { height: 300px; }
  .kc-services, .kc-why, .kc-testimonials, .kc-blog, .kc-contact-section {
    padding: 68px 0;
  }
  .kc-form { padding: 26px 18px; }
  .kc-footer-main { padding: 56px 0 32px; }
  .kc-footer-brand p { max-width: 100%; }
  .kc-footer-bottom .container { flex-direction: column; text-align: center; }
  .kc-stats-row { grid-template-columns: 1fr 1fr; }
  .kc-hero-badge { position: static; margin-top: 16px; display: inline-flex; }
  .kc-hero-image-wrap { flex-direction: column; align-items: center; }
}

/* ============================================================
   INNER PAGE HERO / BREADCRUMB OVERLAY
   Applies to all existing .breadcrumb-area sections site-wide
   ============================================================ */
.breadcrumb-area {
  position: relative;
  isolation: isolate;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.breadcrumb-area::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,30,60,.94) 0%, rgba(0,28,76,.88) 55%, rgba(255,155,113,.15) 100%);
  z-index: 1; pointer-events: none;
}
.breadcrumb-area > .container { position: relative; z-index: 2; }

.tp-breadcrumb-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700; color: #fff;
  margin-bottom: 0; line-height: 1.2;
}
.tp-breadcrumb { padding: 48px 0 40px; }
.tp-breadcrumb-link {
  font-family: 'Inter', sans-serif; font-size: 13px; margin-bottom: 12px;
}
.tp-breadcrumb-link a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .22s ease; }
.tp-breadcrumb-link a:hover { color: var(--kc-orange); }
.tp-breadcrumb-link span { color: rgba(255,255,255,.45); }

/* ============================================================
   POLICY / CONTENT PAGE LAYOUT
   ============================================================ */
.kc-policy-section { padding: 80px 0 90px; background: #fff; }
.kc-policy-section-alt { padding: 80px 0 90px; background: var(--kc-light); }

.kc-content-body { font-family: 'Inter', sans-serif; color: var(--kc-body); }
.kc-content-body h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem;
  font-weight: 700; color: var(--kc-navy);
  margin: 44px 0 14px; padding-top: 24px;
  border-top: 2px solid var(--kc-border);
}
.kc-content-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.kc-content-body h3 {
  font-family: 'Sora', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--kc-navy); margin: 28px 0 10px;
}
.kc-content-body h4 {
  font-family: 'Sora', sans-serif; font-size: .97rem;
  font-weight: 700; color: var(--kc-navy); margin: 20px 0 8px;
}
.kc-content-body p {
  font-size: 15px; line-height: 1.78; margin-bottom: 16px;
}
.kc-content-body ul, .kc-content-body ol {
  font-size: 15px; line-height: 1.78; padding-left: 20px; margin-bottom: 16px;
}
.kc-content-body li { margin-bottom: 8px; }
.kc-content-body a { color: var(--kc-orange-dark); text-decoration: underline; }
.kc-content-body a:hover { color: var(--kc-navy); }
.kc-content-body strong { color: var(--kc-navy); }

.kc-placeholder {
  display: inline-block; background: #fff3cd; color: #856404;
  border: 1px solid #ffc107; border-radius: 4px;
  padding: 1px 7px; font-size: 11px; font-weight: 700;
  font-family: 'Inter', sans-serif; vertical-align: middle;
}
.kc-review-note {
  background: #fff3cd; border-left: 3px solid #ffc107;
  border-radius: 0 8px 8px 0; padding: 14px 18px;
  margin: 20px 0; font-size: 13px; color: #664d03;
  font-family: 'Inter', sans-serif;
}
.kc-callout {
  background: var(--kc-soft-bg); border-left: 3px solid var(--kc-orange);
  border-radius: 0 var(--kc-radius) var(--kc-radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.kc-callout p:last-child { margin: 0; }
.kc-callout-navy {
  background: var(--kc-navy); border-radius: var(--kc-radius);
  padding: 28px 32px; margin: 32px 0; color: rgba(255,255,255,.88);
}
.kc-callout-navy h3, .kc-callout-navy h4 { color: #fff; margin-top: 0; }
.kc-callout-navy p { color: rgba(255,255,255,.88); }
.kc-callout-navy p:last-child { margin: 0; }
.kc-callout-navy a:not([class]) { color: var(--kc-orange); }
.kc-callout-navy .kc-btn-primary { color: #fff; }
.kc-callout-navy .kc-btn-primary:hover { color: #fff; }

/* ============================================================
   TABLE STYLES
   ============================================================ */
.kc-table-wrap {
  overflow-x: auto; margin: 24px 0;
  border-radius: var(--kc-radius); border: 1px solid var(--kc-border);
}
.kc-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Inter', sans-serif; font-size: 14px; background: #fff;
}
.kc-table thead th {
  background: var(--kc-navy); color: #fff;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  padding: 14px 18px; text-align: left;
}
.kc-table tbody td {
  padding: 13px 18px; color: var(--kc-body);
  border-bottom: 1px solid var(--kc-border); vertical-align: top;
}
.kc-table tbody tr:last-child td { border-bottom: none; }
.kc-table tbody tr:nth-child(even) td { background: var(--kc-light); }
.kc-table tbody tr:hover td { background: var(--kc-soft-bg); }

/* ============================================================
   GLOBAL INNER-PAGE FORM OVERRIDES
   ============================================================ */
.tp-contact-form-input input,
.tp-contact-form-input textarea,
.tp-contact-form-input select,
.tp-getin-form-input input,
.tp-getin-form-input textarea {
  border: 1.5px solid var(--kc-border) !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--kc-navy) !important;
  transition: border-color .22s ease, box-shadow .22s ease !important;
}
.tp-contact-form-input input:focus,
.tp-contact-form-input textarea:focus {
  border-color: var(--kc-orange) !important;
  box-shadow: 0 0 0 3px rgba(255,155,113,.15) !important;
  outline: none !important;
}
.tp-contact-form-submit .tp-btn,
.postbox-review-form .tp-btn {
  background: var(--kc-orange) !important;
  border-radius: 50px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important; font-size: 15px !important;
  padding: 12px 30px !important;
  border: none !important; color: #fff !important;
  transition: background .22s ease, transform .15s ease !important;
}
.tp-contact-form-submit .tp-btn:hover,
.postbox-review-form .tp-btn:hover {
  background: var(--kc-orange-dark) !important;
  transform: translateY(-1px) !important;
}

/* ============================================================
   CONTACT PAGE REFINEMENTS
   ============================================================ */
.tp-contact-item { margin-bottom: 20px; }
.tp-contact-item span {
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--kc-body); display: block; margin-bottom: 4px;
}
.tp-contact-item a {
  font-family: 'Sora', sans-serif; font-size: 1rem;
  font-weight: 600; color: var(--kc-navy); text-decoration: none;
}
.tp-contact-item a:hover { color: var(--kc-orange-dark); }
.tp-contact-form-title {
  font-family: 'Sora', sans-serif; font-weight: 700; color: var(--kc-navy);
}

/* ============================================================
   PRICING PAGE COMPONENTS
   ============================================================ */
.kc-pricing-intro {
  background: var(--kc-soft-bg); border-left: 3px solid var(--kc-orange);
  border-radius: 0 var(--kc-radius) var(--kc-radius) 0;
  padding: 20px 24px; margin-bottom: 36px;
  font-size: 15px; color: var(--kc-body); line-height: 1.7;
}
.kc-funding-option {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 20px 22px;
  margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.kc-funding-option:hover { border-color: var(--kc-orange); box-shadow: var(--kc-shadow); }
.kc-funding-option-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--kc-soft-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--kc-orange); font-size: 17px; flex-shrink: 0; margin-top: 2px;
}
.kc-funding-option h4 {
  font-family: 'Sora', sans-serif; font-size: .93rem;
  font-weight: 700; color: var(--kc-navy); margin: 0 0 5px;
}
.kc-funding-option p { font-size: 13px; color: var(--kc-body); margin: 0; line-height: 1.6; }

/* ============================================================
   EMERGENCY / MOBILE STICKY CALL BUTTON
   ============================================================ */
.kc-emergency-floating {
  position: fixed; bottom: 22px; right: 18px; z-index: 9999;
  display: none;
}
.kc-emergency-floating a {
  display: flex; align-items: center; gap: 8px;
  background: #e74c3c; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  padding: 12px 18px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(231,76,60,.5);
  animation: kc-pulse 2.8s ease infinite;
}
@keyframes kc-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(231,76,60,.4); }
  50% { box-shadow: 0 6px 30px rgba(231,76,60,.7); }
}
@media (max-width: 767px) { .kc-emergency-floating { display: block; } }

/* ============================================================
   SIDEBAR (policy pages with sidebar nav)
   ============================================================ */
.kc-sidebar-nav {
  background: var(--kc-light); border-radius: var(--kc-radius); padding: 22px;
  position: sticky; top: 90px;
}
.kc-sidebar-nav h5 {
  font-family: 'Sora', sans-serif; font-size: .85rem; font-weight: 700;
  color: var(--kc-navy); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.kc-sidebar-nav ul { list-style: none; padding: 0; margin: 0; }
.kc-sidebar-nav li { margin-bottom: 8px; }
.kc-sidebar-nav a {
  color: var(--kc-body); font-size: 13px; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: 6px;
  transition: background .22s ease, color .22s ease;
}
.kc-sidebar-nav a:hover, .kc-sidebar-nav a.active {
  background: rgba(255,155,113,.1); color: var(--kc-orange-dark);
}
.kc-sidebar-nav a i { color: var(--kc-orange); font-size: 11px; width: 12px; }

/* Responsive inner pages */
@media (max-width: 767px) {
  .kc-policy-section, .kc-policy-section-alt { padding: 56px 0 60px; }
  .breadcrumb-area { min-height: 160px; }
  .tp-breadcrumb { padding: 36px 0 28px; }
  .kc-content-body h2 { font-size: 1.25rem; }
  .kc-sidebar-nav { position: static; margin-bottom: 30px; }
}

/* =====================================================
   EMERGENCY PAGE — Contact Panels & Emergency Cards
   ===================================================== */

/* Emergency contact quick-dial cards */
.kc-emergency-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  color: #fff !important;
  text-align: center;
}
.kc-emergency-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  text-decoration: none;
}
.kc-emergency-contact-card--red  { background: #dc3545; }
.kc-emergency-contact-card--blue { background: #005EB8; }
.kc-emergency-contact-card--grey { background: #5E5F63; }

.kc-ecc-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.kc-ecc-label {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 4px;
}
.kc-ecc-sub {
  font-size: .78rem;
  opacity: .85;
}

/* Contact info panels */
.kc-contact-panel {
  background: #fff;
  border: 1.5px solid var(--kc-border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kc-contact-panel--primary {
  background: var(--kc-navy);
  border-color: var(--kc-navy);
  color: #fff;
}
.kc-contact-panel--primary h4,
.kc-contact-panel--primary .kc-contact-panel__hours,
.kc-contact-panel--primary .kc-contact-panel__note { color: rgba(255,255,255,.8); }
.kc-contact-panel--primary .kc-contact-panel__number { color: #ff9b71; }

.kc-contact-panel__icon {
  font-size: 1.5rem;
  color: var(--kc-primary);
  margin-bottom: 8px;
}
.kc-contact-panel--primary .kc-contact-panel__icon { color: #ff9b71; }

.kc-contact-panel h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 2px;
}
.kc-contact-panel__hours {
  font-size: .82rem;
  color: #5E5F63;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.kc-contact-panel__number {
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--kc-navy);
  text-decoration: none;
  line-height: 1.2;
  margin-top: auto;
}
.kc-contact-panel__number:hover { color: var(--kc-primary); text-decoration: none; }
.kc-contact-panel__note {
  font-size: .82rem;
  color: #5E5F63;
  margin-top: 6px;
}

/* =====================================================
   BLOG — Listing & Post
   ===================================================== */

.kc-blog-section { padding: 80px 0; }
.kc-blog-post-section { padding: 80px 0; }

/* Category filter bar */
.kc-blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.kc-blog-filter-pill {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--kc-border);
  background: #fff;
  color: var(--kc-body);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.kc-blog-filter-pill:hover,
.kc-blog-filter-pill.active {
  background: var(--kc-navy);
  border-color: var(--kc-navy);
  color: #fff;
  text-decoration: none;
}

/* Blog card */
.kc-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--kc-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.kc-blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }

.kc-blog-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.kc-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.kc-blog-card:hover .kc-blog-card__img-wrap img { transform: scale(1.05); }
.kc-blog-card__cat {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: var(--kc-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.kc-blog-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.kc-blog-card__date {
  font-size: .78rem;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kc-blog-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.kc-blog-card__title a { color: var(--kc-navy); text-decoration: none; }
.kc-blog-card__title a:hover { color: var(--kc-primary); }
.kc-blog-card__excerpt {
  font-size: .87rem;
  color: var(--kc-body);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.kc-blog-card__read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--kc-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.kc-blog-card__read-more:hover { color: var(--kc-navy); text-decoration: none; }

/* Pagination */
.kc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.kc-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--kc-border);
  background: #fff;
  color: var(--kc-navy);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.kc-page-btn:hover { background: var(--kc-navy); color: #fff; border-color: var(--kc-navy); text-decoration: none; }
.kc-page-numbers { display: flex; gap: 6px; }
.kc-page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--kc-border);
  background: #fff;
  color: var(--kc-navy);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.kc-page-num:hover,
.kc-page-num.active {
  background: var(--kc-navy);
  border-color: var(--kc-navy);
  color: #fff;
  text-decoration: none;
}

/* Article / single post */
.kc-article { background: #fff; }
.kc-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: .83rem;
  color: #888;
}
.kc-article__meta span { display: flex; align-items: center; gap: 5px; }
.kc-article__cat-badge {
  background: var(--kc-primary);
  color: #fff !important;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
}
.kc-article__featured-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.kc-article__featured-img img { width: 100%; height: auto; display: block; }
.kc-article__body { line-height: 1.8; font-size: 1rem; }
.kc-article__body h2 { font-size: 1.45rem; margin-top: 2em; }
.kc-article__body h3 { font-size: 1.15rem; margin-top: 1.6em; }
.kc-article__body img { max-width: 100%; border-radius: 8px; }

/* Social share */
.kc-article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1.5px solid var(--kc-border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--kc-body);
}
.kc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.kc-share-btn:hover { opacity: .85; text-decoration: none; }
.kc-share-btn--wa   { background: #25D366; color: #fff !important; }
.kc-share-btn--fb   { background: #1877F2; color: #fff !important; }
.kc-share-btn--copy { background: var(--kc-border); color: var(--kc-navy); }

/* Sidebar widgets */
.kc-sidebar-widget {
  background: #fff;
  border: 1.5px solid var(--kc-border);
  border-radius: 12px;
  padding: 24px;
}
.kc-sidebar-widget--cta {
  background: var(--kc-warm-bg);
  border-color: transparent;
}
.kc-sidebar-widget__title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--kc-border);
}
.kc-sidebar-post {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--kc-border);
}
.kc-sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.kc-sidebar-post__img { flex-shrink: 0; border-radius: 6px; overflow: hidden; width: 80px; height: 60px; }
.kc-sidebar-post__img img { width: 100%; height: 100%; object-fit: cover; }
.kc-sidebar-post__text a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--kc-navy);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.kc-sidebar-post__text a:hover { color: var(--kc-primary); }
.kc-sidebar-post__text time { font-size: .75rem; color: #999; }
.kc-sidebar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kc-navy);
  text-decoration: none;
}
.kc-sidebar-phone:hover { color: var(--kc-primary); text-decoration: none; }
.kc-check-list { list-style: none; }
.kc-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--kc-border);
  font-size: .9rem;
}
.kc-check-list li:last-child { border-bottom: none; }

/* =====================================================
   JOBS — Listing & Post
   ===================================================== */

.kc-jobs-section  { padding: 60px 0 80px; }
.kc-jobs-perks-strip { background: var(--kc-navy); padding: 40px 0; }
.kc-perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
}
.kc-perk-item i { font-size: 1.8rem; color: #ff9b71; }

/* Filter bar */
.kc-jobs-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 36px;
  background: var(--kc-warm-bg);
  padding: 20px 24px;
  border-radius: 12px;
}
.kc-jobs-filter-form { display: flex; flex-wrap: wrap; gap: 16px; flex: 1; align-items: flex-end; }
.kc-jobs-filter-group { display: flex; flex-direction: column; gap: 4px; min-width: 180px; }
.kc-jobs-filter-group label { font-size: .78rem; font-weight: 600; color: var(--kc-navy); text-transform: uppercase; letter-spacing: .05em; }
.kc-jobs-filter-group select {
  padding: 9px 14px;
  border: 1.5px solid var(--kc-border);
  border-radius: 8px;
  font-size: .9rem;
  background: #fff;
  color: var(--kc-navy);
  cursor: pointer;
}
.kc-jobs-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--kc-body);
  text-decoration: none;
  padding: 9px 0;
}
.kc-jobs-filter-clear:hover { color: var(--kc-primary); text-decoration: none; }
.kc-jobs-count { font-size: .82rem; color: var(--kc-body); margin: 0 0 0 auto; }

/* Job card */
.kc-job-card {
  background: #fff;
  border: 1.5px solid var(--kc-border);
  border-radius: 14px;
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.kc-job-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.kc-job-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.kc-job-card__title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.kc-job-card__title a { color: var(--kc-navy); text-decoration: none; }
.kc-job-card__title a:hover { color: var(--kc-primary); }
.kc-job-card__meta { display: flex; flex-direction: column; gap: 5px; font-size: .82rem; color: var(--kc-body); margin-bottom: 12px; }
.kc-job-card__meta span { display: flex; align-items: center; gap: 6px; }
.kc-job-card__excerpt { font-size: .85rem; color: var(--kc-body); line-height: 1.5; flex: 1; margin-bottom: 18px; }
.kc-job-card__closes { font-size: .75rem; color: #dc3545; font-weight: 600; }
.kc-job-card__btn { margin-top: auto; justify-content: center; }

/* Badges */
.kc-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.kc-badge--navy   { background: var(--kc-navy); color: #fff; }
.kc-badge--teal   { background: #0891b2; color: #fff; }
.kc-badge--grey   { background: #5E5F63; color: #fff; }
.kc-badge--orange { background: var(--kc-primary); color: #fff; }

/* Job summary bar (single post) */
.kc-job-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--kc-warm-bg);
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 28px;
}
.kc-job-summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--kc-navy);
}
.kc-job-summary-item i { color: var(--kc-primary); }

/* Application form wrap */
.kc-application-form-wrap {
  background: var(--kc-warm-bg);
  padding: 36px 32px;
  border-radius: 14px;
  margin-top: 40px;
}
@media (max-width: 575px) { .kc-application-form-wrap { padding: 24px 18px; } }

/* =====================================================
   FORM — Shared components (radio groups, form checks)
   ===================================================== */

.kc-form-group { display: flex; flex-direction: column; gap: 6px; }
.kc-form-group label { font-size: .85rem; font-weight: 600; color: var(--kc-navy); }
.kc-form-group input[type=text],
.kc-form-group input[type=email],
.kc-form-group input[type=tel],
.kc-form-group input[type=file],
.kc-form-group select,
.kc-form-group textarea {
  border: 1.5px solid var(--kc-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--kc-navy);
  background: #fff;
  transition: border-color .2s;
}
.kc-form-group input:focus,
.kc-form-group select:focus,
.kc-form-group textarea:focus {
  outline: none;
  border-color: var(--kc-primary);
  box-shadow: 0 0 0 3px rgba(255,155,113,.15);
}
.kc-form-hint { font-size: .78rem; color: #888; margin-top: 4px; }

.kc-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--kc-body);
  line-height: 1.5;
}
.kc-form-check input[type=checkbox] { flex-shrink: 0; margin-top: 3px; accent-color: var(--kc-primary); width: 16px; height: 16px; }

.kc-radio-group { display: flex; gap: 24px; flex-wrap: wrap; padding: 6px 0; }
.kc-radio-group label { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }
.kc-radio-group input { accent-color: var(--kc-primary); width: 16px; height: 16px; }

.kc-form-success {
  background: #d1fae5;
  border: 1.5px solid #34d399;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  color: #065f46;
}
.kc-form-success i { font-size: 2rem; margin-bottom: 10px; color: #059669; display: block; }
.kc-form-success h4 { font-family: 'Sora', sans-serif; margin-bottom: 8px; }
.kc-form-error {
  background: #fee2e2;
  border: 1.5px solid #f87171;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .88rem;
  color: #dc2626;
}

/* =====================================================
   NEWSLETTER WIDGET (sidebar + strip)
   ===================================================== */

.kc-newsletter-widget {
  background: var(--kc-navy);
  border-radius: 14px;
  padding: 28px 24px;
  color: #fff;
  position: relative;
}
.kc-newsletter-widget__icon { font-size: 2rem; color: #ff9b71; margin-bottom: 12px; }
.kc-newsletter-widget__title { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.kc-newsletter-widget__sub { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.55; margin-bottom: 18px; }
.kc-newsletter-widget .kc-form-group input { color: var(--kc-navy); }
.kc-newsletter-widget .kc-form-check { color: rgba(255,255,255,.8); font-size: .78rem; }
.kc-newsletter-widget .kc-form-check input { accent-color: #ff9b71; }
.kc-nl-success {
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .88rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.kc-nl-success i { color: #4ade80; font-size: 1.1rem; }
.kc-nl-error {
  background: rgba(239,68,68,.18);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .82rem;
  color: #fecaca;
  margin-bottom: 10px;
}

/* =====================================================
   CARE ASSESSMENT — Multi-step form
   ===================================================== */

.kc-assessment-section { padding: 80px 0; }

.kc-assessment-intro {
  background: var(--kc-warm-bg);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 36px;
  font-size: 1rem;
  color: var(--kc-body);
  line-height: 1.7;
}

/* Progress bar */
.kc-step-progress { margin-bottom: 32px; }
.kc-step-progress__bar {
  height: 6px;
  background: var(--kc-border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.kc-step-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--kc-primary), #ff7934);
  border-radius: 100px;
  transition: width .4s ease;
}
.kc-step-progress__label { font-size: .8rem; color: #888; font-weight: 600; text-align: right; margin: 0; }

/* Step content */
.kc-step__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 8px;
}
.kc-step__sub { font-size: .87rem; color: var(--kc-body); margin-bottom: 20px; }
.kc-step-error { color: #dc2626; font-size: .83rem; margin-top: 8px; font-weight: 600; }

/* Option grid (radio + checkbox cards) */
.kc-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
@media (min-width: 576px) { .kc-option-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .kc-option-grid { grid-template-columns: repeat(4, 1fr); } }
.kc-option-grid--multi.kc-option-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .kc-option-grid--multi.kc-option-grid { grid-template-columns: repeat(3, 1fr); } }

.kc-option-card { cursor: pointer; }
.kc-option-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.kc-option-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 14px;
  border: 2px solid var(--kc-border);
  border-radius: 12px;
  background: #fff;
  transition: all .2s;
}
.kc-option-card__inner i { font-size: 1.6rem; color: var(--kc-primary); }
.kc-option-card__inner strong { font-size: .9rem; color: var(--kc-navy); }
.kc-option-card__inner small { font-size: .75rem; color: var(--kc-body); line-height: 1.3; }

.kc-option-card input:checked + .kc-option-card__inner,
.kc-option-card:has(input:checked) .kc-option-card__inner {
  border-color: var(--kc-primary);
  background: #fff8f5;
  box-shadow: 0 0 0 3px rgba(255,155,113,.2);
}
.kc-option-card:hover .kc-option-card__inner { border-color: var(--kc-primary); }

/* Step navigation buttons */
.kc-step-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1.5px solid var(--kc-border);
}

/* Trust badges under assessment */
.kc-assess-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1.5px solid var(--kc-border);
  font-size: .8rem;
  color: var(--kc-body);
  font-weight: 600;
}
.kc-assess-trust span { display: flex; align-items: center; gap: 6px; }
.kc-assess-trust i { color: var(--kc-primary); }

/* Success screen */
.kc-assess-success {
  background: #d1fae5;
  border: 2px solid #34d399;
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  color: #065f46;
}
.kc-assess-success__icon { font-size: 3rem; color: #059669; margin-bottom: 16px; }
.kc-assess-success h2 { font-family: 'Sora', sans-serif; color: #065f46; margin-bottom: 12px; }

/* Empty state (shared) */
.kc-empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--kc-body);
}
.kc-empty-state i { font-size: 3rem; color: var(--kc-border); margin-bottom: 16px; display: block; }
.kc-empty-state h3 { font-family: 'Sora', sans-serif; font-size: 1.3rem; color: var(--kc-navy); margin-bottom: 10px; }
.kc-empty-state p { font-size: .95rem; max-width: 480px; margin: 0 auto 24px; }

/* Outline button */
.kc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--kc-navy);
  background: transparent;
  color: var(--kc-navy);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.kc-btn-outline:hover { background: var(--kc-navy); color: #fff; text-decoration: none; }

/* =====================================================
   NEWSLETTER STRIP (footer above)
   ===================================================== */
.kc-newsletter-strip {
  background: var(--kc-navy);
  padding: 56px 0;
}
.kc-newsletter-strip__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.kc-newsletter-strip__sub { font-size: .9rem; color: rgba(255,255,255,.72); margin: 0; }
.kc-newsletter-strip__fields {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.kc-newsletter-strip__fields input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--kc-navy);
  background: #fff;
}
.kc-newsletter-strip__fields input:focus { outline: 2px solid #ff9b71; }
.kc-newsletter-strip__gdpr {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}
.kc-newsletter-strip__gdpr input { accent-color: #ff9b71; }
@media (max-width: 575px) {
  .kc-newsletter-strip__fields { flex-direction: column; }
  .kc-newsletter-strip__fields input { width: 100%; }
}

/* ============================================================
   FAQ KNOWLEDGE CENTRE
   ============================================================ */

/* ── Section wrapper ─────────────────────────────────────────── */
.kc-faq-section { padding: 72px 0 80px; background: #f8fafc; }

/* ── Hero / Search ───────────────────────────────────────────── */
.kc-faq-hero { text-align: center; margin-bottom: 40px; }
.kc-faq-hero__sub { color: #64748b; font-size: .95rem; margin-bottom: 24px; }
.kc-faq-search-wrap {
  position: relative; max-width: 640px; margin: 0 auto;
  display: flex; align-items: center;
}
.kc-faq-search-icon {
  position: absolute; left: 18px; color: #94a3b8; font-size: 1rem; pointer-events: none;
}
.kc-faq-search {
  width: 100%; padding: 16px 52px; border: 2px solid #e2e8f0; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--kc-navy);
  background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
  -webkit-appearance: none;
}
.kc-faq-search::placeholder { color: #94a3b8; }
.kc-faq-search:focus { border-color: var(--kcs-orange, #ff7934); box-shadow: 0 0 0 4px rgba(255,121,52,.12); }
.kc-faq-clear {
  position: absolute; right: 16px; display: flex; align-items: center;
  background: none; border: none; cursor: pointer; color: #94a3b8; font-size: 1rem;
  padding: 4px; border-radius: 50%;
}
.kc-faq-clear:hover { color: var(--kc-navy); }

/* ── Category filter pills ───────────────────────────────────── */
.kc-faq-cats {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 40px;
}
.kc-faq-cat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px; border: 2px solid #e2e8f0;
  background: #fff; color: #475569; font-family: 'Inter', sans-serif;
  font-size: .85rem; font-weight: 500; cursor: pointer; white-space: nowrap;
  transition: border-color .18s, background .18s, color .18s;
}
.kc-faq-cat:hover { border-color: var(--kcs-orange, #ff7934); color: var(--kcs-orange, #ff7934); }
.kc-faq-cat.active {
  border-color: var(--kcs-orange, #ff7934); background: var(--kcs-orange, #ff7934);
  color: #fff;
}

/* ── Featured FAQs ───────────────────────────────────────────── */
.kc-faq-featured-wrap { margin-bottom: 56px; }
.kc-faq-featured-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.kc-faq-featured-head i { color: #f59e0b; font-size: 1.1rem; }
.kc-faq-featured-head h2 {
  font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: var(--kc-navy); margin: 0;
}
.kc-faq-featured-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.kc-faq-featured-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 22px 24px; display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.kc-faq-featured-card:hover { border-color: var(--kcs-orange, #ff7934); box-shadow: 0 4px 20px rgba(255,121,52,.12); }
.kc-faq-featured-cat {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--kcs-orange, #ff7934);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px;
}
.kc-faq-featured-q {
  font-family: 'Sora', sans-serif; font-size: .98rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 10px; line-height: 1.4;
}
.kc-faq-featured-a { font-size: .85rem; color: #475569; line-height: 1.6; flex: 1; }
.kc-faq-featured-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  background: none; border: none; color: var(--kcs-orange, #ff7934);
  font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; padding: 0;
}
.kc-faq-featured-more:hover { text-decoration: underline; }

/* ── FAQ group (category section) ───────────────────────────── */
.kc-faq-group { margin-bottom: 48px; }
.kc-faq-group-head {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 2px solid #e2e8f0;
}
.kc-faq-group-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--kcs-orange-bg, #fff4ef); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.kc-faq-group-icon i { color: var(--kcs-orange, #ff7934); font-size: 1.1rem; }
.kc-faq-group-title {
  font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 2px;
}
.kc-faq-group-count { font-size: .8rem; color: #94a3b8; }

/* ── FAQ list + accordion ───────────────────────────────────── */
.kc-faq-list { display: flex; flex-direction: column; gap: 2px; }
.kc-faq-item {
  border: 1px solid #e2e8f0; border-radius: 10px; background: #fff;
  overflow: hidden; transition: border-color .18s, box-shadow .18s;
}
.kc-faq-item.open,
.kc-faq-item:hover { border-color: var(--kcs-orange, #ff7934); }
.kc-faq-item.open { box-shadow: 0 2px 12px rgba(255,121,52,.1); }

.kc-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px 22px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Inter', sans-serif; font-size: .97rem;
  font-weight: 600; color: var(--kc-navy); line-height: 1.45;
}
.kc-faq-q:focus-visible { outline: 2px solid var(--kcs-orange, #ff7934); outline-offset: -2px; }
.kc-faq-q span { flex: 1; }
.kc-faq-chevron {
  flex-shrink: 0; color: var(--kcs-orange, #ff7934); font-size: .85rem;
  transition: transform .22s ease;
}
.kc-faq-item.open .kc-faq-chevron { transform: rotate(180deg); }

.kc-faq-a { border-top: 1px solid #f1f5f9; }
.kc-faq-a-inner { padding: 20px 22px; }
.kc-faq-a-inner p { font-size: .93rem; color: #374151; line-height: 1.75; margin: 0 0 12px; }
.kc-faq-a-inner p:last-child { margin-bottom: 0; }
.kc-faq-a-inner ul, .kc-faq-a-inner ol {
  font-size: .93rem; color: #374151; line-height: 1.75;
  padding-left: 22px; margin: 0 0 12px;
}
.kc-faq-a-inner ul li, .kc-faq-a-inner ol li { margin-bottom: 4px; }
.kc-faq-a-inner h4 { font-size: .95rem; font-weight: 600; color: var(--kc-navy); margin: 12px 0 4px; }
.kc-faq-a-inner a { color: var(--kcs-orange, #ff7934); }
.kc-faq-a-inner a:hover { text-decoration: underline; }
.kc-faq-a-inner strong { color: var(--kc-navy); }

/* Tags */
.kc-faq-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.kc-faq-tag {
  padding: 3px 10px; background: #f1f5f9; border-radius: 20px;
  font-size: .75rem; color: #64748b; font-weight: 500;
}

/* ── No results ─────────────────────────────────────────────── */
.kc-faq-noresults {
  text-align: center; padding: 60px 20px; color: #94a3b8;
}
.kc-faq-noresults i { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.kc-faq-noresults p { font-size: 1rem; color: #64748b; }
.kc-faq-noresults a { color: var(--kcs-orange, #ff7934); }

/* ── CTA row ─────────────────────────────────────────────────── */
.kc-faq-cta-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px; border-top: 2px solid #e2e8f0; padding-top: 48px;
}
.kc-faq-cta {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 28px; text-align: center; display: flex; flex-direction: column;
  align-items: center;
}
.kc-faq-cta-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--kcs-orange-bg, #fff4ef); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.kc-faq-cta-icon i { color: var(--kcs-orange, #ff7934); font-size: 1.3rem; }
.kc-faq-cta h3 {
  font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 10px;
}
.kc-faq-cta p { font-size: .88rem; color: #475569; line-height: 1.6; flex: 1; margin-bottom: 20px; }
.kc-faq-cta .kc-btn-primary { font-size: .88rem; padding: 12px 22px; }

/* ── Admin stat pills (reusable) ─────────────────────────────── */
.ka-stat-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.ka-stat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: #f1f5f9; border-radius: 20px;
  font-size: .82rem; font-weight: 500; color: #475569;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .kc-faq-cta-row { grid-template-columns: 1fr; }
  .kc-faq-featured-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .kc-faq-cats { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .kc-faq-featured-grid { grid-template-columns: 1fr; }
  .kc-faq-q { font-size: .9rem; padding: 14px 16px; }
  .kc-faq-a-inner { padding: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   FAQ Knowledge Centre — 6-6 card grid layout (overrides above)
   ══════════════════════════════════════════════════════════════ */

/* Two-column grid container */
.kc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* ── Category card ─────────────────────────────────────────── */
.kc-faq-grid .kc-faq-group {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 2px 12px rgba(0,28,76,.05);
  transition: box-shadow .22s, transform .22s;
}
.kc-faq-grid .kc-faq-group:hover {
  box-shadow: 0 8px 32px rgba(0,28,76,.11);
  transform: translateY(-2px);
}

/* ── Card header — navy with icon ──────────────────────────── */
.kc-faq-grid .kc-faq-group-head {
  background: var(--kc-navy, #001C4C);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  border-bottom: none;
}
.kc-faq-grid .kc-faq-group-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 121, 52, .18);
  display: flex; align-items: center; justify-content: center;
}
.kc-faq-grid .kc-faq-group-icon i {
  color: #ff9b71; font-size: 1rem;
}
.kc-faq-grid .kc-faq-group-title {
  font-family: 'Sora', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: #fff; margin: 0 0 2px;
}
.kc-faq-grid .kc-faq-group-count {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
}

/* ── Accordion items — compact, divider-only ───────────────── */
.kc-faq-grid .kc-faq-list {
  padding: 4px 0;
  gap: 0;
}
.kc-faq-grid .kc-faq-item {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: none;
}
.kc-faq-grid .kc-faq-item:last-child {
  border-bottom: none;
}
.kc-faq-grid .kc-faq-item:hover {
  background: #fafbfc;
  border-color: #f1f5f9;
  box-shadow: none;
}
.kc-faq-grid .kc-faq-item.open {
  background: #fffbf8;
  border-color: #f1f5f9;
  box-shadow: none;
}
/* Orange left accent when open */
.kc-faq-grid .kc-faq-item.open .kc-faq-q {
  border-left: 3px solid var(--kcs-orange, #ff7934);
  padding-left: 15px;
}
.kc-faq-grid .kc-faq-q {
  padding: 13px 16px;
  font-size: .86rem;
  border-left: 3px solid transparent;
  transition: border-color .15s, padding .15s;
}
.kc-faq-grid .kc-faq-a { border-top: 1px solid #f8fafc; }
.kc-faq-grid .kc-faq-a-inner {
  padding: 12px 16px 14px 19px;
}
.kc-faq-grid .kc-faq-a-inner p { font-size: .875rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .kc-faq-grid { grid-template-columns: 1fr; transform: none; }
  .kc-faq-grid .kc-faq-group:hover { transform: none; }
}

/* ============================================================
   LEGAL PAGES REDESIGN — v2 (Privacy, Cookie, Accessibility,
   Complaints) — All components use .kc-lg- prefix to avoid
   collisions with existing .kc-policy-section classes.
   ============================================================ */

/* --- Legal Hero -------------------------------------------- */
.kc-lg-hero {
  background: linear-gradient(135deg, var(--kc-navy) 0%, #0d2e66 100%);
  padding: 72px 0 60px; position: relative; overflow: hidden;
}
.kc-lg-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kc-lg-hero .container { position: relative; z-index: 1; }
.kc-lg-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: rgba(255,255,255,.55); margin-bottom: 28px;
}
.kc-lg-hero__breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .22s; }
.kc-lg-hero__breadcrumb a:hover { color: var(--kc-orange); }
.kc-lg-hero__breadcrumb i { font-size: 9px; }
.kc-lg-hero__inner {
  display: flex; align-items: flex-start; gap: 28px;
}
.kc-lg-hero__icon {
  width: 68px; height: 68px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,155,113,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--kc-orange);
  border: 1px solid rgba(255,155,113,.25);
}
.kc-lg-hero__text { flex: 1; }
.kc-lg-hero__eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--kc-orange); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.kc-lg-hero__eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--kc-orange); border-radius: 1px; flex-shrink: 0;
}
.kc-lg-hero h1 {
  font-family: 'Sora', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin: 0 0 14px;
}
.kc-lg-hero__intro {
  font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.75); max-width: 640px; margin: 0 0 22px;
}
.kc-lg-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.kc-lg-hero__updated {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 6px 14px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.8);
}
.kc-lg-hero__updated i { color: var(--kc-orange); font-size: 11px; }
.kc-lg-hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,155,113,.15); border: 1px solid rgba(255,155,113,.3);
  border-radius: 50px; padding: 6px 14px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--kc-orange);
}
.kc-lg-hero__badge i { font-size: 11px; }

/* --- Legal Page Wrapper ------------------------------------ */
.kc-lg-page { padding: 80px 0 100px; background: #fff; }
.kc-lg-page-alt { padding: 80px 0 100px; background: var(--kc-light); }

/* --- Sticky Table of Contents Sidebar --------------------- */
.kc-lg-toc {
  position: sticky; top: 96px;
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 0;
  box-shadow: var(--kc-shadow);
  overflow: hidden;
}
.kc-lg-toc__head {
  background: var(--kc-navy); padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
}
.kc-lg-toc__head i { color: var(--kc-orange); font-size: 14px; }
.kc-lg-toc__head span {
  font-family: 'Sora', sans-serif; font-size: .8rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
}
.kc-lg-toc__list { list-style: none; padding: 10px 0; margin: 0; }
.kc-lg-toc__list li { margin: 0; }
.kc-lg-toc__list a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px; font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--kc-body); text-decoration: none;
  transition: background .2s, color .2s; border-left: 3px solid transparent;
}
.kc-lg-toc__list a:hover, .kc-lg-toc__list a.active {
  background: var(--kc-soft-bg); color: var(--kc-orange-dark);
  border-left-color: var(--kc-orange);
}
.kc-lg-toc__list a i { color: var(--kc-orange); font-size: 10px; width: 12px; flex-shrink: 0; }
.kc-lg-toc__num {
  min-width: 20px; height: 20px; border-radius: 50%;
  background: var(--kc-soft-bg); display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 700;
  color: var(--kc-navy); flex-shrink: 0; transition: background .2s, color .2s;
}
.kc-lg-toc__list a:hover .kc-lg-toc__num,
.kc-lg-toc__list a.active .kc-lg-toc__num { background: var(--kc-orange); color: #fff; }
.kc-lg-toc__footer {
  border-top: 1px solid var(--kc-border); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 12px; color: var(--kc-body);
}
.kc-lg-toc__footer i { color: var(--kc-orange); }
.kc-lg-toc__footer a { color: var(--kc-orange-dark); text-decoration: none; font-weight: 600; }
.kc-lg-toc__footer a:hover { text-decoration: underline; }

/* --- Legal Section Headers --------------------------------- */
.kc-lg-section {
  padding-top: 48px; margin-top: 48px;
  border-top: 1px solid var(--kc-border);
  scroll-margin-top: 110px;
}
.kc-lg-section:first-of-type { padding-top: 0; margin-top: 0; border-top: none; }
.kc-lg-section-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px;
}
.kc-lg-section-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--kc-soft-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--kc-orange); margin-top: 2px;
}
.kc-lg-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700; color: var(--kc-navy); margin: 0 0 4px;
}
.kc-lg-section-subtitle {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--kc-body); margin: 0; line-height: 1.5;
}
.kc-lg-body {
  font-family: 'Inter', sans-serif; font-size: 15px;
  line-height: 1.78; color: var(--kc-body);
}
.kc-lg-body p { margin-bottom: 16px; }
.kc-lg-body p:last-child { margin-bottom: 0; }
.kc-lg-body a { color: var(--kc-orange-dark); }
.kc-lg-body a:hover { color: var(--kc-navy); }
.kc-lg-body strong { color: var(--kc-navy); }
.kc-lg-body ul, .kc-lg-body ol { padding-left: 22px; margin-bottom: 16px; }
.kc-lg-body li { margin-bottom: 8px; }

/* --- Info / Address Card ----------------------------------- */
.kc-lg-info-card {
  background: var(--kc-light); border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 22px 24px; margin: 22px 0;
  display: flex; align-items: flex-start; gap: 16px;
}
.kc-lg-info-card-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--kc-soft-bg); display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: var(--kc-orange);
}
.kc-lg-info-card-body { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: var(--kc-body); }
.kc-lg-info-card-body strong { color: var(--kc-navy); display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; margin-bottom: 8px; }
.kc-lg-info-card-body a { color: var(--kc-orange-dark); text-decoration: none; }
.kc-lg-info-card-body a:hover { text-decoration: underline; }

/* --- Warning / Action Required Banner --------------------- */
.kc-lg-warning {
  background: #fffbeb; border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b; border-radius: 8px;
  padding: 14px 18px; margin: 16px 0; font-family: 'Inter', sans-serif;
  font-size: 13px; line-height: 1.65; color: #78350f;
  display: flex; align-items: flex-start; gap: 12px;
}
.kc-lg-warning i { color: #f59e0b; font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* --- Rights Grid (8 rights in 2x4 grid) ------------------- */
.kc-lg-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin: 20px 0;
}
.kc-lg-right-card {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 18px 20px;
  transition: border-color .22s, box-shadow .22s, transform .2s;
  display: flex; align-items: flex-start; gap: 14px;
}
.kc-lg-right-card:hover {
  border-color: var(--kc-orange); box-shadow: var(--kc-shadow);
  transform: translateY(-2px);
}
.kc-lg-right-card-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--kc-soft-bg); display: flex; align-items: center;
  justify-content: center; font-size: 15px; color: var(--kc-orange);
}
.kc-lg-right-card h4 {
  font-family: 'Sora', sans-serif; font-size: .85rem;
  font-weight: 700; color: var(--kc-navy); margin: 0 0 5px;
}
.kc-lg-right-card p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--kc-body); margin: 0; line-height: 1.55; }

/* --- Cookie Type Cards ------------------------------------- */
.kc-cookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin: 24px 0;
}
.kc-cookie-card {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 22px 20px;
  transition: border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.kc-cookie-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.kc-cookie-card--essential::before { background: #22c55e; }
.kc-cookie-card--functional::before { background: #3b82f6; }
.kc-cookie-card--analytics::before { background: #a855f7; }
.kc-cookie-card--marketing::before { background: #f97316; }
.kc-cookie-card:hover { border-color: var(--kc-orange); box-shadow: var(--kc-shadow); }
.kc-cookie-card__icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.kc-cookie-card--essential .kc-cookie-card__icon { background: #f0fdf4; color: #16a34a; }
.kc-cookie-card--functional .kc-cookie-card__icon { background: #eff6ff; color: #2563eb; }
.kc-cookie-card--analytics .kc-cookie-card__icon { background: #faf5ff; color: #9333ea; }
.kc-cookie-card--marketing .kc-cookie-card__icon { background: #fff7ed; color: #ea580c; }
.kc-cookie-card h3 {
  font-family: 'Sora', sans-serif; font-size: .95rem;
  font-weight: 700; color: var(--kc-navy); margin: 0 0 6px;
}
.kc-cookie-card p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--kc-body); margin: 0 0 12px; line-height: 1.6; }
.kc-cookie-badge {
  display: inline-flex; align-items: center; gap: 5px;
  border-radius: 50px; padding: 4px 10px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
}
.kc-cookie-badge--required { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.kc-cookie-badge--optional { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

/* --- Compliance Status Banner ----------------------------- */
.kc-lg-status {
  border-radius: var(--kc-radius); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 32px;
}
.kc-lg-status--partial {
  background: #fffbeb; border: 1px solid #fcd34d;
}
.kc-lg-status--good {
  background: #f0fdf4; border: 1px solid #86efac;
}
.kc-lg-status-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.kc-lg-status--partial .kc-lg-status-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245,158,11,.2);
}
.kc-lg-status--good .kc-lg-status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
}
.kc-lg-status-body h4 {
  font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 700;
  margin: 0 0 5px;
}
.kc-lg-status--partial .kc-lg-status-body h4 { color: #92400e; }
.kc-lg-status--good .kc-lg-status-body h4 { color: #166534; }
.kc-lg-status-body p { font-family: 'Inter', sans-serif; font-size: 14px; margin: 0; line-height: 1.65; }
.kc-lg-status--partial .kc-lg-status-body p { color: #78350f; }
.kc-lg-status--good .kc-lg-status-body p { color: #14532d; }

/* --- Accessibility Feature Cards -------------------------- */
.kc-a11y-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px; margin: 24px 0;
}
.kc-a11y-card {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 20px;
  text-align: center; transition: border-color .22s, box-shadow .22s;
}
.kc-a11y-card:hover { border-color: var(--kc-orange); box-shadow: var(--kc-shadow); }
.kc-a11y-card__icon {
  width: 50px; height: 50px; border-radius: 14px; margin: 0 auto 14px;
  background: var(--kc-soft-bg); display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--kc-orange);
}
.kc-a11y-card h4 {
  font-family: 'Sora', sans-serif; font-size: .88rem;
  font-weight: 700; color: var(--kc-navy); margin: 0 0 6px;
}
.kc-a11y-card p { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--kc-body); margin: 0; line-height: 1.55; }

/* --- Improvement Timeline --------------------------------- */
.kc-lg-timeline { margin: 24px 0; position: relative; }
.kc-lg-timeline::before {
  content: ''; position: absolute; left: 20px; top: 8px; bottom: 8px;
  width: 2px; background: var(--kc-border); border-radius: 1px;
}
.kc-lg-timeline-item {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 24px; position: relative;
}
.kc-lg-timeline-item:last-child { margin-bottom: 0; }
.kc-lg-timeline-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--kc-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--kc-body); position: relative; z-index: 1;
}
.kc-lg-timeline-item--done .kc-lg-timeline-dot {
  background: #f0fdf4; border-color: #86efac; color: #16a34a;
}
.kc-lg-timeline-item--wip .kc-lg-timeline-dot {
  background: #fffbeb; border-color: #fcd34d; color: #f59e0b;
}
.kc-lg-timeline-item--pending .kc-lg-timeline-dot {
  background: var(--kc-light); border-color: var(--kc-border); color: var(--kc-body);
}
.kc-lg-timeline-body { flex: 1; padding-top: 8px; }
.kc-lg-timeline-body h4 {
  font-family: 'Sora', sans-serif; font-size: .9rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 4px;
}
.kc-lg-timeline-body p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--kc-body); margin: 0; line-height: 1.6; }
.kc-lg-timeline-date {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--kc-orange); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 4px; display: block;
}

/* --- Complaints Process Steps ----------------------------- */
.kc-complaints-steps {
  display: flex; flex-direction: column; gap: 0; margin: 24px 0;
}
.kc-complaints-step {
  display: flex; align-items: flex-start; gap: 20px;
  position: relative;
}
.kc-complaints-step:not(:last-child)::after {
  content: ''; position: absolute; left: 21px; top: 46px;
  height: calc(100% - 18px); width: 2px;
  background: var(--kc-border);
}
.kc-complaints-step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--kc-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,121,52,.35); z-index: 1; position: relative;
}
.kc-complaints-step-body {
  flex: 1; background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 18px 20px; margin-bottom: 16px;
  transition: border-color .22s, box-shadow .22s;
}
.kc-complaints-step-body:hover { border-color: var(--kc-orange); box-shadow: var(--kc-shadow); }
.kc-complaints-step-body h4 {
  font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.kc-complaints-step-body p { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--kc-body); margin: 0; line-height: 1.65; }
.kc-step-time {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--kc-orange); white-space: nowrap; background: var(--kc-soft-bg);
  border-radius: 50px; padding: 3px 10px; flex-shrink: 0;
}

/* --- Contact Method Cards --------------------------------- */
.kc-contact-method-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px; margin: 20px 0;
}
.kc-contact-method-card {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 20px 18px; text-align: center;
  transition: border-color .22s, box-shadow .22s, transform .2s;
  text-decoration: none;
}
.kc-contact-method-card:hover {
  border-color: var(--kc-orange); box-shadow: var(--kc-shadow);
  transform: translateY(-3px);
}
.kc-contact-method-card__icon {
  width: 50px; height: 50px; border-radius: 14px; margin: 0 auto 14px;
  background: var(--kc-soft-bg); display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--kc-orange);
}
.kc-contact-method-card h4 {
  font-family: 'Sora', sans-serif; font-size: .88rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 5px;
}
.kc-contact-method-card p { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--kc-body); margin: 0; line-height: 1.5; }
.kc-contact-method-card__action {
  display: inline-block; margin-top: 10px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--kc-orange-dark); text-decoration: none;
}

/* --- External Escalation Cards ---------------------------- */
.kc-escalation-grid { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.kc-escalation-card {
  background: #fff; border: 1px solid var(--kc-border);
  border-radius: var(--kc-radius); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: border-color .22s, box-shadow .22s;
}
.kc-escalation-card:hover { border-color: var(--kc-orange); box-shadow: var(--kc-shadow); }
.kc-escalation-card__icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--kc-soft-bg); display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: var(--kc-orange);
}
.kc-escalation-card__body h4 {
  font-family: 'Sora', sans-serif; font-size: .95rem; font-weight: 700;
  color: var(--kc-navy); margin: 0 0 5px;
}
.kc-escalation-card__body p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--kc-body); margin: 0 0 8px; line-height: 1.6; }
.kc-escalation-card__body a { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--kc-orange-dark); font-weight: 600; text-decoration: none; }
.kc-escalation-card__body a:hover { text-decoration: underline; }

/* --- CTA Banner (bottom of legal pages) ------------------- */
.kc-lg-cta {
  background: linear-gradient(135deg, var(--kc-navy) 0%, #0d2e66 100%);
  border-radius: 16px; padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: 60px; flex-wrap: wrap;
}
.kc-lg-cta__text h3 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: #fff; margin: 0 0 8px;
}
.kc-lg-cta__text p { font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,.75); margin: 0; }
.kc-lg-cta__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.kc-lg-cta__actions .kc-btn-primary { white-space: nowrap; }
.kc-lg-cta__actions .kc-btn-white { white-space: nowrap; }

/* --- Responsive Legal Pages ------------------------------- */
@media (max-width: 991px) {
  .kc-lg-hero { padding: 56px 0 44px; }
  .kc-lg-toc { position: static; margin-bottom: 32px; }
  .kc-lg-page, .kc-lg-page-alt { padding: 56px 0 70px; }
  .kc-lg-cta { padding: 32px 28px; }
  .kc-lg-cta__text h3 { font-size: 1.25rem; }
}
@media (max-width: 767px) {
  .kc-lg-hero__inner { flex-direction: column; gap: 16px; }
  .kc-lg-hero__icon { width: 54px; height: 54px; font-size: 22px; }
  .kc-lg-rights-grid { grid-template-columns: 1fr; }
  .kc-cookie-grid { grid-template-columns: 1fr 1fr; }
  .kc-a11y-grid { grid-template-columns: 1fr 1fr; }
  .kc-contact-method-grid { grid-template-columns: 1fr 1fr; }
  .kc-escalation-card { flex-direction: column; gap: 12px; }
  .kc-lg-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .kc-lg-cta__actions { justify-content: center; }
  .kc-lg-timeline::before { left: 17px; }
}
@media (max-width: 480px) {
  .kc-cookie-grid { grid-template-columns: 1fr; }
  .kc-a11y-grid { grid-template-columns: 1fr; }
  .kc-contact-method-grid { grid-template-columns: 1fr; }
}

/* TOC active link JS highlight */
.kc-lg-toc__list a.toc-active {
  background: var(--kc-soft-bg); color: var(--kc-orange-dark);
  border-left-color: var(--kc-orange);
}
.kc-lg-toc__list a.toc-active .kc-lg-toc__num { background: var(--kc-orange); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   KCO SUB-HERO — lightweight navy hero for content pages
   ═══════════════════════════════════════════════════════════ */
.kc-sub-hero {
  background: linear-gradient(135deg, #001C4C 0%, #0d2e66 100%);
  padding: 56px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.kc-sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.kc-sub-hero .container { position: relative; z-index: 1; }
.kc-sub-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.kc-sub-hero__breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.kc-sub-hero__breadcrumb a:hover { color: #fff; }
.kc-sub-hero__breadcrumb .kc-sep {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255,255,255,.35);
}
.kc-sub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.kc-sub-hero__title {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 10px;
}
.kc-sub-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 767px) {
  .kc-sub-hero { padding: 40px 0; }
  .kc-sub-hero__title { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   KCO THANKS PAGE
   ═══════════════════════════════════════════════════════════ */
.kc-thanks-section {
  padding: 80px 0 100px;
  background: var(--kc-soft-bg, #f8f9fc);
}
.kc-thanks-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,28,76,.09);
  padding: 64px 56px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.kc-thanks-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.4rem;
  color: #10b981;
}
.kc-thanks-card h1 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: #001C4C;
  margin-bottom: 14px;
}
.kc-thanks-card .kc-thanks-lead {
  font-size: 16px;
  color: #5E5F63;
  line-height: 1.7;
  margin-bottom: 36px;
}
.kc-thanks-steps {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 36px;
}
.kc-thanks-steps h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #001C4C;
  margin-bottom: 16px;
}
.kc-thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.kc-thanks-step:last-child { margin-bottom: 0; }
.kc-thanks-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--kc-orange, #FF6B35);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.kc-thanks-step p { margin: 0; font-size: 14px; color: #3d3d3d; line-height: 1.5; }
.kc-thanks-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 575px) {
  .kc-thanks-card { padding: 40px 24px; }
  .kc-thanks-btns { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   KCO ERROR 404 PAGE
   ═══════════════════════════════════════════════════════════ */
.kc-error-section {
  padding: 80px 0 100px;
  background: var(--kc-soft-bg, #f8f9fc);
}
.kc-error-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,28,76,.09);
  padding: 64px 56px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.kc-error-num {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: clamp(80px, 14vw, 128px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #001C4C, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.kc-error-card h1 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: #001C4C;
  margin-bottom: 12px;
}
.kc-error-card .kc-error-lead {
  font-size: 16px;
  color: #5E5F63;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.kc-error-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.kc-error-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fc;
  border: 1px solid #e5e7ef;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: #001C4C;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}
.kc-error-link-card:hover {
  background: #fff;
  border-color: var(--kc-orange, #FF6B35);
  color: var(--kc-orange, #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,28,76,.08);
}
.kc-error-link-card i { color: var(--kc-orange, #FF6B35); font-size: 16px; }
.kc-error-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 575px) {
  .kc-error-card { padding: 40px 24px; }
  .kc-error-links { grid-template-columns: 1fr; }
  .kc-error-btns { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   KCO PRICING PAGE
   ═══════════════════════════════════════════════════════════ */
.kc-pricing-section { padding: 72px 0 100px; }
.kc-pricing-intro {
  background: #f0f4ff;
  border-left: 4px solid #001C4C;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #1a2e5a;
  margin-bottom: 32px;
}
.kc-pricing-section h2 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #001C4C;
  margin: 36px 0 14px;
}
.kc-pricing-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #001C4C;
  margin: 28px 0 8px;
}
.kc-funding-card {
  border: 1px solid #e5e7ef;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 18px;
  display: flex;
  gap: 18px;
  transition: box-shadow .2s;
}
.kc-funding-card:hover { box-shadow: 0 4px 20px rgba(0,28,76,.08); }
.kc-funding-card-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #001C4C;
}
.kc-funding-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #001C4C;
  margin: 0 0 6px;
}
.kc-funding-card-body p {
  font-size: 14px;
  color: #5E5F63;
  line-height: 1.6;
  margin: 0;
}
.kc-pricing-cta {
  background: linear-gradient(135deg, #001C4C 0%, #0d2e66 100%);
  border-radius: 16px;
  padding: 36px 32px;
  color: #fff;
  margin-top: 32px;
}
.kc-pricing-cta h3 { color: #fff; font-size: 18px; margin: 0 0 10px; }
.kc-pricing-cta p { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; margin: 0 0 20px; }

/* ═══════════════════════════════════════════════════════════
   KCO REFERRAL PAGE
   ═══════════════════════════════════════════════════════════ */
.kc-referral-section { padding: 72px 0 100px; }
.kc-referral-form-wrap {
  background: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(0,28,76,.06);
}
.kc-referral-sidebar { position: sticky; top: 110px; }
.kc-referral-info-card {
  background: #f8f9fc;
  border: 1px solid #e5e7ef;
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.kc-referral-info-card h4 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #001C4C;
  margin: 0 0 12px;
}
.kc-referral-info-card p { font-size: 14px; color: #5E5F63; line-height: 1.6; margin: 0 0 8px; }
.kc-referral-info-card p:last-child { margin-bottom: 0; }
.kc-referral-urgency {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.kc-referral-urgency h4 { color: #9a3412; font-size: 14px; font-weight: 700; margin: 0 0 8px; }
.kc-referral-urgency p { color: #7c2d12; font-size: 13px; line-height: 1.5; margin: 0; }
@media (max-width: 767px) {
  .kc-referral-form-wrap { padding: 28px 20px; }
  .kc-referral-sidebar { position: static; margin-top: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   KCO PRICING PAGE v2 — full redesign
   ═══════════════════════════════════════════════════════════ */

/* ── Pricing hero trust chips ── */
.kc-pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.kc-pricing-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.kc-pricing-trust__chip i { color: #ff9b71; font-size: 12px; }

/* ── Intro strip below hero ── */
.kc-pricing-intro-strip {
  background: #f0f4ff;
  border-bottom: 1px solid #dde3f7;
  padding: 18px 0;
}
.kc-pricing-intro-strip .container {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.kc-pricing-intro-strip p {
  margin: 0;
  font-size: 14px;
  color: #1a2e5a;
  line-height: 1.6;
}
.kc-pricing-intro-strip i { color: #001C4C; font-size: 18px; flex-shrink: 0; }

/* ── Section headings shared ── */
.kc-pricing-page { padding: 0 0 80px; }
.kc-pricing-page-section { padding: 60px 0; }
.kc-pricing-page-section + .kc-pricing-page-section { border-top: 1px solid #eef0f8; }
.kc-pricing-page-section--shade { background: #f8f9fc; }
.kc-pricing-section-head { margin-bottom: 36px; }
.kc-pricing-section-head h2 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #001C4C;
  margin: 0 0 10px;
}
.kc-pricing-section-head p {
  font-size: 15px;
  color: #5E5F63;
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

/* ── Service cards grid ── */
.kc-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kc-svc-card {
  background: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 16px;
  padding: 28px 22px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.kc-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--kc-card-accent, #001C4C);
}
.kc-svc-card:hover {
  box-shadow: 0 8px 32px rgba(0,28,76,.11);
  transform: translateY(-3px);
}
.kc-svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--kc-card-accent-bg, #f0f4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--kc-card-accent, #001C4C);
  flex-shrink: 0;
}
.kc-svc-card__name {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #001C4C;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.kc-svc-card__price {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 28px;
  font-weight: 800;
  color: #001C4C;
  line-height: 1.1;
  margin: 0 0 4px;
}
.kc-svc-card__price span { font-size: 14px; font-weight: 500; color: #5E5F63; }
.kc-svc-card__from { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: #9ca3af; margin-bottom: 14px; }
.kc-svc-card__desc {
  font-size: 13px;
  color: #5E5F63;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 18px;
}
.kc-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--kc-card-accent, #001C4C);
  text-decoration: none;
  margin-top: auto;
}
.kc-svc-card__link:hover { gap: 10px; }
.kc-svc-card--featured {
  border-color: #FF6B35;
  box-shadow: 0 4px 24px rgba(255,107,53,.14);
}
.kc-svc-card--featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 16px; right: 16px;
  background: #FF6B35;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
}
.kc-svc-card--poa .kc-svc-card__price { font-size: 22px; }

/* ── Rate callout (weekend/BH) ── */
.kc-rate-callout {
  background: linear-gradient(135deg, #001C4C 0%, #0d2e66 100%);
  border-radius: 20px;
  padding: 40px 44px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.kc-rate-callout__title {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.kc-rate-callout__sub { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.6; margin: 0; }
.kc-rate-boxes {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.kc-rate-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  min-width: 110px;
}
.kc-rate-box__label { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.kc-rate-box__price { font-family: var(--kc-font-heading, 'Sora', sans-serif); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.kc-rate-box__unit { font-size: 11px; color: rgba(255,255,255,.6); }
.kc-rate-box--highlight { background: #FF6B35; border-color: #FF6B35; }

/* ── What's included strip ── */
.kc-included-strip { padding: 40px 0; background: #fff; border-top: 1px solid #eef0f8; border-bottom: 1px solid #eef0f8; }
.kc-included-strip__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #9ca3af;
  margin-bottom: 20px;
  text-align: center;
}
.kc-included-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.kc-included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a2e5a;
}
.kc-included-item i { color: #10b981; font-size: 15px; }

/* ── Funding section ── */
.kc-funding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kc-fund-card {
  background: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 14px;
  padding: 24px 22px;
  transition: box-shadow .2s, transform .2s;
}
.kc-fund-card:hover { box-shadow: 0 6px 24px rgba(0,28,76,.09); transform: translateY(-2px); }
.kc-fund-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.kc-fund-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #001C4C;
  flex-shrink: 0;
}
.kc-fund-card h4 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #001C4C;
  margin: 0;
  line-height: 1.3;
}
.kc-fund-card p { font-size: 14px; color: #5E5F63; line-height: 1.65; margin: 0 0 12px; }
.kc-fund-card__tag {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.kc-fund-card__tag--blue { background: #eff6ff; color: #1e40af; }
.kc-fund-card__tag--purple { background: #f5f3ff; color: #5b21b6; }
.kc-fund-card__tag--amber { background: #fffbeb; color: #92400e; }
.kc-fund-card__tag--navy { background: #f0f4ff; color: #1e3a8a; }

/* ── Not sure callout ── */
.kc-funding-cta-box {
  background: linear-gradient(135deg, #001C4C 0%, #0d2e66 100%);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.kc-funding-cta-box h3 {
  font-family: var(--kc-font-heading, 'Sora', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.kc-funding-cta-box p { font-size: 15px; color: rgba(255,255,255,.78); margin: 0; line-height: 1.6; }
.kc-funding-cta-box__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FAQ accordion ── */
.kc-pf-faq { border-top: 1px solid #eef0f8; }
.kc-pf-faq__item { border-bottom: 1px solid #eef0f8; }
.kc-pf-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  color: #001C4C;
  user-select: none;
}
.kc-pf-faq__q::-webkit-details-marker { display: none; }
.kc-pf-faq__q .kc-pf-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #dde3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #001C4C;
  transition: background .2s, border-color .2s;
}
details[open] .kc-pf-faq__icon { background: #001C4C; border-color: #001C4C; color: #fff; }
.kc-pf-faq__a {
  padding: 0 0 22px;
  font-size: 15px;
  color: #5E5F63;
  line-height: 1.75;
}
.kc-pf-faq__a a { color: #001C4C; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .kc-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .kc-funding-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .kc-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .kc-rate-callout { grid-template-columns: 1fr; }
  .kc-rate-boxes { justify-content: center; }
}
@media (max-width: 767px) {
  .kc-funding-grid { grid-template-columns: 1fr; }
  .kc-funding-cta-box { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .kc-rate-callout { padding: 28px 24px; }
  .kc-rate-boxes { flex-wrap: wrap; }
  .kc-pricing-page-section { padding: 44px 0; }
}
@media (max-width: 575px) {
  .kc-svc-grid { grid-template-columns: 1fr; }
  .kc-rate-boxes { flex-direction: column; width: 100%; }
  .kc-rate-box { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════
   BRANDED PRELOADER  (overrides theme default in main.css)
   ═══════════════════════════════════════════════════════════ */
#loading {
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, var(--kc-soft-bg) 100%) !important;
  transition: opacity .45s ease, visibility .45s ease;
}

/* Logo + ring */
.tp-preloader-logo {
  width: 150px; height: 150px; line-height: 150px;
}
.tp-preloader-logo img {
  width: 70px; height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 28, 76, .18));
  animation: kc-preloader-pulse 1.6s ease-in-out infinite !important;
}
/* Track + progress strokes in brand colours */
.tp-preloader-circle svg circle:first-child { stroke: var(--kc-border) !important; }
.tp-preloader-circle svg circle:last-child  { stroke: var(--kc-orange-dark) !important; }

/* Content stack */
.tp-preloader-content {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.tp-preloader-subtitle {
  font-family: 'Sora', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--kc-navy) !important;
  display: inline-flex; align-items: center;
  margin: 0 0 0 .26em; /* offset letter-spacing so text stays centred */
}

/* Animated dots after "Loading" */
.kc-preloader-dots { display: inline-flex; gap: 4px; margin-left: 8px; }
.kc-preloader-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--kc-orange-dark);
  animation: kc-preloader-bounce 1.2s ease-in-out infinite;
}
.kc-preloader-dots span:nth-child(2) { animation-delay: .16s; }
.kc-preloader-dots span:nth-child(3) { animation-delay: .32s; }

@keyframes kc-preloader-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.08); opacity: .9; }
}
@keyframes kc-preloader-bounce {
  0%, 100% { transform: translateY(0);    opacity: .35; }
  50%      { transform: translateY(-5px); opacity: 1; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .tp-preloader-logo img,
  .tp-preloader-circle svg,
  .kc-preloader-dots span { animation: none !important; }
}
