/* ===========================
   FOUNDATION
=========================== */
:root {
  --kc-primary: #f4bd24;
  --kc-primary-dark: #a9780d;
  --kc-navy: #101722;
  --kc-navy-soft: #182231;
  --kc-charcoal: #1f211f;
  --kc-white: #fff;
  --kc-off-white: #f7f4ed;
  --kc-surface: #fffdfa;
  --kc-grey-100: #f3f4f6;
  --kc-grey-200: #e4e7ec;
  --kc-grey-500: #667085;
  --kc-grey-700: #344054;
  --kc-success: #138a57;
  --kc-ink-muted: #536072;
  --kc-border: rgba(16, 23, 34, 0.11);
  --kc-border-strong: rgba(16, 23, 34, 0.18);
  --kc-shadow-sm: 0 8px 22px rgba(16, 23, 34, 0.06);
  --kc-shadow-md: 0 18px 44px rgba(16, 23, 34, 0.1);
  --kc-shadow-lg: 0 30px 80px rgba(16, 23, 34, 0.18);
  --kc-radius-sm: 6px;
  --kc-radius-md: 8px;
  --kc-radius-lg: 14px;
  --kc-transition: 220ms ease;
  --kc-section-y: 96px;
  --kc-director-dark: #0d1521;
  --kc-director-ink: #111827;
  --kc-director-line: rgba(17, 24, 39, 0.105);
  --kc-director-warm: #fbf8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--kc-charcoal);
  background: var(--kc-surface);
  line-height: 1.62;
  padding-top: 118px;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--kc-navy);
}

h1 {
  font-size: clamp(2.65rem, 4.8vw, 5rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.95rem, 3vw, 3.25rem);
}

h3 {
  font-size: clamp(1.16rem, 1.35vw, 1.45rem);
}

p {
  color: var(--kc-ink-muted);
}

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

.lead {
  line-height: 1.58;
  color: #3d4858;
}

.kc-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.kc-container > .row {
  margin-left: 0;
  margin-right: 0;
}

.kc-section {
  position: relative;
  padding: var(--kc-section-y) 0;
}

.kc-section:not(.kc-section-dark):not(.kc-section-soft) {
  background: var(--kc-surface);
}

.kc-section-soft {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(244, 189, 36, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #fbfaf7, #f1ede4);
}

.kc-section-dark {
  background: #101722;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kc-section-dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(
    100deg,
    #000,
    rgba(0, 0, 0, 0.35) 70%,
    transparent
  );
}

.kc-section-dark > .kc-container {
  position: relative;
}

.kc-section-dark p,
.kc-section-dark li {
  color: #d9e0ec;
}

