body.kepuni-home {
  --kp-lite-primary: #108A90;
  --kp-lite-primary-dark: #285f55;
  --kp-lite-text: #20242c;
  --kp-lite-muted: #667085;
  --kp-lite-line: #e8ecf2;
  --kp-lite-surface: #ffffff;
  --kp-lite-soft: #f6f8fb;
  --kp-lite-dark: #0f1723;
  --kp-lite-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
  margin: 0;
  background: #fff;
  color: var(--kp-lite-text);
}

body.kepuni-home,
body.kepuni-home * {
  box-sizing: border-box;
}

body.kepuni-home a,
body.kepuni-home button,
body.kepuni-home input {
  font-family: inherit;
}

body.kepuni-home a {
  color: inherit;
  text-decoration: none;
}

body.kepuni-home img {
  max-width: 100%;
}

.kp-container {
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
}

.kp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 23, 35, 0.06);
}

.kp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.kp-logo {
  flex: 0 0 auto;
}

.kp-logo img {
  display: block;
  width: 184px;
}

.kp-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.kp-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--kp-lite-text);
}

.kp-nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.kp-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kp-nav li {
  position: relative;
}

.kp-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 16px;
  color: #343a46;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

body.kepuni-home.is-home-top .kp-nav > ul > li > a,
body.kepuni-home.is-home-top .kp-tool-button,
body.kepuni-home.is-home-top .kp-logo {
  color: #fff;
}

body.kepuni-home.is-home-top .kp-lang .kp-tool-button {
  border-color: transparent;
  background: transparent;
}

body.kepuni-home.is-home-top .kp-search .kp-tool-button {
  background: rgba(255, 255, 255, 0.14);
}

body.kepuni-home.is-home-top .kp-mobile-toggle span {
  background: #fff;
}

.kp-nav > ul > li > a:hover,
.kp-nav > ul > li:hover > a {
  color: var(--kp-lite-primary);
}

.kp-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 12px 0;
  border: 1px solid var(--kp-lite-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--kp-lite-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.kp-dropdown a {
  display: block;
  padding: 10px 18px;
  color: #454f5d;
  font-size: 14px;
  line-height: 1.45;
}

.kp-dropdown a:hover {
  background: #eef7f5;
  color: var(--kp-lite-primary);
}

.kp-nav li:hover .kp-dropdown,
.kp-nav li.is-open .kp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kp-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kp-lang,
.kp-search {
  position: relative;
}

.kp-tool-button {
  border: 1px solid var(--kp-lite-line);
  border-radius: 999px;
  background: #fff;
  color: var(--kp-lite-text);
  padding: 11px 16px;
  font-size: 14px;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.kp-tool-button:hover {
  border-color: var(--kp-lite-primary);
  color: var(--kp-lite-primary);
}

.kp-search .kp-tool-button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--kp-lite-primary);
  color: #fff;
  font-size: 20px;
}

.kp-search .kp-tool-button:hover {
  background: var(--kp-lite-primary-dark);
  color: #fff;
}

.kp-search .kp-tool-button:before {
  content: "\1F50D";
}

.kp-lang-menu,
.kp-search-form {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.kp-lang.is-open .kp-lang-menu,
.kp-search.is-open .kp-search-form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kp-lang-menu {
  width: 220px;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px 0;
  border: 1px solid var(--kp-lite-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--kp-lite-shadow);
}

.kp-lang-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #46505f;
}

.kp-lang-menu a:hover {
  background: #eef7f5;
  color: var(--kp-lite-primary);
}

.kp-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 320px;
  padding: 10px;
  border: 1px solid var(--kp-lite-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--kp-lite-shadow);
}

.kp-search-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--kp-lite-text);
  font-size: 14px;
  outline: 0;
}

.kp-search-form button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--kp-lite-primary);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
}

.kp-side-tools {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 200;
  transform: translateY(-50%);
}

.kp-side-handle {
  display: none;
}

.kp-side-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kp-side-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--kp-lite-shadow);
  color: #4b5565;
  font-size: 0;
}

.kp-side-item img,
.kp-socials img,
.kp-social-qr img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.kp-side-backtop {
  background: var(--kp-lite-primary);
  color: #fff;
}

.kp-side-arrow {
  font-size: 22px;
  line-height: 1;
}

.kp-side-pop {
  display: none;
}

.kp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #0f1723;
}

.kp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 35, 0.82), rgba(15, 23, 35, 0.32));
  pointer-events: none;
}

