/* Kit Digital specific styles */

.kit-digital-page {
  background-color: #000;
  color: #fff;
  font-family: var(--font-1);
  overflow-x: hidden;
}

/* Section 1: Green Steps Cards */
.kd-steps-section {
  padding: 80px 0;
}

.kd-step-card {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.53) 0%,
    rgba(0, 214, 163, 0.3) 100%
  );

  border-radius: 15px;
  padding: 30px;
  height: 100%;
  color: #fff;
  transition: transform 0.3s ease;
  border: none;
}

.kd-step-card:hover {
  transform: translateY(-5px);
}

.kd-step-icon {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.kd-step-card h3 {
  font-weight: 700;
  font-size: var(--fs-32);
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kd-step-card p {
  font-size: var(--fs-18);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.kd-step-card p strong {
  font-weight: 700;
}

/* Section 2: Features Grid */
.kd-features-section {
  padding: 100px 0;
}

.kd-features-image {
  max-width: 100%;
  border-radius: 10px;
  filter: brightness(0.8) contrast(1.2);
}

.kd-feature-item {
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 5px;
}

.kd-feature-box {
  border: 4px solid transparent;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  min-width: 250px;
  min-height: 60px;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-18);
  text-transform: lowercase;
  color: #fff;
}

.kd-features-header {
  margin-bottom: 60px;
  text-align: left;
}

.kd-features-header h2 {
  font-size: var(--fs-36);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.kd-features-header p {
  font-size: var(--fs-45);
  font-weight: 300;
  font-family: var(--font-2);
  color: rgba(255, 255, 255, 1);
}

.kd-feature-box.blue {
  border-color: #5d5dff;
}
.kd-feature-box.orange {
  border-color: #ff9933;
}
.kd-feature-box.pink {
  border-color: #ff3399;
}

.kd-feature-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-16);
  line-height: 1.4;
  max-width: 350px;
}

/* Section 3: Bonus Assignment */
.kd-bonus-section {
 
}
.kd-bonus-section {
  position: relative;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 214, 163, 0.4) 0%,
    rgba(0, 214, 163, 0.1) 40%,
    transparent 70%
  );
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 480px;
}
.kd-bonus-title {
  font-size: var(--fs-36);
  font-weight: 500;
  margin-bottom: 80px;
  text-align: start;
  font-family: var(--font-2);
}

.kd-bonus-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.kd-bonus-amount {
  font-size: var(--fs-45);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.kd-bonus-amount span {
  font-size: var(--fs-18);
  font-weight: 400;
}

.kd-bonus-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  /* Remove invert if we use icons that are already the correct color or style */
}

.kd-bonus-label {
  font-size: var(--fs-18);
  font-weight: 700;
  text-transform: uppercase;
  max-width: 150px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .kd-bonus-card {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .kd-bonus-card {
    gap: 15px;
  }
  .kd-bonus-amount {
    font-size: var(--fs-28);
  }
  .kd-bonus-icon {
    width: 50px;
    height: 50px;
  }
}
