/* Wider horizontal pricing: fuller left panel + fewer features per column */
#pricing .lkh-price-card.spotlight-card {
  --mx: 50%;
  --my: 40%;
}
#pricing .lkh-price-card.spotlight-card::before {
  opacity: 0.45;
}

#pricing .lkh-price-wrap {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
}

#pricing .lkh-price-body {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 1024px) {
  #pricing .lkh-price-body {
    grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
  }
}

#pricing .lkh-price-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06) 0%, transparent 45%);
}
@media (min-width: 1024px) {
  #pricing .lkh-price-sidebar {
    padding: 2.25rem 2rem 2.5rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100%;
  }
}

#pricing .lkh-price-brand h3 {
  font-size: clamp(2.1rem, 2.4vw, 2.75rem) !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

#pricing .lkh-price-brand p {
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 22rem;
}

#pricing .lkh-price-buy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Clear monthly / yearly period selector */
#pricing .lkh-period-label {
  margin: 0 0 0.55rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(103, 232, 249, 0.85);
}

#pricing .lkh-period-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
}

#pricing .lkh-period-btn {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 3.6rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(203, 213, 225, 0.9);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}
#pricing .lkh-period-btn:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.06);
  color: #fff;
}
#pricing .lkh-period-btn.is-active {
  border-color: rgba(34, 211, 238, 0.55);
  color: #04101f;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.25), 0 10px 28px -16px rgba(34, 211, 238, 0.75);
}
#pricing .lkh-period-active {
  position: absolute;
  inset: 0;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #67e8f9 0%, #e0f2fe 55%, #ffffff 100%);
}
#pricing .lkh-period-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
}
#pricing .lkh-period-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
#pricing .lkh-period-hint {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.75;
  line-height: 1.2;
}
#pricing .lkh-period-btn.is-active .lkh-period-hint {
  opacity: 0.7;
  color: rgba(15, 23, 42, 0.72);
}

#pricing .lkh-price-amount {
  font-size: clamp(3.75rem, 5.2vw, 5.25rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em;
}

#pricing .lkh-price-period {
  font-size: 1.05rem !important;
  padding-bottom: 0.55rem !important;
}

#pricing .lkh-price-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

#pricing .lkh-price-ctas a,
#pricing .lkh-price-ctas button {
  width: 100%;
}

#pricing .lkh-price-features {
  padding: 1.5rem 1.5rem 1.75rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  #pricing .lkh-price-features {
    padding: 1.75rem 1.85rem 2rem;
  }
}

/*
  Half the previous density:
  was ~14/col with 3 columns → now ~7/col with 6 columns on wide screens.
*/
#pricing .lkh-feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  #pricing .lkh-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  #pricing .lkh-feat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  #pricing .lkh-feat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1480px) {
  #pricing .lkh-feat-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

#pricing .lkh-feat-item {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.55rem 0.65rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
#pricing .lkh-feat-item:hover {
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.06);
}

#pricing .lkh-feat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(59, 130, 246, 0.2));
  box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.3);
}

#pricing .lkh-feat-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.3;
  color: rgb(226, 232, 240);
}
#pricing .lkh-feat-item:hover .lkh-feat-text {
  color: #fff;
}

[data-testid="comparison-section"] {
  display: none !important;
}
