/* ============================================================
   INCENTIVE-CALCULATOR.CSS — Kobi Proje Danışmanlık
   ============================================================
   Teşvik Robotu (Yatırım Teşvik Hesaplama Aracı) sayfası
   stilleri: wizard kart, adım göstergesi, form adımları,
   sonuç ekranı, NACE arama, FAQ ve bilgilendirme bölümleri.
   ============================================================ */

/* ============================================================
   1. WIZARD KART BİLEŞENİ
   ============================================================ */
.wizard {
  background: var(--color-bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

@media (max-width: 576px) {
  .wizard {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
  }
}

/* ============================================================
   2. ADIM GÖSTERGESİ (Step Indicator / Progress Bar)
   ============================================================ */
.wizard__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.wizard__step-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  border: 3px solid var(--color-border);
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  transition: all var(--transition-base);
  position: relative;
}

.wizard__step--active .wizard__step-circle {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(26, 42, 94, 0.15);
}

.wizard__step--completed .wizard__step-circle {
  border-color: var(--color-success);
  background: var(--color-success);
  color: #ffffff;
}

.wizard__step-label {
  margin-top: var(--space-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-light);
  text-align: center;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.wizard__step--active .wizard__step-label {
  color: var(--color-primary);
}

.wizard__step--completed .wizard__step-label {
  color: var(--color-success);
}

/* Bağlantı çizgileri */
.wizard__step-connector {
  position: absolute;
  top: 22px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 3px;
  background: var(--color-border);
  z-index: 0;
}

.wizard__step-connector-fill {
  height: 100%;
  width: 0;
  background: var(--color-success);
  transition: width var(--transition-slow);
  border-radius: 2px;
}

.wizard__step--completed .wizard__step-connector .wizard__step-connector-fill {
  width: 100%;
}

.wizard__step:last-child .wizard__step-connector {
  display: none;
}

@media (max-width: 576px) {
  .wizard__step-label {
    display: none;
  }
  .wizard__step-circle {
    width: 36px;
    height: 36px;
    font-size: var(--font-size-sm);
  }
  .wizard__step-connector {
    top: 18px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
  }
}

/* ============================================================
   3. ADIM PANELLERİ (Step Panels)
   ============================================================ */
.wizard__body {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.wizard__panel {
  display: none;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.wizard__panel--active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.wizard__panel--exit-left {
  transform: translateX(-40px);
  opacity: 0;
}

.wizard__panel-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.wizard__panel-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ============================================================
   4. ADIM 1: YATIRIM TÜRÜ SEÇİM KARTLARI
   ============================================================ */
.investment-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.investment-type-card {
  background: var(--color-bg-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.investment-type-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.investment-type-card--selected {
  border-color: var(--color-primary);
  background: rgba(26, 42, 94, 0.04);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.12);
}

.investment-type-card--selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.investment-type-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 42, 94, 0.08), rgba(26, 42, 94, 0.03));
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.investment-type-card--selected .investment-type-card__icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
}

.investment-type-card__icon svg {
  width: 28px;
  height: 28px;
}

.investment-type-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.investment-type-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .investment-types {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .investment-type-card {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ============================================================
   5. ADIM 2: NACE ARAMA VE SEÇİM
   ============================================================ */
.nace-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.nace-search__input-wrap {
  position: relative;
}

.nace-search__input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.nace-search__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.1);
}

.nace-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--color-text-light);
  pointer-events: none;
}

.nace-search__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.nace-search__dropdown.is-open {
  display: block;
}

.nace-search__item {
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: background var(--transition-fast);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.nace-search__item:hover {
  background: var(--color-bg-secondary);
}

.nace-search__item-code {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  min-width: 50px;
}

.nace-search__item-name {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.nace-search__item-priority {
  font-size: var(--font-size-xs);
  color: var(--color-secondary);
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}

.nace-search__no-result {
  padding: var(--space-lg);
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

/* Seçili NACE chip */
.nace-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(26, 42, 94, 0.06);
  border: 1px solid rgba(26, 42, 94, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
}

.nace-chip__code {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
}

.nace-chip__name {
  color: var(--color-text-secondary);
}

.nace-chip__remove {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: rgba(220, 53, 69, 0.1);
  color: var(--color-danger);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border: none;
  transition: background var(--transition-fast);
}

.nace-chip__remove:hover {
  background: var(--color-danger);
  color: #fff;
}

/* Öncelikli yatırım toggle */
.priority-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-md);
}

.priority-toggle__switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.priority-toggle__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.priority-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 13px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.priority-toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.priority-toggle__switch input:checked + .priority-toggle__slider {
  background: var(--color-secondary);
}

.priority-toggle__switch input:checked + .priority-toggle__slider::before {
  transform: translateX(22px);
}

.priority-toggle__label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.priority-toggle__info {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* ============================================================
   6. ADIM 3: YATIRIM DETAYLARI FORMU
   ============================================================ */
.wizard-form {
  max-width: 640px;
  margin: 0 auto;
}

.wizard-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.wizard-form__group {
  margin-bottom: var(--space-md);
}

.wizard-form__label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.wizard-form__select,
.wizard-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.wizard-form__select:focus,
.wizard-form__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.1);
}

