*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

a {
  color: #145e9a;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #0f4a7a;
}

img {
  max-width: 100%;
  height: auto;
}

.kg-logo {
  display: inline-block;
}
.kg-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.kg-logo:hover img {
  transform: scale(1.05);
}

.kg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.kg-btn i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.kg-btn:hover i {
  transform: translateX(3px);
}
.kg-btn--primary {
  background: #145e9a;
  color: #ffffff;
  border-color: #145e9a;
}
.kg-btn--primary:hover {
  background: #0f4a7a;
  border-color: #0f4a7a;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(20, 94, 154, 0.3);
}
.kg-btn--outline {
  background: transparent;
  color: #145e9a;
  border-color: #145e9a;
}
.kg-btn--outline:hover {
  background: #145e9a;
  color: #ffffff;
}
.kg-btn--white {
  background: #ffffff;
  color: #145e9a;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.kg-btn--white:hover {
  background: #145e9a;
  border-color: #145e9a;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(20, 94, 154, 0.3);
}
.kg-btn--white--secondary {
  color: #E31E24;
}
.kg-btn--white--secondary:hover {
  background: #E31E24;
  border-color: #E31E24;
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.3);
}
.kg-btn--ghost {
  background: transparent;
  color: #343a40;
  border: none;
}
.kg-btn--ghost:hover {
  color: #145e9a;
  background: rgba(20, 94, 154, 0.06);
}
.kg-btn--secondary {
  background: transparent;
  color: #145e9a;
  border: 2px solid #145e9a;
}
.kg-btn--secondary:hover {
  background: #145e9a;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(20, 94, 154, 0.25);
  transform: translateY(-2px);
}
.kg-btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.kg-btn--glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.kg-btn--glow {
  box-shadow: 0 4px 20px rgba(20, 94, 154, 0.4);
}
.kg-btn--glow:hover {
  box-shadow: 0 8px 30px rgba(20, 94, 154, 0.5);
  transform: translateY(-3px);
}
.kg-btn__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 4px;
  transition: all 0.3s ease;
}
.kg-btn__play-icon i {
  font-size: 0.75rem;
  margin-left: 2px;
}
.kg-btn:hover .kg-btn__play-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}
.kg-btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.kg-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.kg-btn--outline-white--secondary:hover {
  background: #fff;
  color: #E31E24;
}
.kg-btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.kg-section-header {
  margin-bottom: 60px;
}
.kg-section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(20, 94, 154, 0.08);
  color: #145e9a;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kg-section-header__tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.kg-section-header__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.kg-section-header__title .text-secondary {
  color: #E31E24 !important;
}
.kg-section-header__subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 560px;
}
.kg-section-header--center {
  text-align: center;
}
.kg-section-header--center .kg-section-header__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.kg-topbar {
  background: linear-gradient(135deg, rgb(227, 30, 36) 0%, rgb(196, 26, 31) 100%);
  padding: 8px 0;
}
.kg-topbar__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}
.kg-topbar .container {
  position: relative;
  z-index: 2;
}
.kg-topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .kg-topbar__content {
    gap: 12px;
    flex-direction: column;
  }
}
.kg-topbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.kg-topbar__text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}
.kg-topbar__text i {
  font-size: 18px;
}
.kg-topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.kg-topbar__link {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.kg-topbar__link:hover {
  color: rgba(255, 255, 255, 0.85);
}
.kg-topbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 100px;
  color: #D84315;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.kg-topbar__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.kg-topbar__btn i {
  font-size: 0.75rem;
}
.kg-topbar__btn--alt {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.kg-topbar__btn--alt:hover {
  background: #ffffff;
  color: #D84315;
}

.kg-navbar {
  padding: 12px 0;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.kg-navbar .container {
  display: flex;
  align-items: center;
}
.kg-navbar__nav {
  gap: 8px;
}
.kg-navbar__nav .nav-link {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #343a40;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.kg-navbar__nav .nav-link:hover, .kg-navbar__nav .nav-link.active {
  color: #145e9a;
  background: rgba(20, 94, 154, 0.06);
}
.kg-navbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #145e9a 0%, #1a75c2 100%);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(20, 94, 154, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.kg-navbar__phone i {
  font-size: 1rem;
}
.kg-navbar__phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 94, 154, 0.35);
  color: #fff;
  background: linear-gradient(135deg, #1a75c2 0%, #145e9a 100%);
}
.kg-navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kg-navbar__toggler {
  border: none;
  padding: 8px;
}
.kg-navbar__toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23333333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.kg-navbar__toggler:focus {
  box-shadow: none;
}

.kg-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  overflow: hidden;
}
.kg-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.25) 0%, rgba(227, 30, 36, 0.1) 100%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.kg-hero::after {
  content: "";
  position: absolute;
  top: 100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(20, 94, 154, 0.12) 0%, rgba(20, 94, 154, 0.05) 100%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.kg-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kg-hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.kg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.04);
}
.kg-hero__badge-avatars {
  display: flex;
  align-items: center;
}
.kg-hero__badge-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.1);
}
.kg-hero__badge-avatars img:first-child {
  margin-left: 0;
}
.kg-hero__badge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kg-hero__badge-stars {
  display: flex;
  gap: 2px;
}
.kg-hero__badge-stars i {
  font-size: 0.75rem;
  color: #f59e0b;
}
.kg-hero__badge-rating span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
}
.kg-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #343a40;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.kg-hero__title--italic {
  font-style: italic;
  background: linear-gradient(135deg, #145e9a 0%, #E31E24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.15em;
  margin-right: -0.1em;
}
.kg-hero__rotating-text {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding-right: 0.2em;
}
.kg-hero__subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 36px;
}
.kg-hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}
.kg-hero__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #343a40;
  text-decoration: none;
  transition: all 0.3s ease;
}
.kg-hero__more-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.kg-hero__more-link:hover {
  color: #145e9a;
}
.kg-hero__more-link:hover i {
  transform: rotate(90deg);
}
.kg-hero__visual {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0;
  perspective: 1200px;
}
.kg-hero__visual-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.kg-hero__visual-wrapper:hover {
  transform: rotateY(-4deg) rotateX(1deg);
}
.kg-hero__dashboard {
  position: relative;
  z-index: 2;
}
.kg-hero__dashboard .kg-dashboard {
  transform: none;
  box-shadow: 0 25px 80px rgba(26, 26, 26, 0.12), 0 10px 30px rgba(26, 26, 26, 0.08);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.kg-hero__dashboard .kg-dashboard:hover {
  transform: none;
}
.kg-hero__float {
  position: absolute;
  z-index: 3;
}
.kg-hero__float--left {
  left: -40px;
  bottom: 40px;
}
.kg-hero__float--right {
  right: -40px;
  top: 40px;
}
.kg-hero__float-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(26, 26, 26, 0.1);
  border: 1px solid rgba(26, 26, 26, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}
.kg-hero__float-card > i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #145e9a 0%, #3b82f6 100%);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.125rem;
}
.kg-hero__float-content {
  display: flex;
  flex-direction: column;
}
.kg-hero__float-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #343a40;
}
.kg-hero__float-text {
  font-size: 0.75rem;
  color: #6c757d;
}
.kg-hero__float-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #E31E24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kg-hero__float-logos {
  display: flex;
  gap: 8px;
}
.kg-hero__float-logos img {
  width: 82px;
  height: 32px;
  object-fit: contain;
  padding: 6px;
  background: #f8f9fa;
  border-radius: 8px;
}