.kp-products,
.kp-about,
.kp-steps,
.kp-global,
.kp-news,
.kp-footer {
  padding-top: 64px;
}

/* ── Steps Section ── */
.kp-steps {
  background: #f7f9fa;
  padding-bottom: 72px;
}

.kp-steps-head {
  text-align: center;
  margin-bottom: 48px;
}

.kp-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid #108A90;
  color: #108A90;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.kp-steps-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: #0f1a1a;
  line-height: 1.18;
  margin: 0 0 18px;
}

.kp-steps-head h2 span {
  color: #108A90;
}

.kp-steps-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.kp-steps-divider em {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #108A90;
}
.kp-steps-divider em:first-child { width: 28px; opacity: 0.4; }
.kp-steps-divider em:last-child  { width: 48px; }

.kp-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.kp-step-card {
  background: #fff;
  border-radius: 12px;
  padding: 0 20px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kp-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(16,138,144,0.13);
}

.kp-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 0 0 20px;
}

.kp-step-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: #0b3235;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  letter-spacing: 0.03em;
}

.kp-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #108A90;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -10px;
  margin-right: -4px;
  box-shadow: 0 4px 16px rgba(16,138,144,0.35);
}
.kp-step-icon svg {
  width: 32px;
  height: 32px;
}

.kp-step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #108A90;
  line-height: 1.3;
  margin: 0 0 10px;
}

