:root {
  /* Renk Paleti */
  --primary-color: #66CCCC;
  --primary-dark: #4bb3b3;
  --secondary-color: #2c3e50; /* Koyu Lacivert/Gri */
  --accent-color: #ff6b6b;
  --success-color: #27ae60;
  
  --bg-body: #f0f2f5;
  --bg-card: #ffffff;
  
  --text-main: #222; /* Daha siyah */
  --text-muted: #555; /* Daha koyu gri */
  
  --border-radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--bg-body);
}

/* --- Kapsayıcı --- */
.price-table-wrapper {
  font-family: 'Segoe UI', 'Open Sans', Helvetica, sans-serif;
  margin-top: 80px;
  padding: 0 10px 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Sığmazsa aşağı iner ama masaüstünde inmemesi hedeflendi */
  gap: 15px; /* Kartlar arası boşluk daraltıldı */
  box-sizing: border-box;
  max-width: 1400px; /* Çok geniş ekranlarda dağılmasın */
  margin-left: auto;
  margin-right: auto;
}

/* --- Kart Yapısı (Daraltıldı) --- */
.pricing-table {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  /* Flex-basis ve max-width ile daraltıp yan yana sığdırıyoruz */
  flex: 0 1 215px; 
  min-width: 190px; /* Çok küçülürse bozulmasın */
  max-width: 215px; /* İstenilen darlık */
  
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
}
.pricing-table__list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
    
    /* YENİ EKLENEN: İçerik sığmazsa alt satıra geçsin */
    flex-wrap: wrap; 
}

/* YENİ CSS SINIFI: Bu div'i alt satıra zorlar */
.soru-limit-info {
    width: 100%;
    font-size: 13x;
    color: #666;
    font-weight: 400;
    margin-top: -5px;
    margin-left: 0;
    color: red;
	font-style:italic;
}
.pricing-table:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
  z-index: 2; /* Hover olunca öne çıksın */
}

/* --- Başlık --- */
.pricing-header {
    padding: 20px 10px 0;
    text-align: center;
}


.name-badge-label {
  font-size: 30px; 
  font-weight: 800;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin: 0;
  display: block; /* Bu kural Flex'i ezerdi, aşağıda Flex tekrar tanımlanıyor */
  white-space: nowrap; 
  
  /* --- YATAY ORTALAMA VE FLEX KURALLARI --- */
  
  /* 1. Flex kuralları (Dikey ortalama ve baseline için gerekli) */
  display: flex;
  align-items: center; 
  gap: 5px;
  
  /* 2. YATAY ORTALAMA İÇİN KRİTİK KURALLAR */
  width: fit-content; /* Genişliği sadece içeriği kadar daraltır */
  margin: 0 auto;     /* Soldan ve sağdan otomatik boşluk vererek kapsayıcı içinde ortalar */
  position:relative;
}
.count-badge {
    position: relative;
    font-size: 20px;
    color: red;
    bottom: -20px;
    left: 5px;
}




/* --- Fiyat Alanı (Düzenlendi) --- */
.pricing-price-wrapper {
  height: 70px;
  display: flex;
  align-items: center; /* Taban hizalama (TL simgesi aşağıda durur) */
  justify-content: center;
  color: var(--primary-color);
  margin-top: 20px;
}

.price-value {
  font-size: 40px; /* Büyük rakam */
  font-weight: 800;
  line-height: 1;
}

.price-currency {
  font-size: 30px; /* TL Simgesi belirgin ama rakamdan küçük */
  font-weight: 700;
  margin-left: 4px;
  color: var(--secondary-color); /* Simge biraz daha koyu olabilir veya primary kalabilir */
}

.free-badge {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 800;
  align-self: center; /* Ücretsiz yazısı ortalı kalsın */
}

/* --- Liste Alanı (Özellikler Belirginleşti) --- */
.pricing-table__list {
  padding: 10px 15px 20px; /* Kenar boşlukları daraltıldı */
  margin: 0;
  list-style: none;
  flex-grow: 1;
}

.pricing-table__list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-main); /* Yazı rengi koyulaştı */
  font-size: 13px; /* Yazı büyütüldü */
  font-weight: 600; /* Yazı kalınlaştırıldı */
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.pricing-table__list li:last-child {
  border-bottom: none;
}

/* --- İkonlar (Küçültüldü) --- */
.feature-icon {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain;
    flex-shrink: 0;
    margin-bottom: 0 !important;
}

/* Pasif özellik */
.feature-disabled {
    color: #999 !important;
    text-decoration: line-through;
    font-weight: 400 !important;
}
.feature-disabled .feature-icon {
    opacity: 0.3;
    filter: grayscale(100%);
}

.limit-count {
  color: var(--success-color);
  font-weight: 800;
  background: #e8f8f5;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 1.15em;
}

/* --- Buton --- */
.pricing-footer {
  padding: 15px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.pricing-table__button {
  display: block;
  width: 100%;
  padding: 10px 0;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.pricing-table__button:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

/* IBAN Pop-up Stili */
.iban-modal-content { text-align: center; padding: 5px; }
.iban-box {
    background: #f1f2f6; border: 2px dashed #ccc; border-radius: 8px;
    padding: 12px; margin: 10px 0; font-family: monospace; font-weight: bold; font-size: 14px; color:#333;
}
.iban-actions { display: flex; flex-direction: column; gap: 8px; }

/* Responsive: Mobilde tek sütun */
@media (max-width: 768px) {
  .pricing-table {
    flex: 1 1 100%; /* Mobilde tam genişlik */
    max-width: 320px; 
    margin: 0 auto;
  }
}