/* Kit Consulting specific styles */

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

/* Circular Hero Section */
.kc-hero-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.kc-circle-hero {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 4px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(135deg, #fff 0%, #00d6a3 50%, #004d3b 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(0, 214, 163, 0.3);
}

.kc-circle-hero h2 {
  font-size: var(--fs-45);
  font-weight: 300;
  line-height: 1.2;
  max-width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(0, 214, 163, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: var(--font-2);
}

.kc-circle-hero h2 span {
  font-weight: 500;
  color: inherit; /* Allow the gradient to apply */
}

/* Highlights Section (Glassmorphism) */
.kc-highlights-section {
  padding: 60px 0;
}

.kc-highlight-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;
}

.kc-highlight-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.kc-highlight-card h3 {
  font-size: var(--fs-30);
  font-weight: 500;
  margin: 0;
  color: #fff;
}

/* Features Grid (similar to KD but adapted) */
.kc-features-section {
  padding: 100px 0;
}

.kc-feature-item {
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.kc-feature-box {
  border: 4px solid transparent;
  border-radius: 50px;
  border-bottom-left-radius: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: fit-content;
  min-height: 44px;
  text-align: center;
  font-weight: 500;
  font-size: var(--fs-18);
  color: #fff;
  background: transparent;
  font-family: var(--font-2);
}

.kc-feature-box.pink {
  border-color: #ff3399;
  box-shadow: 0 0 15px rgba(255, 51, 153, 0.4);
}
.kc-feature-box.purple {
  border-color: #5d5dff;
  box-shadow: 0 0 15px rgba(93, 93, 255, 0.4);
}
.kc-feature-box.orange {
  border-color: #ff9933;
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.4);
}

.kc-feature-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-16);
  line-height: 1.5;
  margin: 0;
}

/* Bonus Calculator Section */
.kc-calculator-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;
}

.kc-calculator-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Custom Range Input */
#range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  margin: 40px 0 20px 0;
}

#range:focus {
  outline: none;
}

/* Track styles */
#range::-webkit-slider-runnable-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  background: rgba(0, 214, 163, 0.2);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 214, 163, 0.4);
}

/* Thumb styles */
#range::-webkit-slider-thumb {
  height: 47px;
  width: 47px;
  border-radius: 50%;
  background: #00d6a3;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -18px; /* Centers 47px thumb on 12px track: (12/2) - (47/2) = 6 - 23.5 = -17.5 */
  box-shadow: 0 0 25px rgba(0, 214, 163, 0.8);
  border: none;
}

/* Labels positioning */
.kc-slider-labels {
  position: relative;
  height: 30px;
  width: 100%;
  margin-bottom: 60px;
}

.kc-slider-labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.kc-slider-labels span:nth-child(1) { left: 0%; }
.kc-slider-labels span:nth-child(2) { left: 4%; }
.kc-slider-labels span:nth-child(3) { left: 20%; }
.kc-slider-labels span:nth-child(4) { left: 40%; }
.kc-slider-labels span:nth-child(5) { left: 100%; }

/* Result Boxes */
.kc-result-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-top: 40px;
}

.kc-result-box {
  min-width: 280px;
  padding: 35px 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-2);
  transition: all 0.3s ease;
}

.kc-result-box.outline {
  border: 2px solid #00d6a3;
  background: rgba(0, 214, 163, 0.05);
  color: #fff;
}

.kc-result-box.solid {
  background: #00d6a3;
  color: #000;
  box-shadow: 0 0 30px rgba(0, 214, 163, 0.4);
}

.kc-result-box span {
  font-size: 48px;
  font-weight: 600;
  margin-right: 15px;
}

.kc-result-box p {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .kc-circle-hero {
    width: 300px;
    height: 300px;
  }
  .kc-circle-hero h2 {
    font-size: var(--fs-28);
    max-width: 200px;
  }
  .kc-calc-results {
    flex-direction: column;
    align-items: center;
  }
  .kc-result-container {
    flex-direction: column;
    align-items: center;
  }
  .kc-result-box{
    padding: 10px;
  }
}