.kp-step-card p {
  font-size: 13px;
  color: #5a6e7a;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1100px) {
  .kp-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .kp-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kp-step-top {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.kp-about {
  background: linear-gradient(180deg, #f7f8fa 0%, #eef2f5 100%);
}

.kp-product-tabs,
.kp-news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 38px;
  border-bottom: 1px solid #cfd6df;
}

.kp-product-tabs button,
.kp-news-tabs button {
  position: relative;
  margin-bottom: -1px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #353c47;
  padding: 0 12px 16px;
  font-size: 17px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.kp-product-tabs button.active,
.kp-news-tabs button.active,
.kp-product-tabs button:hover,
.kp-news-tabs button:hover {
  border-color: var(--kp-lite-primary);
  color: var(--kp-lite-primary);
}

.kp-product-panel,
.kp-news-panel {
  display: none;
}

.kp-product-panel.active,
.kp-news-panel.active {
  display: grid;
}

.kp-product-panel.active {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  min-height: 590px;
}

.kp-product-feature {
  display: block;
  min-height: 590px;
  height: 590px;
  overflow: visible;
  border-radius: 10px;
  background:
    radial-gradient(ellipse 75% 50% at 10% 5%, rgba(16, 138, 144, 0.12) 0%, transparent 65%),
    linear-gradient(150deg, #4a5260 0%, #3c434f 45%, #2e3540 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
}

.kp-product-feature:before {
  content: none;
}

.kp-product-feature-inner {
  position: relative;
  display: block;
  height: auto;
  min-height: 100%;
  padding: 22px 28px 22px;
  padding-bottom: 94px;
}

.kp-product-feature-inner h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 35px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.kp-product-feature-inner p {
  margin: 0;
  max-height: calc(1.9em * 12);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 14;
  text-overflow: ellipsis;
}

.kp-product-feature-inner span {
  position: absolute;
  left: 28px;
  bottom: 22px;
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(16, 138, 144, 0.6);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
}
.kp-product-feature:hover .kp-product-feature-inner span {
  background: rgba(16, 138, 144, 0.2);
  border-color: #108A90;
}

.kp-product-carousel {
  position: relative;
  height: 100%;
  padding-right: 64px;
}

.kp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 40px;
  align-items: stretch;
  transition: opacity 0.18s ease, transform 0.18s ease;
  will-change: opacity, transform;
}

.kp-product-grid.is-animating-out {
  opacity: 0;
  transform: translateX(-18px);
}

.kp-product-grid.is-animating-in {
  opacity: 0;
  transform: translateX(18px);
}

.kp-product-card {
  display: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 0.2s ease;
}

.kp-product-card.is-visible {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kp-product-card:hover {
  transform: scale(1.04);
}

.kp-product-card:hover h3 {
  color: var(--kp-lite-primary);
  border-bottom-color: var(--kp-lite-primary);
}

.kp-product-card-image {
  order: 2;
  flex: 1 1 auto;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.kp-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kp-product-card h3 {
  order: 1;
  display: inline-block;
  min-height: 58px;
  margin: 0 0 24px;
  padding-bottom: 4px;
  color: var(--kp-lite-text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  border-bottom: 3px solid rgba(32, 36, 44, 0.88);
}

.kp-product-grid-next {
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 138, 144, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--kp-lite-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.kp-product-grid-next:hover:not([disabled]) {
  background: var(--kp-lite-primary);
  border-color: var(--kp-lite-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.03);
}

.kp-product-grid-next[disabled] {
  opacity: 0;
  pointer-events: none;
}

.kp-product-carousel.is-static .kp-product-grid-next {
  display: none;
}

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

.kp-section-head h2,
.kp-section-head-news h2 {
  margin: 0;
  color: var(--kp-lite-text);
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1;
}

.kp-section-head h2 span,
.kp-section-head-news h2 span {
  color: var(--kp-lite-primary);
}

.kp-section-head p {
  margin: 14px 0 0;
  color: var(--kp-lite-muted);
  font-size: 18px;
  line-height: 1.5;
}

.kp-about .kp-section-head {
  align-items: flex-start;
}

.kp-about .kp-section-head h2 {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kp-about .kp-section-head p {
  max-width: 820px;
  margin-top: 12px;
  color: var(--kp-lite-text);
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 1.04;
}

.kp-more-link {
  color: #8a93a1;
  font-size: 26px;
  line-height: 1;
}

.kp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.kp-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.kp-about .kp-section-head.kp-reveal {
  transition-delay: 0.02s;
}

.kp-about-visual.kp-reveal {
  transition-delay: 0.12s;
}

.kp-stats.kp-reveal {
  transition-delay: 0.2s;
}

.kp-about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.kp-about-visual img {
  display: block;
  width: 100%;
}

.kp-about-button {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(15, 23, 35, 0.5);
  color: #fff;
  font-size: 28px;
}

.kp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.kp-stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--kp-lite-line);
}

.kp-stat-card:nth-child(-n+2) {
  background: var(--kp-lite-primary);
  border-color: var(--kp-lite-primary);
}

.kp-stat-card:nth-child(n+3) {
  background: #38475a;
  border-color: #38475a;
}

.kp-stat-copy strong,
.kp-stat-copy span,
.kp-stat-copy p {
  color: #fff;
}

.kp-stat-copy strong {
  display: inline-block;
  font-size: 36px;
  line-height: 1;
}

.kp-stat-copy span {
  margin-left: 4px;
  font-size: 18px;
  vertical-align: top;
}

.kp-stat-copy p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.kp-stat-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.kp-global {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
}

.kp-global-solo {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
}

.kp-global-map--solo {
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: hidden;
}

.kp-global-intro {
  width: min(calc(100% - 48px), 1320px);
  margin: 0 auto;
  padding: clamp(54px, 6vh, 84px) 0 0;
}

.kp-global-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8d98a7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kp-global-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(16, 138, 144, 0.55);
}

.kp-global-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.kp-global-intro h2 {
  margin: 0;
  color: var(--kp-lite-text);
  font-size: clamp(50px, 5.8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-align: center;
  white-space: normal;
}

.kp-global-intro h2 span {
  color: var(--kp-lite-primary);
}

.kp-global-intro p {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  border-left: 0;
  color: #536174;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.74;
  text-align: center;
}

.kp-world-map {
  width: 100%;
  height: calc(100vh - 116px);
  height: calc(100dvh - 116px);
  border-radius: 0;
  background: transparent;
  border: 0;
}

.kp-world-map-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.kp-world-map-label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(204, 214, 226, 0.92);
  background: rgba(255, 255, 255, 0.96);
  color: #2d3a4a;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(24, 39, 75, 0.12);
  opacity: 0;
  transform: translate(26px, -50%);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.kp-world-map-label::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #108A90;
  box-shadow: 0 0 0 5px rgba(16, 138, 144, 0.18);
  transform: translateY(-50%);
}

.kp-world-map-label.is-right {
  transform: translate(calc(-100% - 26px), -50%);
}

.kp-world-map-label.is-right::before {
  left: auto;
  right: -18px;
}

.kp-world-map-label.is-visible {
  opacity: 1;
}

.kp-world-map-label.is-visible:not(.is-right) {
  transform: translate(14px, -50%);
}

.kp-world-map-label.is-visible.is-right {
  transform: translate(calc(-100% - 14px), -50%);
}

.kp-world-map-label.is-leaving:not(.is-right) {
  transform: translate(40px, -50%);
}

.kp-world-map-label.is-leaving.is-right {
  transform: translate(calc(-100% - 40px), -50%);
}

.kp-news-panel.active {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.kp-news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--kp-lite-line);
  border-radius: 28px;
  background: #fff;
}

.kp-news-copy {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
}

.kp-news-copy time {
  color: #8d96a5;
  font-size: 18px;
  line-height: 1;
}

.kp-news-copy time span {
  margin-right: 8px;
  color: var(--kp-lite-primary);
  font-size: 34px;
}

.kp-news-copy h3 {
  margin: 20px 0 14px;
  color: var(--kp-lite-text);
  font-size: 26px;
  line-height: 1.25;
}

.kp-news-copy p {
  margin: 0;
  color: var(--kp-lite-muted);
  font-size: 16px;
  line-height: 1.75;
}

.kp-news-copy em {
  margin-top: auto;
  color: var(--kp-lite-primary);
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
}

.kp-news-image {
  min-height: 100%;
  background: var(--kp-lite-soft);
}

.kp-news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kp-news3-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.kp-news3-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--kp-lite-line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  padding-bottom: 220px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kp-news3-card:hover {
  border-color: var(--kp-lite-primary);
  box-shadow: 0 8px 24px rgba(24, 39, 75, 0.08);
}

.kp-news3-card.is-active {
  border-color: var(--kp-lite-primary);
}

.kp-news3-top {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kp-news3-date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  color: #8d98a7;
  line-height: 1;
}

.kp-news3-date span {
  font-size: 22px;
  font-weight: 700;
  color: var(--kp-lite-primary);
}

.kp-news3-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--kp-lite-text);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kp-news3-card p {
  margin: 0;
  font-size: 14px;
  color: var(--kp-lite-muted);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease 0.05s;
}

.kp-news3-card em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  font-style: normal;
  font-size: 13px;
  color: var(--kp-lite-primary);
}

.kp-news3-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  overflow: hidden;
  background: var(--kp-lite-soft);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
}

.kp-news3-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kp-news3-card:hover .kp-news3-img {
  transform: translateY(100%);
  opacity: 0;
}

.kp-news3-card:hover p {
  max-height: 400px;
}

.kp-footer {
  padding: 72px 0 40px;
  background: #fff;
  border-top: 1px solid var(--kp-lite-line);
  color: var(--kp-lite-text);
}

.kp-footer-top {
  position: absolute;
  right: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f3f5f8;
  color: var(--kp-lite-text);
}

.kp-footer-inner {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
}

.kp-footer-contact dt {
  margin-bottom: 10px;
  color: #8b94a1;
  font-size: 15px;
  font-weight: 400;
}

.kp-footer-contact dd,
.kp-footer-contact dd a {
  margin: 0 0 22px;
  color: var(--kp-lite-text);
  font-size: 20px;
  line-height: 1.5;
}

.kp-footer-sitemap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.kp-footer-column h3 {
  margin: 0 0 16px;
  color: var(--kp-lite-text);
  font-size: 18px;
  line-height: 1.3;
}

.kp-footer-column a {
  display: block;
  margin-bottom: 12px;
  color: #637080;
  font-size: 14px;
  line-height: 1.45;
}

.kp-footer-column a:hover {
  color: var(--kp-lite-primary);
}

.kp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--kp-lite-line);
}

