/* Visual-first homepage introduced in Klebstar 1.9.28. */
.khp-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-shadow: none;
}

.khp-header-inner {
  min-height: 68px;
}

.khp-header .khp-nav {
  display: flex;
  justify-content: flex-end;
}

.khp-hero .khp-split {
  position: relative;
  display: block;
  min-height: clamp(500px, 54vw, 680px);
  overflow: hidden;
  border-radius: var(--khp-section-radius);
  box-shadow: 0 26px 70px rgba(54, 36, 88, .15);
}

.khp-hero .khp-split::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(63, 42, 103, .7) 0%, rgba(78, 56, 121, .46) 32%, rgba(78, 56, 121, .08) 58%, transparent 74%);
  pointer-events: none;
}

.khp-hero .khp-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(26px, 5vw, 70px);
  width: min(43%, 510px);
  color: #fff;
  transform: translateY(-50%);
}

.khp-hero .khp-title {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 72px);
}

.khp-hero .khp-title span {
  color: inherit;
}

.khp-hero .khp-title span::after {
  display: none;
}

.khp-hero .khp-eyebrow {
  min-height: auto;
  margin-bottom: 20px;
  padding: 0;
  color: #fff;
  background: transparent;
}

.khp-hero .khp-subtitle {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(18px, 2vw, 23px);
}

.khp-hero .khp-ease-flow,
.khp-hero .khp-microtrust {
  display: none;
}

.khp-hero .khp-actions {
  margin-top: 28px;
}

.khp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.khp-hero-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.khp-design-choice .khp-title {
  text-transform: uppercase;
  color: var(--khp-primary);
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -.02em;
}

.khp-choice-grid {
  margin-top: 30px;
}

.khp-benefits .khp-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.khp-benefits .khp-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: var(--khp-section-radius);
  box-shadow: none;
}

.khp-benefits .khp-card:first-child {
  grid-column: 1 / -1;
}

.khp-benefits .khp-card-image {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1.06 / 1;
  border-radius: 0;
  object-fit: cover;
}

.khp-benefits .khp-card:first-child .khp-card-image {
  aspect-ratio: 2.89 / 1;
}

.khp-benefits .khp-card h3,
.khp-benefits .khp-card p {
  display: none;
}

.khp-price-strip {
  padding: 62px 0 68px;
  color: var(--khp-text);
  background: #fff;
  text-align: center;
}

.khp-price-inner h2 {
  margin: 0;
  color: var(--khp-primary);
  font-family: var(--khp-heading);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.khp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.khp-price-card {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 8px;
  padding: 22px 14px;
  color: var(--khp-primary);
  background: #fff;
  border: 1px solid rgba(62, 44, 91, .15);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(54, 35, 90, .05);
  font-family: var(--khp-heading);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.khp-price-card span::after {
  content: " ·";
}

.khp-price-trust {
  margin: 25px 0 20px;
  color: color-mix(in srgb, var(--khp-text) 66%, transparent);
  font-size: 14px;
}

.khp-price-trust i {
  padding-inline: 7px;
  font-style: normal;
}

.khp-price-cta {
  min-width: 225px;
}

#klebstar-homepage > .khp-footer .ks-site-footer-address,
#klebstar-homepage > .khp-footer .ks-site-footer-contact {
  display: none;
}

@media (max-width: 900px) {
  .khp-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .khp-hero .khp-split {
    min-height: 610px;
  }

  .khp-hero .khp-split::after {
    background: linear-gradient(180deg, rgba(55, 37, 91, .74) 0%, rgba(63, 43, 102, .5) 44%, rgba(63, 43, 102, .08) 72%);
  }

  .khp-hero .khp-copy {
    top: 34px;
    right: 24px;
    left: 24px;
    width: auto;
    transform: none;
  }

  .khp-hero .khp-title {
    max-width: 10ch;
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .khp-hero-image img {
    object-position: 59% center;
  }

  .khp-benefits .khp-card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .khp-benefits .khp-card:first-child {
    grid-column: auto;
  }

  .khp-benefits .khp-card:first-child .khp-card-image {
    aspect-ratio: 2.89 / 1;
    object-fit: contain;
  }
}

@media (max-width: 520px) {
  .khp-header-inner {
    min-height: 58px;
  }

  .khp-header .khp-nav {
    display: flex;
    gap: 11px;
    font-size: 10px;
    text-transform: uppercase;
  }

  .khp-price-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .khp-price-card {
    padding: 18px 12px;
  }

  .khp-price-trust {
    display: grid;
    gap: 3px;
  }

  .khp-price-trust i {
    display: none;
  }
}

/* 2.1.5: align the final CTA as one deliberate four-column composition. */
.khp-cta .khp-cta-inner {
  display: grid;
  grid-template-columns: 145px minmax(390px, 1fr) minmax(205px, 240px) 150px;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.khp-cta .khp-eyebrow,
.khp-cta .khp-title,
.khp-cta .khp-subtitle,
.khp-cta .khp-button {
  margin-top: 0;
  margin-bottom: 0;
}

.khp-cta .khp-eyebrow {
  justify-self: start;
  width: 145px;
  text-align: center;
}

.khp-cta .khp-title {
  justify-self: center;
  width: 100%;
  max-width: 15ch;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.khp-cta .khp-subtitle {
  justify-self: center;
  max-width: 18ch;
  font-size: clamp(17px, 1.75vw, 23px);
  line-height: 1.36;
  text-align: center;
  text-wrap: balance;
}

.khp-cta .khp-button {
  justify-self: end;
  width: 150px;
  min-height: 58px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .khp-cta .khp-cta-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .khp-cta .khp-eyebrow,
  .khp-cta .khp-title,
  .khp-cta .khp-subtitle,
  .khp-cta .khp-button {
    justify-self: center;
  }

  .khp-cta .khp-title {
    max-width: 16ch;
  }

  .khp-cta .khp-subtitle {
    max-width: 27ch;
  }
}