.kg-dashboard {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.kg-dashboard:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.kg-dashboard__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}
.kg-dashboard__dots {
  display: flex;
  gap: 6px;
}
.kg-dashboard__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.kg-dashboard__dots span:nth-child(1) {
  background: #ff5f56;
}
.kg-dashboard__dots span:nth-child(2) {
  background: #ffbd2e;
}
.kg-dashboard__dots span:nth-child(3) {
  background: #27ca40;
}
.kg-dashboard__title {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
}
.kg-dashboard__body {
  display: flex;
  min-height: 320px;
}
.kg-dashboard__sidebar {
  width: 60px;
  background: #f8f9fa;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kg-dashboard__menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #6c757d;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.kg-dashboard__menu-item:hover {
  background: #f1f3f5;
  color: #145e9a;
}
.kg-dashboard__menu-item.active {
  background: #145e9a;
  color: #ffffff;
}
.kg-dashboard__main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kg-dashboard__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.kg-dashboard__card--highlight {
  background: linear-gradient(135deg, #145e9a 0%, #0f4a7a 100%);
  color: #ffffff;
}
.kg-dashboard__card--highlight .kg-dashboard__card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.kg-dashboard__card--highlight .kg-dashboard__card-label {
  color: rgba(255, 255, 255, 0.8);
}
.kg-dashboard__card--highlight .kg-dashboard__card-value {
  color: #ffffff;
}
.kg-dashboard__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(20, 94, 154, 0.1);
  color: #145e9a;
  border-radius: 8px;
  font-size: 1.25rem;
}
.kg-dashboard__card-content {
  display: flex;
  flex-direction: column;
}
.kg-dashboard__card-label {
  font-size: 0.75rem;
  color: #6c757d;
}
.kg-dashboard__card-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}
.kg-dashboard__quote-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  flex: 1;
}
.kg-dashboard__quote-box .actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.kg-dashboard__quote-box .actions i {
  color: #145e9a;
}
.kg-dashboard__quote-title {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 12px;
}
.kg-dashboard__quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 6px;
  background: #ffffff;
}
.kg-dashboard__quote-row--best {
  background: rgba(20, 94, 154, 0.08);
}
.kg-dashboard__quote-row--best .kg-dashboard__carrier {
  color: #145e9a;
  font-weight: 600;
}
.kg-dashboard__quote-row--best .kg-dashboard__price {
  color: #145e9a;
  font-weight: 700;
}
.kg-dashboard__carrier {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #343a40;
}
.kg-dashboard__carrier-logo {
  width: 80px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.kg-dashboard__price {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1a1a;
}

.kg-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a1a1a;
  animation: float 4s ease-in-out infinite;
}
.kg-floating i {
  font-size: 1.25rem;
  color: #E31E24;
}
.kg-floating--1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}
.kg-floating--2 {
  bottom: 25%;
  left: 0;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.kg-partners {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}
.kg-partners__label {
  text-align: center;
  font-size: 0.875rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.kg-partners__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.kg-partners__marquee::before, .kg-partners__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.kg-partners__marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.kg-partners__marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
.kg-partners__track {
  display: flex;
  overflow: hidden;
}
.kg-partners__slide {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  flex: 0 0 100%;
  will-change: transform;
  animation: scroll 25s linear infinite;
}
.kg-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 100px;
  padding: 12px 12px;
}
.kg-partners__logo img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.kg-features {
  position: relative;
  padding: 100px 0;
  background: #f8f9fa;
  overflow: hidden;
}
.kg-features__diagonal {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.kg-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.kg-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.kg-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}
.kg-feature-card:hover::before {
  transform: scaleX(1);
}
.kg-feature-card:hover .kg-feature-card__icon {
  transform: scale(1.1) rotate(-5deg);
}
.kg-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.kg-feature-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.kg-feature-card__text {
  color: #6c757d;
  line-height: 1.7;
}
.kg-feature-card.is-indigo .kg-feature-card__icon {
  background: rgba(99, 102, 241, 0.1);
  color: #6366F1;
}
.kg-feature-card.is-indigo:hover .kg-feature-card__icon {
  background: #6366F1;
  color: #ffffff;
}
.kg-feature-card.is-indigo::before {
  background: #6366F1;
}
.kg-feature-card.is-amber .kg-feature-card__icon {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.kg-feature-card.is-amber:hover .kg-feature-card__icon {
  background: #F59E0B;
  color: #ffffff;
}
.kg-feature-card.is-amber::before {
  background: #F59E0B;
}
.kg-feature-card.is-green .kg-feature-card__icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
}
.kg-feature-card.is-green:hover .kg-feature-card__icon {
  background: #22C55E;
  color: #ffffff;
}
.kg-feature-card.is-green::before {
  background: #22C55E;
}
.kg-feature-card.is-red .kg-feature-card__icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.kg-feature-card.is-red:hover .kg-feature-card__icon {
  background: #EF4444;
  color: #ffffff;
}
.kg-feature-card.is-red::before {
  background: #EF4444;
}
.kg-feature-card.is-purple .kg-feature-card__icon {
  background: rgba(168, 85, 247, 0.1);
  color: #A855F7;
}
.kg-feature-card.is-purple:hover .kg-feature-card__icon {
  background: #A855F7;
  color: #ffffff;
}
.kg-feature-card.is-purple::before {
  background: #A855F7;
}
.kg-feature-card.is-cyan .kg-feature-card__icon {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.kg-feature-card.is-cyan:hover .kg-feature-card__icon {
  background: #06B6D4;
  color: #ffffff;
}
.kg-feature-card.is-cyan::before {
  background: #06B6D4;
}

.kg-process {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.kg-process__timeline {
  position: relative;
  margin-top: 50px;
}
.kg-process__connector {
  position: absolute;
  top: 65px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, rgba(20, 94, 154, 0.3) 0%, #145e9a 50%, rgba(20, 94, 154, 0.3) 100%);
  z-index: 1;
}
@media (max-width: 991px) {
  .kg-process__connector {
    display: none;
  }
}
.kg-process__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(20, 94, 154, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.kg-process__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(20, 94, 154, 0.15);
  border-color: rgba(20, 94, 154, 0.2);
}
.kg-process__card:hover .kg-process__number {
  transform: scale(1.08);
  background: linear-gradient(135deg, #667eea 0%, #145e9a 100%);
}
.kg-process__card:hover .kg-process__icon {
  transform: scale(1.12);
  background: #145e9a;
  color: #ffffff;
}
.kg-process__card:hover .kg-process__title {
  color: #145e9a;
}
.kg-process__card:hover .kg-process__card-arrow {
  transform: translate(6px, -50%);
  opacity: 1;
}
.kg-process__card--final .kg-process__card-arrow {
  display: none;
}
.kg-process__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.kg-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #145e9a 0%, #667eea 100%);
  color: #ffffff;
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(20, 94, 154, 0.25);
  transition: all 0.35s ease;
}
.kg-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(20, 94, 154, 0.08);
  border-radius: 16px;
  font-size: 1.75rem;
  color: #145e9a;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.kg-process__card-body {
  flex: 1;
}
.kg-process__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.kg-process__text {
  font-size: 0.9375rem;
  color: #6c757d;
  line-height: 1.6;
}
.kg-process__card-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid rgba(20, 94, 154, 0.15);
  border-radius: 50%;
  font-size: 1.125rem;
  color: #145e9a;
  z-index: 4;
  opacity: 0.7;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
}
@media (max-width: 991px) {
  .kg-process__card-arrow {
    display: none;
  }
}

.kg-how-it-works {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}
.kg-how-it-works__visual {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.kg-how-it-works__visual .kg-dashboard {
  transform: perspective(1000px) rotateY(3deg) rotateX(-1deg);
}
.kg-how-it-works__visual .kg-dashboard:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.kg-how-it-works__browser {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transform: perspective(1000px) rotateY(3deg) rotateX(-1deg);
  transition: transform 0.5s ease;
}
.kg-how-it-works__browser:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.kg-how-it-works__browser-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.kg-how-it-works__browser-dots {
  display: flex;
  gap: 6px;
}
.kg-how-it-works__browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.kg-how-it-works__browser-dots span:nth-child(1) {
  background: #ff5f56;
}
.kg-how-it-works__browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.kg-how-it-works__browser-dots span:nth-child(3) {
  background: #27ca40;
}
.kg-how-it-works__browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #6c757d;
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.kg-how-it-works__browser-url i {
  color: #27ca40;
  font-size: 0.75rem;
}
.kg-how-it-works__browser-body {
  padding: 0;
  background: #f4f6f8;
}
.kg-how-it-works__dashboard {
  display: flex;
  min-height: 340px;
}
.kg-how-it-works__dashboard-sidebar {
  width: 56px;
  background: #145e9a;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.kg-how-it-works__sidebar-logo {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #145e9a;
}
.kg-how-it-works__sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.kg-how-it-works__sidebar-menu span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.kg-how-it-works__sidebar-menu span.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.kg-how-it-works__sidebar-menu span:hover {
  color: #ffffff;
}
.kg-how-it-works__dashboard-main {
  flex: 1;
  padding: 20px;
  background: #ffffff;
}
.kg-how-it-works__dashboard-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.kg-how-it-works__mini-form {
  margin-bottom: 16px;
}
.kg-how-it-works__form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.kg-how-it-works__form-field {
  flex: 1;
}
.kg-how-it-works__form-field--full {
  width: 100%;
}
.kg-how-it-works__form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.kg-how-it-works__form-input {
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 0.8125rem;
  color: #343a40;
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.kg-how-it-works__cargo-options {
  margin-bottom: 16px;
}
.kg-how-it-works__cargo-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.kg-how-it-works__cargo-option:last-child {
  margin-bottom: 0;
}
.kg-how-it-works__cargo-option--selected {
  background: rgba(20, 94, 154, 0.04);
  border-color: #145e9a;
}
.kg-how-it-works__cargo-option--selected .kg-how-it-works__cargo-price i {
  display: flex;
  color: #145e9a;
}
.kg-how-it-works__cargo-logo {
  width: 80px;
  height: 24px;
}
.kg-how-it-works__cargo-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kg-how-it-works__cargo-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kg-how-it-works__cargo-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
}
.kg-how-it-works__cargo-time {
  font-size: 0.6875rem;
  color: #6c757d;
}
.kg-how-it-works__cargo-price {
  display: flex;
  align-items: center;
  gap: 6px;
}
.kg-how-it-works__cargo-price i {
  display: none;
  font-size: 1rem;
}
.kg-how-it-works__price-value {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.kg-how-it-works__dashboard-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #145e9a 0%, #0f4a7a 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.kg-how-it-works__dashboard-action:hover {
  box-shadow: 0 8px 32px rgba(20, 94, 154, 0.3);
  transform: translateY(-2px);
}
.kg-how-it-works__dashboard-action i {
  font-size: 0.875rem;
}
.kg-how-it-works__floating-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #E31E24;
  animation: float 4s ease-in-out infinite;
}
.kg-how-it-works__floating-badge i {
  font-size: 1.25rem;
}
.kg-how-it-works__content {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .kg-how-it-works__content {
    padding-left: 0;
    padding-top: 40px;
  }
}
.kg-how-it-works__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.kg-how-it-works__title .text-highlight {
  color: #E31E24;
}
.kg-how-it-works__subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  margin-bottom: 32px;
  max-width: 480px;
}
.kg-how-it-works__steps {
  margin-bottom: 32px;
}
.kg-how-it-works__step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  transition: all 0.3s ease;
}
.kg-how-it-works__step:last-child {
  border-bottom: none;
}
.kg-how-it-works__step:hover {
  padding-left: 8px;
}
.kg-how-it-works__step:hover .kg-how-it-works__step-number {
  color: #E31E24;
  background: rgba(227, 30, 36, 0.08);
}
.kg-how-it-works__step:hover .kg-how-it-works__step-title {
  color: #E31E24;
}
.kg-how-it-works__step-number {
  font-family: "Outfit", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #145e9a;
  background: rgba(20, 94, 154, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.kg-how-it-works__step-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  transition: all 0.3s ease;
}
.kg-how-it-works__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 24px;
}
@media (max-width: 992px) {
  .kg-how-it-works__note {
    justify-content: center;
  }
}
.kg-how-it-works__note i {
  color: #145e9a;
}