.wizard-form__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636e72' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.wizard-form__select.is-error,
.wizard-form__input.is-error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.wizard-form__error {
  display: none;
  font-size: var(--font-size-sm);
  color: var(--color-danger);
  margin-top: var(--space-xs);
}

.wizard-form__error.is-visible {
  display: block;
}

/* Zone badge */
.wizard-form__zone-badge {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(26, 42, 94, 0.06);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.wizard-form__zone-badge.is-visible {
  display: inline-flex;
}

/* OSB toggle */
.osb-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.osb-toggle__label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Maliyet bölümü */
.cost-section {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.cost-section__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.cost-field {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.cost-field__label {
  flex: 1;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  min-width: 0;
}

.cost-field__input {
  width: 200px;
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: right;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.cost-field__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.1);
}

.cost-field__suffix {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  white-space: nowrap;
}

/* Toplam satırı */
.cost-total {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-primary);
}

.cost-total__label {
  flex: 1;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text-primary);
}

.cost-total__value {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
  min-width: 200px;
  text-align: right;
}

@media (max-width: 576px) {
  .wizard-form__row {
    grid-template-columns: 1fr;
  }
  .cost-field {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }
  .cost-field__input {
    width: 100%;
  }
  .cost-total {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cost-total__value {
    min-width: auto;
    text-align: center;
    font-size: var(--font-size-xl);
  }
}

/* ============================================================
   7. ADIM 4: SONUÇ EKRANI
   ============================================================ */
.results {
  text-align: center;
}

.results__zone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(26, 42, 94, 0.06);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
}

.results__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.result-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.result-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.result-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(26, 42, 94, 0.06);
  color: var(--color-primary);
}

.result-card__icon svg {
  width: 22px;
  height: 22px;
}

.result-card__label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.result-card__value {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
}

.result-card__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

.result-card--na .result-card__value {
  color: var(--color-text-light);
}

/* Toplam fayda vurgusu */
.results__total {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: #ffffff;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 600ms ease 400ms, transform 600ms ease 400ms;
}

.results__total.is-visible {
  opacity: 1;
  transform: scale(1);
}

.results__total-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.results__total-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  line-height: 1.1;
}

.results__total-note {
  font-size: var(--font-size-xs);
  opacity: 0.7;
  margin-top: var(--space-sm);
}

/* Girdi özeti */
.results__summary {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.results__summary-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.results__summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
}

.results__summary-item {
  display: flex;
  flex-direction: column;
}

.results__summary-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

.results__summary-value {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Uyarı */
.results__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  padding: var(--space-md);
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* Sonuç CTA */
.results__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.results__reset {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.results__reset:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .results__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .results__total-value {
    font-size: var(--font-size-2xl);
  }
  .results__summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .results__cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   8. İLERİ / GERİ BUTONLARI
   ============================================================ */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.wizard__nav-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.wizard__nav-back:hover {
  color: var(--color-primary);
  background: var(--color-bg-secondary);
}

.wizard__nav-back svg {
  width: 18px;
  height: 18px;
}

.wizard__nav-back.is-hidden {
  visibility: hidden;
}

.wizard__nav-next {
  margin-left: auto;
}

/* ============================================================
   9. HATA MESAJLARI (Wizard genel)
   ============================================================ */
.wizard__error {
  display: none;
  padding: var(--space-sm) var(--space-md);
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-danger);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--space-md);
  text-align: center;
}

.wizard__error.is-visible {
  display: block;
}

/* ============================================================
   10. BİLGİLENDİRME BÖLÜMÜ
   ============================================================ */
.incentive-info {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
}

.incentive-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.incentive-info__step {
  text-align: center;
  position: relative;
}

.incentive-info__step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.incentive-info__step-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.incentive-info__step-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .incentive-info__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ============================================================
   11. YARDIMCI SINIFLAR (Teşvik Robotu sayfasına özel)
   ============================================================ */
.calculator-section {
  background: var(--color-bg-secondary);
}

.incentive-info__header {
  text-align: center;
  display: block;
}

.faq-wrapper {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.modal-submit-btn {
  width: 100%;
}
