/* Hero Section */
.hero-section {
  padding: 50px 0 80px;
  background: radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}

/* 2-Column Responsive Layout */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
  }
}

/* Left Hero Copy */
.hero-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 991px) {
  .hero-header {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 680px;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--color-accent-badge);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Clean Bullet Points (No default browser dots) */
.hero-bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  list-style: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-main);
  font-weight: 500;
  text-align: left;
}

.bullet-icon {
  color: var(--color-accent);
  font-weight: 700;
}

/* Calculator Card */
.calc-card {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.calc-label-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 8px;
}

.calc-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

/* Controls */
.input-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.input-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.stepper {
  display: flex;
  align-items: center;
  background-color: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.stepper-btn {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.stepper-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stepper-value {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-accent);
}

/* Slider */
.slider-container {
  margin-bottom: 24px;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #253347;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Boxed Grid */
.calc-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.calc-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-box.primary-highlight {
  border-color: rgba(245, 158, 11, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.stat-box-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.stat-box-val {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-box.primary-highlight .stat-box-val {
  color: var(--color-accent);
}

.stat-box-sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.stat-bar-full {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-bar-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.stat-bar-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-accent);
}

.calc-disclaimer {
  margin-top: 18px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-align: center;
}
/* Hero Action Row (Inline) */
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-actions {
    justify-content: center;
  }
}

/* Primary Button */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--color-accent);
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px -4px rgba(245, 158, 11, 0.4);
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: 0 14px 28px -4px rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
}

.btn-hero-primary:active {
  transform: translateY(1px);
}

/* Secondary Link */
.btn-hero-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.btn-hero-link:hover {
  opacity: 1;
  color: var(--color-accent);
}

.arrow-down {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-hero-link:hover .arrow-down {
  transform: translateY(2px);
}


@media (max-width: 580px) {
  .calc-row-2col {
    grid-template-columns: 1fr;
  }
}