.kc-section-heading {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.kc-section-heading.center {
  text-align: center;
  margin-inline: auto;
  max-width: 820px;
}

.kc-section-heading h2 {
  max-width: 880px;
}

.kc-section-heading.center h2 {
  margin-inline: auto;
}

.kc-kicker {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(244, 189, 36, 0.12);
  border: 1px solid rgba(244, 189, 36, 0.28);
  color: #8a6209;
  font-size: 0.78rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.48rem 0.72rem;
}

.kc-section-dark .kc-kicker,
.kc-stats .kc-kicker {
  background: rgba(244, 189, 36, 0.13);
  border-color: rgba(244, 189, 36, 0.35);
  color: #ffd15d;
}

/* ===========================
   ACCESSIBILITY
=========================== */
.kc-skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  background: var(--kc-navy);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.kc-skip:focus {
  top: 1rem;
}

.focus-ring:focus,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(241, 188, 40, 0.65);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   HEADER
=========================== */
.kc-header {
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
  transition: var(--kc-transition);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
}

.kc-header.is-scrolled {
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 12px 34px rgba(16, 23, 34, 0.08);
}

.kc-topbar {
  font-size: 0.82rem;
  background: #101722;
  color: #d8deea;
  letter-spacing: 0.01em;
}

.kc-topbar .kc-container {
  height: 30px;
  align-items: center;
}

.kc-topbar a {
  margin-right: 1.1rem;
  color: #e4e9f2;
}

.kc-navbar {
  min-height: 74px;
}

.kc-navbar .kc-container {
  align-items: center;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar-nav {
  gap: 0.16rem;
}

.nav-link {
  font-weight: 700;
  color: var(--kc-navy) !important;
  position: relative;
  font-size: 0.95rem;
  padding: 0.9rem 0.78rem !important;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.42rem;
  height: 2px;
  background: var(--kc-primary);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--kc-border-strong);
  border-radius: 7px;
  padding: 0.55rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.22rem rgba(244, 189, 36, 0.35);
}

.kc-mega {
  width: min(720px, 92vw);
  padding: 0.95rem;
  border: 1px solid var(--kc-border);
  border-radius: 10px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 28px 70px rgba(16, 23, 34, 0.18);
}

.kc-mega.dropdown-menu[data-bs-popper] {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  position: fixed !important;
  top: 104px !important;
}

.kc-mega .row {
  --bs-gutter-x: 0.55rem;
  --bs-gutter-y: 0.55rem;
}

.kc-mega-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid transparent;
  padding: 0.62rem;
  border-radius: 7px;
}

.kc-mega-item:hover,
.kc-mega-item:focus {
  background: #f8f3e7;
  border-color: rgba(244, 189, 36, 0.28);
}

.kc-mega-item img {
  width: 58px;
  height: 58px;
  padding: 0.35rem;
  border-radius: 7px;
  background: #f4f1eb;
  object-fit: contain;
}

.kc-mega-item strong {
  font-size: 0.95rem;
  color: #111927;
}

.kc-mega-item small {
  display: block;
  font-size: 0.78rem;
  color: #647084;
}

.kc-offcanvas {
  background: #fffdfa;
}

.kc-offcanvas:not(.show):not(.showing),
.kc-offcanvas.hiding {
  display: none;
}

.kc-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--kc-border);
  padding: 1rem 1.2rem;
}

.kc-offcanvas .offcanvas-body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.kc-offcanvas .nav-link {
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
  padding: 0.95rem 0 !important;
  font-size: 1rem;
}

.kc-mobile-accordion {
  width: 100%;
  background: transparent;
  padding: 0.9rem 0;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
  color: var(--kc-navy);
}

.kc-mobile-products {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem 0 0.9rem;
}

.kc-mobile-products a {
  background: #f4f1eb;
  border: 1px solid rgba(16, 23, 34, 0.08);
  padding: 0.66rem 0.8rem;
  border-radius: 6px;
}

/* ===========================
   BUTTONS
=========================== */
.kc-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 7px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.1;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.kc-btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffd04d, #f4bd24);
  border-color: #e3aa18;
  color: #17130b;
  box-shadow: 0 12px 24px rgba(244, 189, 36, 0.24);
}

.kc-btn-primary:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 42%,
    transparent 72%
  );
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.kc-btn-primary:hover {
  background: linear-gradient(180deg, #ffd864, #f5c333);
  box-shadow: 0 16px 32px rgba(244, 189, 36, 0.28);
  transform: translateY(-1px);
}

.kc-btn-primary:hover:after {
  transform: translateX(120%);
}

.kc-btn-dark {
  background: #111927;
  border-color: #111927;
  color: #fff;
}

.kc-btn-dark:hover {
  background: #202b3c;
  color: #fff;
  transform: translateY(-1px);
}

.kc-btn-outline {
  background: transparent;
  border-color: rgba(16, 23, 34, 0.22);
  color: var(--kc-navy);
}

.kc-section-dark .kc-btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

a.fw-bold {
  color: var(--kc-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

a.fw-bold:hover {
  color: var(--kc-primary-dark);
}

/* ===========================
   HERO
=========================== */
.kc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdfa 0%, #f5f1e8 52%, #eceff2 100%);
  padding: 76px 0 54px;
}

.kc-hero:before,
.kc-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.kc-hero:before {
  opacity: 0.72;
  background-size: 38px 38px;
}

.kc-hero .kc-container {
  position: relative;
}

.kc-hero h1 {
  max-width: 760px;
}

.kc-hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  max-width: 620px;
}

.kc-hero .d-flex {
  align-items: center;
}

.kc-hero-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.kc-hero-products {
  isolation: isolate;
}

.kc-hero-products:before {
  content: "";
  position: absolute;
  inset: 6% 3% 0;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.34)
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 80px rgba(16, 23, 34, 0.16);
  z-index: -2;
}