.kp-footer-bottom p {
  margin: 0;
  color: #7d8694;
  font-size: 13px;
  line-height: 1.6;
}

.kp-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kp-socials a,
.kp-social-qr {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f3f5f8;
}

.kp-social-qr-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 132px;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--kp-lite-line);
  box-shadow: var(--kp-lite-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.kp-social-qr:hover .kp-social-qr-pop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.kp-social-qr-pop img {
  width: 100%;
  height: auto;
}

.kp-mobile-bar {
  display: none;
}

@media (max-width: 1180px) {
  .kp-mobile-toggle {
    display: inline-block;
  }

  .kp-nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--kp-lite-line);
    background: #fff;
  }

  .kp-header.is-open .kp-nav-wrap {
    display: flex;
  }

  .kp-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .kp-nav > ul > li > a {
    min-height: 0;
    padding: 12px 0;
  }

  .kp-dropdown {
    position: static;
    min-width: 0;
    margin-top: 6px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 0 10px;
  }

  .kp-nav li.is-open .kp-dropdown {
    display: block;
  }

  .kp-tools {
    width: 100%;
    justify-content: space-between;
  }

  .kp-product-panel.active,
  .kp-news-panel.active,
  .kp-footer-inner,
  .kp-footer-sitemap {
    grid-template-columns: 1fr;
  }

  .kp-news3-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kp-product-panel.active {
    gap: 26px;
    min-height: auto;
  }

  .kp-product-feature {
    min-height: 420px;
  }

  .kp-product-grid {
    gap: 24px;
  }

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