.kg-features-grid {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}
.kg-features-grid .text-primary {
  color: #145e9a;
}

.kg-bento {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kg-bento__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  .kg-bento__row {
    grid-template-columns: 1fr;
  }
}
.kg-bento__row--triple {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .kg-bento__row--triple {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .kg-bento__row--triple {
    grid-template-columns: 1fr;
  }
}
.kg-bento__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.kg-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.12);
}
.kg-bento__card--large {
  grid-column: span 1;
}
.kg-bento__card--medium {
  grid-column: span 1;
}
.kg-bento__card--small {
  min-height: 320px;
}
.kg-bento__card--small .kg-bento__content {
  padding-right: 80px;
}
.kg-bento__card--full {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
@media (max-width: 991px) {
  .kg-bento__card--full {
    flex-direction: column;
    gap: 32px;
  }
}
.kg-bento__card--full .kg-bento__content {
  flex: 0 0 20%;
}
.kg-bento__card--full .kg-bento__visual {
  flex: 1;
}
.kg-bento__card--blue {
  background: linear-gradient(135deg, #e8f4fd 0%, #d0e8f9 100%);
}
.kg-bento__card--blue .kg-bento__title {
  color: #145e9a;
}
.kg-bento__card--blue .kg-bento__icon-item,
.kg-bento__card--blue .kg-bento__center-icon {
  background: #145e9a;
  color: #ffffff;
}
.kg-bento__card--green {
  background: linear-gradient(135deg, #e6f9f0 0%, #c8f0dd 100%);
}
.kg-bento__card--green .kg-bento__title {
  color: #059669;
}
.kg-bento__card--green .kg-bento__price-new {
  color: #059669;
}
.kg-bento__card--green .kg-bento__price-badge {
  background: #059669;
}
.kg-bento__card--purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}
.kg-bento__card--purple .kg-bento__title {
  color: #7c3aed;
}
.kg-bento__card--purple .kg-bento__icon-float {
  background: #7c3aed;
}
.kg-bento__card--purple .kg-bento__ai-dots span {
  background: #7c3aed;
}
.kg-bento__card--cyan {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}
.kg-bento__card--cyan .kg-bento__title {
  color: #0891b2;
}
.kg-bento__card--cyan .kg-bento__icon-float {
  background: #0891b2;
}
.kg-bento__card--cyan .kg-bento__cloud-icon i {
  color: #0891b2;
}
.kg-bento__card--amber {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.kg-bento__card--amber .kg-bento__title {
  color: #d97706;
}
.kg-bento__card--amber .kg-bento__icon-float {
  background: #d97706;
}
.kg-bento__card--amber .kg-bento__ui-block {
  background: #d97706;
}
.kg-bento__card--rose {
  background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
}
.kg-bento__card--rose .kg-bento__title {
  color: #e11d48;
}
.kg-bento__card--rose .kg-bento__icon-float {
  background: #e11d48;
}
.kg-bento__card--rose .kg-bento__payment-icon {
  color: #e11d48;
}
.kg-bento__card--rose .kg-bento__payment-badge {
  background: #e11d48;
}
.kg-bento__card--indigo {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}
.kg-bento__card--indigo .kg-bento__title {
  color: #4f46e5;
}
.kg-bento__card--indigo .kg-bento__flow-item--highlight {
  background: #4f46e5;
  color: #ffffff;
}
.kg-bento__card--teal {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}
.kg-bento__card--teal .kg-bento__title {
  color: #0d9488;
}
.kg-bento__card--teal .kg-bento__map-pin {
  color: #0d9488;
}
.kg-bento__card--teal .kg-bento__tracking-status {
  background: #0d9488;
}
.kg-bento__content {
  position: relative;
  z-index: 2;
}
.kg-bento__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.kg-bento__text {
  font-size: 0.9375rem;
  color: #343a40;
  line-height: 1.65;
  margin: 0;
  opacity: 0.85;
}
.kg-bento__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  position: relative;
}
.kg-bento__visual--centered {
  margin-top: auto;
}
.kg-bento__visual--bottom {
  margin-top: auto;
  padding-top: 20px;
}
.kg-bento__visual--map {
  margin-top: 0;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 767px) {
  .kg-bento__visual--map {
    flex-direction: column;
  }
}
.kg-bento__icon-float {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.15);
}
.kg-bento__cargo-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 575px) {
  .kg-bento__cargo-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kg-bento__cargo-logo {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.06);
  transition: all 0.3s ease;
}
.kg-bento__cargo-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.1);
}
.kg-bento__cargo-logo img {
  max-width: 80px;
  max-height: 32px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
}
.kg-bento__logos-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #145e9a;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(20, 94, 154, 0.3);
}
.kg-bento__logos-badge i {
  font-size: 0.875rem;
}
.kg-bento__savings-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  width: 100%;
  max-width: 320px;
  position: relative;
  top: 10px;
}
.kg-bento__savings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(26, 26, 26, 0.1);
  margin-bottom: 16px;
}
.kg-bento__savings-route {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #343a40;
}
.kg-bento__savings-weight {
  font-size: 0.75rem;
  color: #6c757d;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 100px;
}
.kg-bento__savings-prices {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.kg-bento__savings-old {
  flex: 1;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}
.kg-bento__savings-old .kg-bento__savings-amount {
  color: #6c757d;
  text-decoration: line-through;
  font-size: 1.25rem;
}
.kg-bento__savings-new {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.kg-bento__savings-new .kg-bento__savings-amount {
  color: #059669;
  font-size: 1.5rem;
}
.kg-bento__savings-label {
  display: block;
  font-size: 0.6875rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.kg-bento__savings-amount {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
.kg-bento__savings-badge {
  display: inline-block;
  font-size: 0.625rem;
  color: #ffffff;
  background: #059669;
  padding: 3px 8px;
  border-radius: 100px;
  margin-top: 6px;
  font-weight: 600;
}
.kg-bento__savings-bar {
  position: relative;
  height: 8px;
  background: rgba(26, 26, 26, 0.08);
  border-radius: 100px;
  overflow: visible;
}
.kg-bento__savings-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 66%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 100px;
  animation: savingsGrow 2s ease-out infinite;
}
.kg-bento__savings-bar-label {
  position: absolute;
  right: 0;
  top: -24px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #059669;
}

@keyframes savingsGrow {
  0%, 100% {
    width: 66%;
  }
  50% {
    width: 70%;
  }
}
.kg-bento__ai-dots {
  display: flex;
  gap: 8px;
}
.kg-bento__ai-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: aiPulse 1.5s ease-in-out infinite;
}
.kg-bento__ai-dots span:nth-child(2) {
  animation-delay: 0.3s;
}
.kg-bento__ai-dots span:nth-child(3) {
  animation-delay: 0.6s;
}
.kg-bento__cloud-icon {
  position: relative;
}
.kg-bento__cloud-icon i:first-child {
  font-size: 4rem;
  opacity: 0.3;
}
.kg-bento__cloud-icon i:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.kg-bento__ui-blocks {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.kg-bento__ui-block {
  width: 32px;
  border-radius: 6px;
  opacity: 0.6;
}
.kg-bento__ui-block:nth-child(1) {
  height: 40px;
}
.kg-bento__ui-block:nth-child(2) {
  height: 60px;
  opacity: 0.8;
}
.kg-bento__ui-block:nth-child(3) {
  height: 48px;
}
.kg-bento__cod-flow {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}
@media (max-width: 575px) {
  .kg-bento__cod-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
.kg-bento__cod-courier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kg-bento__cod-courier-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
  position: relative;
  animation: courierPulse 2s ease-in-out infinite;
}
.kg-bento__cod-package {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #e11d48;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.1);
  animation: packageBounce 1.5s ease-in-out infinite;
}
.kg-bento__cod-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
}
@media (max-width: 575px) {
  .kg-bento__cod-connector {
    display: none;
  }
}
.kg-bento__cod-dots {
  display: flex;
  gap: 6px;
}
.kg-bento__cod-dots span {
  width: 8px;
  height: 8px;
  background: #e11d48;
  border-radius: 50%;
  opacity: 0.3;
  animation: dotFlow 1.2s ease-in-out infinite;
}
.kg-bento__cod-dots span:nth-child(1) {
  animation-delay: 0s;
}
.kg-bento__cod-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.kg-bento__cod-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.kg-bento__cod-payment {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kg-bento__cod-card {
  width: 100px;
  height: 62px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  padding: 10px 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}
.kg-bento__cod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: cardShine 2.5s ease-in-out infinite;
}
.kg-bento__cod-card:hover {
  transform: translateY(-4px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(26, 26, 46, 0.5);
}
.kg-bento__cod-card-chip {
  width: 22px;
  height: 16px;
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  border-radius: 4px;
  position: relative;
}
.kg-bento__cod-card-chip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  right: 3px;
  height: 1px;
  background: rgba(26, 26, 26, 0.2);
}
.kg-bento__cod-card-wave {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transform: rotate(90deg);
}
.kg-bento__cod-card-number {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Outfit", sans-serif;
  letter-spacing: 2px;
  font-weight: 500;
}
.kg-bento__cod-divider {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kg-bento__cod-divider span {
  font-size: 0.6875rem;
  color: rgba(52, 58, 64, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kg-bento__cod-cash {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
  transition: all 0.3s ease;
}
.kg-bento__cod-cash i {
  font-size: 1.125rem;
}
.kg-bento__cod-cash:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.45);
}
.kg-bento__cod-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.kg-bento__cod-success-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 2px solid rgba(5, 150, 105, 0.2);
  border-radius: 50%;
  animation: successRing 2s ease-out infinite;
}
.kg-bento__cod-success-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  animation: successPop 0.6s ease-out;
  position: relative;
  z-index: 1;
}
.kg-bento__cod-success-icon i {
  animation: checkMark 0.3s ease-out 0.3s both;
}
.kg-bento__cod-success span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(5, 150, 105, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

@keyframes courierPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(225, 29, 72, 0.5);
  }
}
@keyframes packageBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes dotFlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes cardShine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes successRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkMark {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.kg-bento__integration-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.kg-bento__flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
}
.kg-bento__flow-item i {
  font-size: 1.5rem;
  color: #4f46e5;
}
.kg-bento__flow-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #343a40;
}
.kg-bento__flow-item--highlight i {
  color: #ffffff;
}
.kg-bento__flow-item--highlight span {
  color: #ffffff;
}