.kc-hero-products:after {
  content: "";
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 36, 0.26),
    transparent 68%
  );
  z-index: -1;
}

.kc-hero-product {
  position: absolute;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(16, 23, 34, 0.2));
  transition: var(--kc-transition);
}

.kc-hero-product.main {
  position: relative;
  width: min(59%, 390px);
  z-index: 3;
}

.kc-hero-product.side-a {
  width: min(38%, 250px);
  left: 4%;
  bottom: 8%;
  z-index: 2;
}

.kc-hero-product.side-b {
  width: min(34%, 220px);
  right: 6%;
  top: 12%;
  z-index: 1;
}

.kc-hero-products:hover .kc-hero-product.main {
  transform: translateY(-6px);
}

.kc-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--kc-border);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  max-width: 186px;
  box-shadow: 0 14px 34px rgba(16, 23, 34, 0.1);
}

.kc-float-card.one {
  left: 0;
  top: 24px;
}

.kc-float-card.two {
  right: 0;
  bottom: 34px;
}

.kc-float-card strong {
  color: var(--kc-navy);
}

.kc-float-card p {
  font-size: 0.88rem;
  line-height: 1.45;
}

/* HERO SLIDER */
.kc-hero-slider {
  min-height: clamp(640px, calc(100vh - 160px), 700px);
  display: grid;
  align-items: start;
  padding: 42px 0 28px;
  background:
    radial-gradient(
      circle at 78% 46%,
      rgba(244, 189, 36, 0.16),
      transparent 31%
    ),
    linear-gradient(135deg, #fffdfa 0%, #f4f0e7 48%, #edf0f2 100%);
}

.kc-hero-slider:before {
  opacity: 0.72;
  background-size: 34px 34px;
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.72) 62%,
    transparent 100%
  );
}

.kc-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(2rem, 4.8vw, 4.75rem);
  align-items: center;
}

.kc-hero-copy {
  max-width: 640px;
}

.kc-hero-copy h1 {
  font-size: clamp(3rem, 4.65vw, 4.75rem);
  line-height: 0.96;
}

.kc-hero-actions .kc-btn {
  min-width: 164px;
}

.kc-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1.25rem;
  color: #3d4858;
  font-weight: 700;
  font-size: 0.93rem;
}

.kc-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.kc-hero-points i {
  color: var(--kc-primary-dark);
}

.kc-hero-showcase {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(16, 23, 34, 0.09);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.46)
  );
  box-shadow: 0 34px 90px rgba(16, 23, 34, 0.16);
  overflow: hidden;
}

.kc-hero-showcase:before {
  content: "";
  position: absolute;
  inset: 8% 10% 18%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 36, 0.24),
    transparent 66%
  );
  pointer-events: none;
}

.kc-hero-showcase:after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 22%;
  height: 22px;
  background: radial-gradient(ellipse, rgba(16, 23, 34, 0.22), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.kc-product-swiper {
  min-height: 500px;
}

.kc-product-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.kc-hero-slide {
  height: auto;
}

.kc-hero-slide-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.98fr) minmax(220px, 0.72fr);
  gap: 1.35rem;
  align-items: center;
  min-height: 500px;
  padding: 2rem 2.1rem 4.55rem;
  color: inherit;
}