@media (max-width: 767px) {
  .kp-container {
    width: min(calc(100% - 24px), 100%);
  }

  .kp-header-inner {
    min-height: 72px;
  }

  .kp-logo img {
    width: 146px;
  }

  .kp-side-tools {
    display: none;
  }

  .kp-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .kp-product-feature {
    min-height: 320px;
  }

  .kp-product-feature-inner {
    padding: 24px 22px;
  }

  .kp-product-feature-inner h2 {
    max-width: none;
    font-size: 28px;
  }

  .kp-product-feature-inner p,
  .kp-news-copy p {
    font-size: 15px;
  }

  .kp-product-carousel {
    padding-right: 0;
  }

  .kp-product-grid {
    grid-template-columns: 1fr;
  }

  .kp-product-grid-next {
    position: static;
    margin-top: 16px;
    transform: none;
  }

  .kp-product-grid-next:hover:not([disabled]) {
    transform: scale(1.04);
  }

  .kp-product-card h3 {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 17px;
  }

  .kp-section-head,
  .kp-section-head-news,
  .kp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .kp-section-head h2,
  .kp-section-head-news h2 {
    font-size: 40px;
  }

  .kp-news-card {
    grid-template-columns: 1fr;
  }

  .kp-news-image {
    min-height: 220px;
    order: -1;
  }

  .kp-stats {
    grid-template-columns: 1fr;
  }

  .kp-world-map {
    height: calc(100vh - 112px);
    height: calc(100dvh - 112px);
    border-radius: 0;
  }

  .kp-global-intro {
    width: min(calc(100% - 32px), 100%);
    padding: 60px 0 0;
  }

  .kp-global-kicker {
    justify-content: center;
    width: 100%;
    letter-spacing: 0.18em;
  }

  .kp-global-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 14px;
  }

  .kp-global-intro h2 {
    font-size: 42px;
    line-height: 0.98;
    text-align: center;
  }

  .kp-global-intro p {
    padding: 0;
    border-left: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.65;
  }

  .kp-footer {
    padding-bottom: 86px;
  }

  .kp-mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .kp-mobile-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    background: var(--kp-lite-dark);
    color: #fff;
    font-size: 14px;
  }

  .kp-mobile-bar a:last-child {
    background: var(--kp-lite-primary);
  }
}

/* ── Hero Content Overlay ── */
.kp-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 max(32px, calc((100% - 1280px) / 2 + 32px));
  padding-top: 260px;
  padding-bottom: 0;
}

.kp-hero-inner {
  max-width: 620px;
}

.kp-hero-title {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.kp-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(14px, 1.2vw, 17px);
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}

.kp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.kp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 6px;
  background: #108A90;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.kp-hero-btn-primary:hover {
  background: #0d7278;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.kp-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.65);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.kp-hero-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.kp-hero-features {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: -52px;
  padding: 0 max(32px, calc((100% - 1280px) / 2 + 32px));
  padding-bottom: 0;
}

.kp-hero-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 26px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #108A90;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(16,138,144,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.kp-hero-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16), 0 4px 16px rgba(16,138,144,0.14);
}

.kp-hero-feat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 138, 144, 0.1);
  border: 1.5px solid rgba(16, 138, 144, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #108A90;
}
.kp-hero-feat-icon svg {
  width: 26px;
  height: 26px;
}

.kp-hero-feat-body h3 {
  color: #0f1a1a;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}
.kp-hero-feat-body p {
  color: #5a6e7a;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .kp-hero-content {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 120px;
  }

  .kp-hero-features {
    gap: 14px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .kp-hero-feat {
    padding: 22px 18px;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .kp-hero-content {
    padding: 100px 20px 0;
  }

  .kp-hero-title {
    font-size: 32px;
  }

  .kp-about .kp-section-head h2 {
    font-size: 16px;
  }

  .kp-about .kp-section-head p {
    font-size: 32px;
    line-height: 1.08;
  }

  .kp-hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: -32px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