.kg-bento__flow-arrow {
  color: #4f46e5;
  font-size: 1.25rem;
}
@media (max-width: 575px) {
  .kg-bento__flow-arrow {
    display: none;
  }
}

.kg-bento__tracking-demo {
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .kg-bento__tracking-demo {
    padding: 20px;
  }
}

.kg-bento__route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.kg-bento__route-line {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0d9488, rgba(13, 148, 136, 0.3));
  border-radius: 2px;
}
.kg-bento__route-line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 60%;
  height: 9px;
  background: linear-gradient(90deg, #0d9488, transparent);
  border-radius: 4px;
  animation: routeProgress 3s ease-in-out infinite;
}

.kg-bento__route-start,
.kg-bento__route-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.kg-bento__route-start span,
.kg-bento__route-end span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #343a40;
}

.kg-bento__route-dot {
  width: 16px;
  height: 16px;
  background: #0d9488;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.4);
}

.kg-bento__route-truck {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
  animation: truckMove 3s ease-in-out infinite;
  z-index: 3;
}

.kg-bento__tracking-steps {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .kg-bento__tracking-steps {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.kg-bento__tracking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
@media (max-width: 575px) {
  .kg-bento__tracking-step {
    flex: 0 0 45%;
  }
}
.kg-bento__tracking-step span {
  font-size: 0.6875rem;
  color: #6c757d;
  text-align: center;
}
.kg-bento__tracking-step--done .kg-bento__step-icon {
  background: #0d9488;
  color: #ffffff;
}
.kg-bento__tracking-step--done span {
  color: #0d9488;
  font-weight: 600;
}
.kg-bento__tracking-step--active .kg-bento__step-icon {
  background: #0d9488;
  color: #ffffff;
  animation: stepPulse 2s ease-in-out infinite;
}
.kg-bento__tracking-step--active span {
  color: #0d9488;
  font-weight: 600;
}

.kg-bento__step-icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #6c757d;
  transition: all 0.3s ease;
}

.kg-bento__custom-tracking {
  flex: 0 0 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
}
@media (max-width: 767px) {
  .kg-bento__custom-tracking {
    flex: none;
    width: 100%;
  }
}

.kg-bento__custom-tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.kg-bento__custom-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.kg-bento__custom-logo span:first-child {
  font-size: 0.5rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.kg-bento__custom-logo span:last-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: #145e9a;
}

.kg-bento__custom-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0d9488;
}