.kc-hero-slide-link:hover {
  color: inherit;
}

.kc-hero-slide-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
}

.kc-hero-slide-media img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(16, 23, 34, 0.21));
}

.kc-hero-slide-copy {
  align-self: center;
}

.kc-slide-index {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: #a9780d;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.kc-hero-slide-copy h2 {
  font-size: clamp(1.85rem, 2.55vw, 2.7rem);
  margin-bottom: 0.65rem;
  color: #101722;
}

.kc-hero-slide-copy p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
  color: #445166;
}

.kc-hero-slider-controls {
  position: absolute;
  z-index: 3;
  left: 2.1rem;
  right: 2.1rem;
  bottom: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.kc-hero-nav {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(16, 23, 34, 0.12);
  background: rgba(255, 253, 250, 0.86);
  color: #111927;
  display: grid;
  place-items: center;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.kc-hero-nav:hover,
.kc-hero-nav:focus-visible {
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 23, 34, 0.12);
  transform: translateY(-1px);
}

.kc-hero-count {
  margin-inline: auto;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  color: #111927;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.kc-hero-count span:first-child {
  color: #a9780d;
}

.kc-hero-progress {
  position: absolute;
  z-index: 3;
  left: 2.1rem;
  right: 2.1rem;
  bottom: 0;
  height: 3px;
  background: rgba(16, 23, 34, 0.08);
}

.kc-hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f4bd24, #a9780d);
  transition: width 520ms ease;
}

/* ===========================
   TRUST STRIP
=========================== */
.kc-trust {
  background: #fffdfa;
  border-block: 1px solid rgba(16, 23, 34, 0.08);
}

.kc-hero-slider + .kc-trust {
  margin-top: -1px;
  background: linear-gradient(180deg, #fffdfa, #f6f2ea);
  box-shadow: inset 0 1px 0 rgba(16, 23, 34, 0.08);
}

.kc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
}

.kc-trust-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-weight: 800;
  background: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(16, 23, 34, 0.08);
  padding: 1rem 1.2rem;
  font-size: 0.96rem;
}

.kc-trust-item:last-child {
  border-right: 0;
}

.kc-trust-item i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--kc-primary-dark);
  font-size: 1rem;
}

/* ===========================
   PRODUCT CARDS
=========================== */
.kc-product-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 390px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      circle at 52% 36%,
      rgba(244, 189, 36, 0.26),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.055)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 34px rgba(16, 23, 34, 0.08);
}

.kc-product-stage img {
  max-width: min(84%, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(16, 23, 34, 0.14));
}

.kc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0;
}

