/* Base container */
.plan-cont{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 330px;
}

/* PRO title */
.plan-title .elementor-heading-title{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: -20px !important;
  margin-left: 46px;
}

/* Price line */
.plan-price{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: -10px !important;
  margin-left: 46px;
}

.plan-card{
  position: relative;
  border-radius: 20px;
  padding: 4px;
  max-width: 330px;
  margin-left:30px;
  height: 100%;
  background: #fff;
}

.plan-card::before{
  content:"";
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, #f7b733 0%, #f28c28 55%, #f06a4f 100%);
  border-radius: 24px;
  height: 101.6%;
  width: 102.5%;
  z-index: -1;
}

/* Subtitle (Free Plan*) */
.plan-subtitle{
  font-size: 20px;
  font-weight: 600;
}

/* COMING SOON badge */
.plan-badge{
  margin: 0 0 12px 0;
}

.plan-badge .elementor-heading-title{
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  padding: 10px 14px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;

  /* gradient similar to screenshot */
  background: linear-gradient(90deg, #f7b733 0%, #f28c28 55%, #f06a4f 100%);
  width: 104%;
  position: relative;
  margin: -2%;
}

/* Button */
/* PLAN BUTTON SYSTEM */
.plan-button .elementor-button{
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  width: 94%;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  margin: 3%;
}

/* Hover */
.plan-button .elementor-button:hover{
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* Orange kicker line */
.plan-kicker .elementor-heading-title{
  color: #f28c28;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, #f7b733 0%, #f28c28 55%, #f06a4f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icon list */
.plan-list .elementor-icon-list-items{
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.plan-list .elementor-icon-list-item{
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px;
  padding: 12px 0 !important;
  margin: 0 !important;
  border: none !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin-left: 5% !important;
}

.plan-list .elementor-icon-list-icon{
  width: 20px;
  display: flex !important;
  justify-content: flex-start !important;
  align-self: flex-start !important;
  margin-top: 4px !important;
  flex-shrink: 0;
}

.plan-list .elementor-icon-list-icon svg{
  width: 20px !important;
  height: 20px !important;
}

.plan-list .elementor-icon-list-text{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.request-demo-layout{
  display: flex;
  flex-direction: column;
}

.request-demo-layout .request-demo-starter{ order: 1; }
.request-demo-layout .request-demo-form{ order: 2; }

.variant-B .request-demo-layout .request-demo-starter{ order: 2; }
.variant-B .request-demo-layout .request-demo-form{ order: 1; }

#blur-me {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

/* Make sure container is positioned */
#coming-soon {
  position: relative;
}

/* Overlay */
#coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.65);*/
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  
  display: flex;
  align-items: center;
  justify-content: center;

  /*color: #ffffff;*/
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;

  z-index: 10;
}

/* Block interaction */
#coming-soon * {
  pointer-events: none;
}