.kg-bento__status-dot {
  width: 8px;
  height: 8px;
  background: #0d9488;
  border-radius: 50%;
  animation: statusBlink 1.5s ease-in-out infinite;
}

.kg-bento__custom-tracking-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kg-bento__tracking-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kg-bento__tracking-label {
  font-size: 0.625rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kg-bento__tracking-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
}

.kg-bento__custom-tracking-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  background: rgba(13, 148, 136, 0.08);
  font-size: 0.6875rem !important;
  color: #0d9488;
  font-weight: 500;
}
.kg-bento__custom-tracking-footer i {
  font-size: 0.75rem;
}

@keyframes aiPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes pinBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes routeProgress {
  0%, 100% {
    width: 60%;
    opacity: 0.8;
  }
  50% {
    width: 70%;
    opacity: 1;
  }
}
@keyframes truckMove {
  0%, 100% {
    left: 55%;
  }
  50% {
    left: 58%;
  }
}
@keyframes stepPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(13, 148, 136, 0);
  }
}
@keyframes statusBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.kg-integrations {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
  overflow: hidden;
}
.kg-integrations__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}
.kg-integrations__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.kg-integrations__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 20px;
}
.kg-integrations__text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 440px;
}
.kg-integrations__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.kg-integrations__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
}
.kg-integrations__list li i {
  color: #ffffff;
  font-size: 1.25rem;
}
.kg-integrations__visual {
  position: relative;
  z-index: 2;
}
.kg-integrations__visual {
  position: relative;
}
.kg-integrations__badge {
  position: absolute;
  top: -50px;
  right: -50px;
  background: #145e9a;
  color: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(20, 94, 154, 0.3);
  z-index: 10;
  text-align: center;
}
.kg-integrations__badge-number {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
}
.kg-integrations__badge-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.95;
}
.kg-integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .kg-integrations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.kg-integrations__platform-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: white;
  min-height: 120px;
}
.kg-integrations__platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}
.kg-integrations__platform-card img {
  width: 100%;
  height: auto;
  max-width: 140px;
  object-fit: contain;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes counter-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.kg-testimonials {
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.kg-testimonials .container {
  position: relative;
  z-index: 2;
}
.kg-testimonials__marquee {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.kg-testimonials__marquee::before, .kg-testimonials__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}
.kg-testimonials__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}
.kg-testimonials__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}
.kg-testimonials__track {
  display: flex;
  width: max-content;
}
.kg-testimonials__track--left {
  animation: testimonialScrollLeft 60s linear infinite;
}
.kg-testimonials__track--left:hover {
  animation-play-state: paused;
}
.kg-testimonials__track--right {
  animation: testimonialScrollRight 60s linear infinite;
}
.kg-testimonials__track--right:hover {
  animation-play-state: paused;
}
.kg-testimonials__slide {
  display: flex;
  gap: 24px;
  padding: 0 12px;
  align-items: stretch;
}