.kc-product-card {
  position: relative;
  overflow: visible;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 34.125rem;
  min-width: 0;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 8px;
  padding: 0.95rem;
  box-shadow: 0 10px 24px rgba(16, 23, 34, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.kc-product-card figure {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0 0 0.9rem;
  padding: clamp(0.9rem, 2vw, 1.35rem);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(244, 189, 36, 0.18),
      transparent 36%
    ),
    linear-gradient(180deg, #fffdfa, #f2efe8);
  border: 1px solid rgba(16, 23, 34, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 34px rgba(16, 23, 34, 0.08);
}

.kc-product-card figure:after {
  content: none;
}

.kc-product-card figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform var(--kc-transition);
}

.kc-product-card img {
  filter: drop-shadow(0 18px 18px rgba(16, 23, 34, 0.14));
}

.kc-product-card h3 {
  min-height: 3.1rem;
  margin: 0.25rem 0 0.45rem;
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  line-height: 1.18;
  overflow: visible;
  color: #111927;
}

.kc-product-card p {
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.56;
}

.kc-product-card .mt-auto {
  margin-top: auto;
  padding-top: 0.65rem;
}

@media (hover: hover) and (pointer: fine) {
  .kc-product-card:hover {
    border-color: rgba(244, 189, 36, 0.32);
    box-shadow: var(--kc-shadow-md);
  }

  .kc-product-card:hover figure img,
  .kc-product-card:focus-within figure img {
    transform: scale(1.025);
  }
}

@media (hover: none), (pointer: coarse) {
  .kc-product-card figure img {
    transform: none;
  }
}

/* ===========================
   ABOUT
=========================== */
.kc-about-image {
  position: relative;
}

.kc-about-image:before {
  content: "";
  position: absolute;
  inset: 9% -4% -5% 11%;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 12px;
  background: #ebe7dd;
  z-index: 0;
}

.kc-about-image:after {
  content: "";
  position: absolute;
  left: -1rem;
  top: 1.2rem;
  width: 72px;
  height: 72px;
  border-top: 2px solid rgba(244, 189, 36, 0.86);
  border-left: 2px solid rgba(244, 189, 36, 0.86);
  z-index: 2;
}

.kc-about-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 26px 60px rgba(16, 23, 34, 0.16);
}

.kc-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.kc-metric {
  border: 1px solid var(--kc-border);
  padding: 1rem;
  border-radius: 7px;
  background: rgba(255, 253, 250, 0.76);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.kc-metric strong {
  display: block;
  color: var(--kc-navy);
  margin-bottom: 0.25rem;
}

/* ===========================
   APPLICATIONS
=========================== */
.kc-app-grid,
.kc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.kc-app-grid {
  align-items: stretch;
}

.kc-app-card,
.kc-feature-card,
.kc-contact-card,
.kc-policy-card {
  border: 1px solid rgba(16, 23, 34, 0.1);
  background: #fff;
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 10px 24px rgba(16, 23, 34, 0.055);
}

.kc-app-card {
  position: relative;
  overflow: hidden;
}

.kc-app-card:after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--kc-primary), transparent);
  opacity: 0.75;
}

.kc-app-card i,
.kc-feature-card i,
.kc-contact-card i {
  color: var(--kc-primary-dark);
  font-size: 1.08rem;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(244, 189, 36, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.kc-app-card h2,
.kc-contact-card h2 {
  font-size: 1.22rem;
}

.kc-app-grid .kc-app-card:first-child {
  background: linear-gradient(135deg, #111927, #1d2838);
  border-color: rgba(255, 255, 255, 0.12);
}

.kc-app-grid .kc-app-card:first-child h3,
.kc-app-grid .kc-app-card:first-child h2 {
  color: #fff;
}

.kc-app-grid .kc-app-card:first-child p {
  color: #dce4ee;
}

.kc-app-card:hover,
.kc-feature-card:hover,
.kc-contact-card:hover {
  box-shadow: 0 18px 38px rgba(16, 23, 34, 0.1);
}

/* ===========================
   FEATURES
=========================== */
.kc-feature-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.kc-feature-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.kc-feature-card:first-child {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.055)
  );
}

.kc-feature-card h3 {
  color: #fff;
}

/* ===========================
   COUNTERS
=========================== */
.kc-stats {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin: 0;
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(244, 189, 36, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #0d1521, #172231);
  padding: 72px 0;
}

.kc-stats:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.kc-stats .kc-container {
  position: relative;
}

.kc-stats h2,
#kcStatsTitle {
  position: relative;
  z-index: 1;
  color: #f8fafc !important;
  font-weight: 800;
  opacity: 1;
  mix-blend-mode: normal;
}

.kc-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: none;
}

.kc-stat {
  position: relative;
  padding: 1.6rem;
}

.kc-stat:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(transparent, var(--kc-primary), transparent);
}

.kc-stat-number {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  white-space: nowrap;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
}

.kc-stat-number span {
  color: var(--kc-primary);
}

.kc-stat-label {
  margin: 0.75rem 0 0;
  color: #d9e0ec;
  font-weight: 700;
  font-size: 1rem;
}

.kc-stat-note {
  max-width: 650px;
  color: #d9e0ec;
}

