/* Fiyat Listesi Özel Stilleri */
.page-hero .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.page-hero .page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  color: var(--secondary-color);
}

.pricing-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pricing-section .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 0;
}

.pricing-section .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 18px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid artık kullanılmıyor, her section ayrı */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .07);
  padding: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background: var(--navy);
}

.pill.purple {
  background: var(--purple)
}

.pill.orange {
  background: var(--orange);
  color: #111827
}

.muted {
  color: var(--muted);
  font-size: 13px
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 26px 2px 12px;
}

.section-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft-blue);
  font-size: 12px;
}

thead th {
  background: rgba(11, 31, 59, .06);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 12px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

tbody td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13px;
  color: #0f172a;
}

tbody tr:last-child td {
  border-bottom: none
}

.price {
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.note {
  background: rgba(109, 40, 217, .06);
  border: 1px solid rgba(109, 40, 217, .16);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 13px;
  color: #1f2937;
}

.note b {
  color: var(--purple)
}

.rule {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(226, 232, 240, .9);
  font-size: 13px;
}

.rule:last-child {
  border-bottom: none
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  margin-top: 6px;
  flex: 0 0 10px;
}

footer {
  margin-top: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 31, 59, 1), rgba(15, 23, 42, 1));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.footer-left strong {
  font-weight: 800
}

.footer-left span {
  opacity: .85;
  font-size: 13px
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.small {
  font-size: 12px;
  opacity: .8
}

/* Responsive Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft-blue);
}

.detailed-pricing-table {
  border: none;
  background: transparent;
  border-radius: 0;
}

.detailed-pricing-table th,
.detailed-pricing-table td {
  white-space: nowrap;
  min-width: 120px;
  padding: 14px 16px;
}

.detailed-pricing-table th:first-child,
.detailed-pricing-table td:first-child {
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 10;
  border-right: 2px solid var(--line);
}

.detailed-pricing-table tbody tr:nth-child(even) td:first-child {
  background: #f8fafc;
  /* Matches zebra striping if used, else just white/bg */
  background: var(--soft-blue);
}

.detailed-pricing-table th {
  background: rgba(11, 31, 59, .08);
}

.btn-detail {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-detail:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.text-success {
  color: #22c55e;
}

.text-muted {
  color: #94a3b8;
}

/* Modal Styles */
.pricing-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.pricing-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-modal.hidden .modal-content {
  transform: scale(0.9);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #0f172a;
}

.modal-header h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.modal-body {
  color: #334155;
  line-height: 1.7;
  font-size: 1rem;
}