@keyframes testimonialScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes testimonialScrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.kg-testimonial-bubble {
  flex-shrink: 0;
  width: 380px;
  transition: all 0.3s ease;
  display: flex;
}
@media (max-width: 575px) {
  .kg-testimonial-bubble {
    width: 320px;
  }
}
.kg-testimonial-bubble:hover {
  transform: translateY(-4px);
}
.kg-testimonial-bubble:hover .kg-testimonial-bubble__content {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.kg-testimonial-bubble__content {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  border: 1px solid rgba(20, 94, 154, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.kg-testimonial-bubble__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #E31E24 0%, #b7171c 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  justify-content: center;
}
.kg-testimonial-bubble__badge i {
  font-size: 0.7rem;
}
.kg-testimonial-bubble__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #343a40;
  margin-bottom: 20px;
  flex: 1;
}
.kg-testimonial-bubble__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.kg-testimonial-bubble__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.kg-testimonial-bubble__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.kg-testimonial-bubble__name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kg-testimonial-bubble__role {
  font-size: 0.8125rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kg-testimonial-bubble__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(20, 94, 154, 0.08);
  border-radius: 20px;
  flex-shrink: 0;
}
.kg-testimonial-bubble__rating i {
  color: #f59e0b;
  font-size: 0.875rem;
}
.kg-testimonial-bubble__rating span {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #343a40;
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__content {
  background: linear-gradient(135deg, #145e9a 0%, #0f4876 100%);
  border-color: transparent;
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__text {
  color: rgba(255, 255, 255, 0.95);
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__name {
  color: #ffffff;
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__role {
  color: rgba(255, 255, 255, 0.75);
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__rating {
  background: rgba(255, 255, 255, 0.15);
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__rating span {
  color: #ffffff;
}
.kg-testimonial-bubble--featured .kg-testimonial-bubble__badge {
  background: rgba(255, 255, 255, 0.2);
}
.kg-testimonial-bubble--highlight .kg-testimonial-bubble__content {
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #145e9a, #E31E24) border-box;
  border: 2px solid transparent;
}

.kg-contact {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.kg-contact__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(20, 94, 154, 0.03) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(227, 30, 36, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.kg-contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .kg-contact__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.kg-contact__info-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.kg-contact__header {
  margin-bottom: 8px;
}
.kg-contact__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.kg-contact__title span {
  color: #E31E24;
}
.kg-contact__subtitle {
  font-size: 1.0625rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 400px;
}
.kg-contact__quick-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kg-contact__quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f8f9fa;
  border: 1px solid #f1f3f5;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.kg-contact__quick-card:hover {
  background: #f1f3f5;
  border-color: rgba(20, 94, 154, 0.2);
  transform: translateX(8px);
}
.kg-contact__quick-card:hover .kg-contact__quick-arrow {
  opacity: 1;
  transform: translateX(0);
}
.kg-contact__quick-card--phone .kg-contact__quick-icon {
  background: linear-gradient(135deg, #145e9a 0%, #0f4a7a 100%);
  box-shadow: 0 8px 24px rgba(20, 94, 154, 0.3);
}
.kg-contact__quick-card--email .kg-contact__quick-icon {
  background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.3);
}
.kg-contact__quick-card--location {
  cursor: default;
}
.kg-contact__quick-card--location:hover {
  transform: none;
}
.kg-contact__quick-card--location .kg-contact__quick-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}
.kg-contact__quick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.kg-contact__quick-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kg-contact__quick-label {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.kg-contact__quick-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.125rem;
  color: #1a1a1a;
  font-weight: 600;
}
.kg-contact__quick-value--small {
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}
.kg-contact__quick-arrow {
  color: #6c757d;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.kg-contact__form-side {
  position: relative;
}
.kg-contact__form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  border: 1px solid #f1f3f5;
}
@media (max-width: 575px) {
  .kg-contact__form-card {
    padding: 28px;
  }
}
.kg-contact__form-header {
  margin-bottom: 28px;
  text-align: center;
}
.kg-contact__form-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.kg-contact__form-subtitle {
  color: #6c757d;
  font-size: 0.9375rem;
}

.kg-form--modern .kg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .kg-form--modern .kg-form__row {
    grid-template-columns: 1fr;
  }
}
.kg-form--modern .kg-form__group {
  margin-bottom: 16px;
}
.kg-form--modern .kg-form__group--icon {
  position: relative;
}
.kg-form--modern .kg-form__group--icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1rem;
  transition: color 0.2s ease;
  pointer-events: none;
}
.kg-form--modern .kg-form__group--icon .kg-form__input,
.kg-form--modern .kg-form__group--icon .kg-form__select {
  padding-left: 48px;
}
.kg-form--modern .kg-form__group--icon:focus-within i {
  color: #145e9a;
}
.kg-form--modern .kg-form__input,
.kg-form--modern .kg-form__select,
.kg-form--modern .kg-form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: #343a40;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.kg-form--modern .kg-form__input:focus,
.kg-form--modern .kg-form__select:focus,
.kg-form--modern .kg-form__textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #145e9a;
  box-shadow: 0 0 0 4px rgba(20, 94, 154, 0.1);
}
.kg-form--modern .kg-form__input::placeholder,
.kg-form--modern .kg-form__select::placeholder,
.kg-form--modern .kg-form__textarea::placeholder {
  color: #6c757d;
}
.kg-form--modern .kg-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.kg-form--modern .kg-form__submit {
  width: 100%;
  margin-top: 8px;
  gap: 10px;
}
.kg-form--modern .kg-form__submit i {
  font-size: 1rem;
}
.kg-form--modern .kg-form__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: #6c757d;
}
.kg-form--modern .kg-form__note i {
  color: #10b981;
  font-size: 0.875rem;
}

.kg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .kg-form__row {
    grid-template-columns: 1fr;
  }
}
.kg-form__group {
  margin-bottom: 16px;
}
.kg-form__label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #343a40;
  margin-bottom: 8px;
}
.kg-form__label--required::after {
  content: " *";
  color: #E31E24;
}
.kg-form__input, .kg-form__textarea, .kg-form__select {
  width: 100%;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: #343a40;
  background: #ffffff;
  border: 2px solid #f1f3f5;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.kg-form__input:focus, .kg-form__textarea:focus, .kg-form__select:focus {
  outline: none;
  border-color: #145e9a;
  box-shadow: 0 0 0 3px rgba(20, 94, 154, 0.1);
}
.kg-form__input::placeholder, .kg-form__textarea::placeholder, .kg-form__select::placeholder {
  color: #6c757d;
}
.kg-form__textarea {
  min-height: 140px;
  resize: vertical;
}
.kg-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 32px;
  font-size: 1rem;
}