/* ===========================
   PROCESS
=========================== */
.kc-process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.kc-process-card {
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-left: 2px solid var(--kc-primary);
  padding: 1.25rem;
  background: #fffdfa;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 23, 34, 0.05);
}

.kc-process-card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-weight: 800;
  color: var(--kc-primary);
}

.kc-process-card h3 {
  font-size: 1.12rem;
}

/* ===========================
   PRODUCT CATALOGUE
=========================== */
.kc-catalogue {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1rem;
}

.kc-catalogue-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 100%;
  overflow: visible;
  gap: 1.15rem;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffdfa, #fbf8f1);
  padding: 1.05rem;
  box-shadow: var(--kc-shadow-sm);
}

.kc-catalogue-card:hover {
  border-color: rgba(244, 189, 36, 0.32);
}

.kc-catalogue-card > img {
  align-self: center;
  width: 100%;
  max-width: 210px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(244, 189, 36, 0.18),
      transparent 36%
    ),
    linear-gradient(180deg, #fffdfa, #f2efe8);
  border: 1px solid rgba(16, 23, 34, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 34px rgba(16, 23, 34, 0.08);
  filter: drop-shadow(0 18px 18px rgba(16, 23, 34, 0.14));
  transition: transform var(--kc-transition);
}

.kc-catalogue-card > img:after {
  content: none;
}

.kc-catalogue-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.kc-catalogue-card h2 {
  line-height: 1.16;
  overflow: visible;
  color: #111927;
}

.kc-catalogue-card p {
  font-size: 0.94rem;
  line-height: 1.56;
}

.kc-catalogue-card .kc-kicker {
  font-size: 0.72rem;
  background: #fbf1cf;
}

.kc-catalogue-card .d-flex {
  margin-top: auto;
  gap: 0.55rem !important;
}

@media (hover: hover) and (pointer: fine) {
  .kc-catalogue-card:hover {
    box-shadow: var(--kc-shadow-md);
  }

  .kc-catalogue-card:hover > img,
  .kc-catalogue-card:focus-within > img {
    transform: scale(1.025);
  }
}

@media (hover: none), (pointer: coarse) {
  .kc-catalogue-card:hover {
    transform: none;
  }

  .kc-catalogue-card > img {
    transform: none;
  }
}

/* ===========================
   PAGE HERO
=========================== */
.kc-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 54px 0 50px;
  background:
    radial-gradient(
      circle at 84% 32%,
      rgba(244, 189, 36, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #0d1521, #131e2d);
}

.kc-page-hero:before {
  opacity: 0.55;
}

.kc-page-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 189, 36, 0.52),
    transparent
  );
}

.kc-page-hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.kc-page-hero p {
  max-width: 760px;
  color: #e8edf5;
  font-size: 1.15rem;
}

.breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 1.05rem;
}

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

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item:before {
  color: rgba(255, 255, 255, 0.34);
}

