/* ─── YASAL SAYFALAR ORTAK STİLLER ─── */

.yasal-hero {
  background: var(--black, #1D1D1F);
  padding: 80px 0 60px;
  color: var(--white, #FFFFFF);
  margin-top: 52px; /* Navigasyon boşluğu */
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .yasal-hero {
    margin-top: 56px;
    padding: 100px 0 80px;
  }
}

.yasal-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.yasal-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.yasal-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.yasal-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white, #FFFFFF);
  margin-top: 0;
}

.yasal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 100px;
  color: var(--black, #1D1D1F);
}

.yasal-content h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 48px 0 20px;
  color: var(--black, #1D1D1F);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-3, #D2D2D7);
}

.yasal-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 32px 0 16px;
  color: var(--black, #1D1D1F);
}

.yasal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-4, #424245);
  margin-bottom: 20px;
}

.yasal-content a {
  color: #2F5BFF;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.yasal-content a:hover {
  color: #1a44db;
}

/* Listeler */
.yasal-content ul,
.yasal-content ol {
  padding-left: 0;
  margin-bottom: 24px;
  list-style-position: inside;
}

.yasal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-4, #424245);
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  list-style-type: none;
}

.yasal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--gray-2, #86868B);
  font-size: 18px;
  line-height: 1;
  top: 4px;
}

.yasal-content li strong {
  color: var(--black, #1D1D1F);
  font-weight: 600;
}

/* Tablolar */
.yasal-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  border: 1px solid var(--gray-3, #D2D2D7);
  border-radius: 12px;
  overflow: hidden;
}

.yasal-content th,
.yasal-content td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-3, #D2D2D7);
}

.yasal-content tr:last-child th,
.yasal-content tr:last-child td {
  border-bottom: none;
}

.yasal-content th {
  font-weight: 600;
  background: var(--gray-1, #F5F5F7);
  color: var(--black, #1D1D1F);
}

.yasal-content td {
  color: var(--gray-4, #424245);
}

@media (max-width: 768px) {
  .yasal-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* KVKK Kartları */
.kvkk-links {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px !important;
}

@media (min-width: 600px) {
  .kvkk-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kvkk-links li {
  padding: 0 !important;
  margin: 0 !important;
}
.kvkk-links li::before {
  display: none !important;
}

.kvkk-link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white, #FFFFFF);
  border: 1px solid var(--gray-3, #D2D2D7);
  border-radius: 16px;
  text-decoration: none !important;
  color: var(--black, #1D1D1F);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.kvkk-link:hover {
  border-color: var(--black, #1D1D1F);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.kvkk-link .material-symbols-outlined {
  font-size: 28px;
  color: var(--black, #1D1D1F);
  flex-shrink: 0;
  background: var(--gray-1, #F5F5F7);
  padding: 10px;
  border-radius: 12px;
}

.kvkk-link > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kvkk-link .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black, #1D1D1F);
  letter-spacing: -0.01em;
}

.kvkk-link .desc {
  font-size: 14px;
  color: var(--gray-4, #6E6E73);
  line-height: 1.5;
}

/* Firma Bilgileri Grid */
.firma-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 600px) {
  .firma-grid {
    grid-template-columns: 1fr;
  }
}

.firma-item {
  padding: 24px;
  background: var(--gray-1, #F5F5F7);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.firma-item-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-2, #86868B);
}

.firma-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black, #1D1D1F);
  line-height: 1.5;
}