.kg-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #E31E24 0%, #c41a1f 100%);
  text-align: center;
  overflow: hidden;
}
.kg-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}
.kg-cta__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.kg-cta__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 20px;
}
.kg-cta__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}
.kg-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.kg-cta__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.kg-cta__note i {
  color: rgba(255, 255, 255, 0.8);
}

.kg-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding-top: 80px;
}
.kg-footer__top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.kg-footer__brand {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .kg-footer__brand {
    margin-bottom: 0;
  }
}
.kg-footer__desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 20px 0;
  max-width: 300px;
  line-height: 1.7;
}
.kg-footer__social {
  display: flex;
  gap: 12px;
}
.kg-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.kg-footer__social a:hover {
  background: #145e9a;
  transform: translateY(-3px);
}
.kg-footer__links h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.kg-footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kg-footer__links ul li {
  margin-bottom: 12px;
}
.kg-footer__links ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.kg-footer__links ul a:hover {
  color: #ffffff;
  padding-left: 6px;
}
.kg-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
}
.kg-footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}
.kg-footer__badges {
  display: flex;
  gap: 24px;
}
.kg-footer__badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.kg-footer__badges span i {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
  .kg-hero {
    text-align: center;
  }
  .kg-hero__content {
    margin-bottom: 60px;
  }
  .kg-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .kg-hero__actions {
    justify-content: center;
  }
  .kg-hero__stats {
    justify-content: center;
  }
  .kg-dashboard {
    transform: none;
  }
  .kg-dashboard:hover {
    transform: none;
  }
  .kg-floating {
    display: none;
  }
  .kg-integrations {
    text-align: center;
  }
  .kg-integrations__content {
    margin-bottom: 40px;
  }
  .kg-integrations__text, .kg-integrations__list {
    margin-left: auto;
    margin-right: auto;
  }
  .kg-integrations__list {
    display: inline-block;
    text-align: left;
  }
  .kg-how-it-works__visual {
    margin-bottom: 40px;
    padding: 10px;
  }
  .kg-how-it-works__content {
    padding-left: 0;
    text-align: center;
  }
  .kg-how-it-works__step {
    justify-content: center;
  }
  .kg-how-it-works__browser {
    transform: none;
  }
  .kg-how-it-works__browser:hover {
    transform: none;
  }
  .kg-how-it-works__floating-badge {
    top: -10px;
    right: -10px;
  }
  .kg-how-it-works__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .kg-navbar__actions {
    display: none;
  }
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 16px;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  }
  .kg-hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .kg-hero__stat {
    flex: 0 0 45%;
  }
  .kg-dashboard__body {
    flex-direction: column;
  }
  .kg-dashboard__sidebar {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .kg-integrations__hub {
    max-width: 320px;
  }
  .kg-integrations__platform {
    width: 70px;
    height: 70px;
  }
  .kg-integrations__platform i {
    font-size: 1.25rem;
  }
  .kg-integrations__platform span {
    font-size: 0.5625rem;
  }
  .kg-integrations__logo-main {
    width: 90px;
    height: 90px;
  }
  .kg-integrations__logo-main i {
    font-size: 1.75rem;
  }
  .kg-integrations__logo-main span {
    font-size: 0.8125rem;
  }
  .kg-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .kg-section-header {
    margin-bottom: 40px;
  }
  .kg-features,
  .kg-process,
  .kg-testimonials,
  .kg-cta {
    padding: 60px 0;
  }
}
.kg-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.kg-video-modal.active {
  opacity: 1;
  visibility: visible;
}
.kg-video-modal.active .kg-video-modal__content {
  transform: scale(1);
  opacity: 1;
}
.kg-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.kg-video-modal__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}
.kg-video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 3;
}
.kg-video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.kg-video-modal__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.5);
}
.kg-video-modal__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .kg-video-modal__content {
    width: 95%;
  }
  .kg-video-modal__close {
    top: -45px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
i.fi {
  line-height: 0.75 !important;
}

.kg-page-header {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #f0f2f5 100%);
  overflow: hidden;
  text-align: center;
}
.kg-page-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 100px;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
}
.kg-page-header__badge i {
  color: #145e9a;
  font-size: 1rem;
}
.kg-page-header__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(20, 94, 154, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.kg-page-header__diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.kg-page-header__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.kg-page-header__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.1;
}
.kg-page-header__title--highlight {
  display: inline-block;
  position: relative;
  color: #145e9a;
}
.kg-page-header__title--highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(20, 94, 154, 0.15);
  border-radius: 4px;
}
.kg-page-header__subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.kg-tracking-section {
  padding: 0 0 80px;
  background: #ffffff;
}