/* ===========================
   PRODUCT DETAIL
=========================== */
.kc-product-detail-hero {
  padding: 72px 0;
  background:
    radial-gradient(
      circle at 32% 32%,
      rgba(244, 189, 36, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #fffdfa, #f2eee5);
}

.kc-detail-stage {
  min-height: 400px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--kc-border);
  display: grid;
  place-items: center;
  box-shadow: var(--kc-shadow-lg);
  background:
    radial-gradient(
      circle at 52% 34%,
      rgba(244, 189, 36, 0.22),
      transparent 35%
    ),
    linear-gradient(180deg, #fffdfa, #eee9df);
}

.kc-detail-stage img {
  max-width: 72%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(16, 23, 34, 0.14));
}

.kc-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.kc-chip {
  border: 1px solid rgba(16, 23, 34, 0.12);
  background: #fffdfa;
  border-radius: 7px;
  padding: 0.62rem 0.78rem;
  font-weight: 700;
  box-shadow: 0 7px 16px rgba(17, 24, 39, 0.045);
}

/* ===========================
   FORMS AND CONTACT
=========================== */
.kc-finder,
.accordion-item {
  border-radius: 10px;
  border-color: rgba(16, 23, 34, 0.1);
  box-shadow: 0 14px 34px rgba(16, 23, 34, 0.07);
}

.kc-finder {
  background: linear-gradient(180deg, #fffdfa, #f7f4ed);
  border: 1px solid var(--kc-border);
  padding: 1.4rem;
}

.form-control,
.form-select {
  border-radius: 7px;
  padding: 0.85rem 1rem;
  border-color: rgba(16, 23, 34, 0.16);
  background: #fffdfa;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: #dca61d;
  box-shadow: 0 0 0 0.22rem rgba(244, 189, 36, 0.24);
}

.form-check-input:checked {
  background-color: #111927;
  border-color: #111927;
}

.kc-form-note {
  display: none;
}

.kc-form-note.show {
  display: block;
}

.kc-contact-card {
  height: 100%;
  padding: 1.15rem;
  background: linear-gradient(180deg, #fffdfa, #faf7f0);
}

.kc-contact-card p {
  margin-bottom: 0;
}

.kc-map-panel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, 0.1);
  box-shadow: 0 16px 38px rgba(16, 23, 34, 0.08);
  background: linear-gradient(135deg, #f7f4ed, #eceff2);
}

.kc-map-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 23, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 23, 34, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.kc-contact-map {
  position: relative;
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 0;
  filter: saturate(0.9);
  box-shadow: none;
  background: transparent;
}

.kc-map-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid rgba(16, 23, 34, 0.1);
  box-shadow: 0 10px 24px rgba(16, 23, 34, 0.1);
  font-size: 0.95rem;
}

.kc-map-caption strong {
  color: #111927;
}

.kc-map-caption span {
  color: var(--kc-ink-muted);
}

.accordion-button {
  font-weight: 800;
  color: var(--kc-navy);
}

.accordion-button:not(.collapsed) {
  background: #fbf1cf;
  color: #111927;
}

/* ===========================
   CTA
=========================== */
.kc-section-dark .row.g-4.align-items-center {
  padding: 1.2rem 0;
}

.kc-section-dark .row.g-4.align-items-center h2 {
  color: #fff;
}

.kc-section-dark .row.g-4.align-items-center p {
  max-width: 760px;
}

/* ===========================
   EMPTY AND POLICY
=========================== */
.kc-empty {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed var(--kc-border);
  border-radius: 14px;
  background: #fff;
}

.kc-policy-card {
  max-width: 980px;
  margin-inline: auto;
  background: #fffdfa;
}

.kc-policy-card h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

/* ===========================
   FOOTER
=========================== */
.kc-footer {
  color: #fff;
  padding: 58px 0 22px;
  border-top: 4px solid rgba(244, 189, 36, 0.72);
  background:
    radial-gradient(
      circle at 84% 0%,
      rgba(244, 189, 36, 0.13),
      transparent 28%
    ),
    #0b111b;
}

.kc-footer p,
.kc-footer li,
.kc-footer a {
  color: #cbd3df;
}

.kc-footer p {
  max-width: 360px;
}

.kc-footer h2 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.kc-footer li + li {
  margin-top: 0.08rem;
}

.kc-footer a:hover {
  color: #ffd15d;
}

.kc-footer-logo {
  max-width: 145px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}

.kc-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.kc-contact-list i {
  color: var(--kc-primary);
  margin-top: 0.25rem;
}

.kc-social {
  display: flex;
  gap: 0.7rem;
}

.kc-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  display: grid;
  place-items: center;
}

.kc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #cbd3df;
  font-size: 0.9rem;
}

.kc-backtop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #f4bd24;
  color: #16130d;
  box-shadow: var(--kc-shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--kc-transition);
  z-index: 1000;
}

.kc-backtop.show {
  opacity: 1;
  pointer-events: auto;
}