.kg-tracking-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .kg-tracking-card {
    padding: 28px 20px;
    margin-top: -30px;
  }
}
.kg-tracking-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f3f5;
}
.kg-tracking-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(20, 94, 154, 0.1) 0%, rgba(20, 94, 154, 0.15) 100%);
  border-radius: 8px;
  color: #145e9a;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.kg-tracking-card__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.kg-tracking-card__desc {
  font-size: 0.9375rem;
  color: #6c757d;
  margin: 0;
}
.kg-tracking-card__form {
  margin-bottom: 24px;
}
.kg-tracking-card__input-wrapper {
  position: relative;
}
.kg-tracking-card__input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.125rem;
}
.kg-tracking-card__input-wrapper .kg-form__input {
  padding-left: 48px;
}
.kg-tracking-card__submit {
  width: 100%;
  margin-top: 16px;
}
.kg-tracking-card__submit i {
  transition: transform 0.2s ease;
}
.kg-tracking-card__submit:hover i {
  transform: translateX(0) scale(1.1);
}
.kg-tracking-card__info {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(20, 94, 154, 0.04) 0%, rgba(20, 94, 154, 0.08) 100%);
  border-radius: 8px;
  border-left: 4px solid #145e9a;
}
.kg-tracking-card__info i {
  font-size: 1.25rem;
  color: #145e9a;
  flex-shrink: 0;
  margin-top: 2px;
}
.kg-tracking-card__info p {
  margin: 0;
  font-size: 0.9375rem;
  color: #6c757d;
  line-height: 1.6;
}
.kg-tracking-card__info p strong {
  color: #145e9a;
  font-weight: 600;
}

.kg-tracking-result {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 40px;
  margin-top: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (max-width: 767px) {
  .kg-tracking-result {
    padding: 28px 20px;
  }
}
.kg-tracking-result__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f3f5;
}
.kg-tracking-result__status {
  display: flex;
  flex-direction: column;
}
.kg-tracking-result__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  margin-bottom: 12px;
  width: fit-content;
}
.kg-tracking-result__badge i {
  font-size: 1rem;
}
.kg-tracking-result__badge--in-transit {
  background: linear-gradient(135deg, rgba(20, 94, 154, 0.1) 0%, rgba(20, 94, 154, 0.15) 100%);
  color: #145e9a;
}
.kg-tracking-result__badge--delivered {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: #10b981;
}
.kg-tracking-result__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.kg-tracking-result__number {
  text-align: right;
}
@media (max-width: 575px) {
  .kg-tracking-result__number {
    text-align: left;
  }
}
.kg-tracking-result__number-label {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 4px;
}
.kg-tracking-result__number-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #145e9a;
  font-family: "Outfit", sans-serif;
}
.kg-tracking-result__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.kg-tracking-result__detail {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.kg-tracking-result__detail:hover {
  background: linear-gradient(135deg, rgba(20, 94, 154, 0.04) 0%, rgba(20, 94, 154, 0.08) 100%);
}
.kg-tracking-result__detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 8px;
  color: #145e9a;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.kg-tracking-result__detail-label {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 6px;
}
.kg-tracking-result__detail-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.kg-tracking-timeline__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.kg-tracking-timeline__title i {
  color: #145e9a;
  font-size: 1.125rem;
}
.kg-tracking-timeline__items {
  position: relative;
  padding-left: 8px;
}
.kg-tracking-timeline__items::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, #145e9a 0%, #f1f3f5 100%);
  border-radius: 2px;
}
.kg-tracking-timeline__item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 32px;
}
.kg-tracking-timeline__item:last-child {
  padding-bottom: 0;
}
.kg-tracking-timeline__item--active .kg-tracking-timeline__marker {
  background: #145e9a;
  border-color: #145e9a;
  box-shadow: 0 0 0 4px rgba(20, 94, 154, 0.15);
}
.kg-tracking-timeline__item--active .kg-tracking-timeline__marker::after {
  background: #ffffff;
}
.kg-tracking-timeline__item--active .kg-tracking-timeline__status {
  color: #145e9a;
}
.kg-tracking-timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 3px solid #f1f3f5;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.3s ease;
}
.kg-tracking-timeline__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1f3f5;
  transition: all 0.3s ease;
}
.kg-tracking-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
}
.kg-tracking-timeline__time {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}
.kg-tracking-timeline__status {
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
  margin: 0;
  font-family: "Outfit", sans-serif;
}
.kg-tracking-timeline__location {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}
.kg-tracking-timeline__location i {
  margin-right: 4px;
}

/*# sourceMappingURL=style.css.map */
