/* İnci Lostra — Gizlilik Sözleşmesi (sayfa özel) */
.gp-page {
  --gp-purple: #7444FD;
  --gp-purple-2: #8e55ff;
  --gp-ink: #1a1333;
  --gp-muted: #6b6680;
  --gp-line: rgba(26, 19, 51, 0.08);
  --gp-soft: #f4f0ff;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(116, 68, 253, 0.08), transparent 40%),
    radial-gradient(ellipse at 90% 20%, rgba(142, 85, 255, 0.06), transparent 35%),
    #faf9ff;
  overflow-x: clip;
}

.gp-page html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

.gp-hero {
  position: relative;
  padding: 42px 20px 36px;
  overflow: hidden;
}

.gp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(116, 68, 253, 0.12), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(142, 85, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #efe9ff 0%, rgba(250, 249, 255, 0) 100%);
  pointer-events: none;
}

.gp-hero__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(116, 68, 253, 0.14);
  color: var(--gp-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.gp-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--gp-ink);
  line-height: 1.1;
}

.gp-hero__lead {
  margin: 0 auto 18px;
  max-width: 62ch;
  color: var(--gp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  align-items: center;
  color: var(--gp-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.gp-hero__meta i {
  color: var(--gp-purple);
  margin-right: 6px;
}

.gp-crumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.gp-crumb a {
  color: var(--gp-purple);
  text-decoration: none;
  font-weight: 700;
}

.gp-crumb a:hover {
  text-decoration: underline;
}

.gp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.gp-hero__pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--gp-line);
  color: var(--gp-ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(26, 19, 51, 0.04);
}

.gp-hero__pills i {
  color: var(--gp-purple);
}

.gp-main {
  padding: 8px 16px 72px;
}

.gp-shell {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.gp-toc {
  position: sticky;
  top: 96px;
}

.gp-toc__card {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 22px;
  padding: 18px 14px;
  box-shadow: 0 12px 32px rgba(26, 19, 51, 0.05);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.gp-toc__card h2 {
  margin: 0 0 12px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gp-muted);
}

.gp-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gp-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #3b3550;
  font-size: 13px;
  font-weight: 650;
  border-left: 3px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}

.gp-toc a span {
  width: 22px;
  color: #9a94ad;
  font-size: 11px;
  font-weight: 800;
}

.gp-toc a:hover,
.gp-toc a.is-active {
  background: var(--gp-soft);
  color: var(--gp-purple);
  border-left-color: var(--gp-purple);
}

.gp-toc a.is-active span,
.gp-toc a:hover span {
  color: var(--gp-purple);
}

.gp-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.gp-toc-mobile {
  display: none;
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 16px;
  padding: 4px 14px;
  box-shadow: 0 8px 24px rgba(26, 19, 51, 0.05);
}

.gp-toc-mobile summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-weight: 800;
  color: var(--gp-ink);
}

.gp-toc-mobile summary::-webkit-details-marker {
  display: none;
}

.gp-toc-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
}

.gp-toc-mobile a {
  text-decoration: none;
  color: #3b3550;
  font-weight: 650;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
}

.gp-toc-mobile a:hover,
.gp-toc-mobile a.is-active {
  background: var(--gp-soft);
  color: var(--gp-purple);
}

.gp-card {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 12px 32px rgba(26, 19, 51, 0.04);
  scroll-margin-top: 110px;
}

.gp-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.gp-card__head h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--gp-ink);
}

.gp-card__intro {
  margin: 8px 0 0;
  color: var(--gp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gp-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gp-soft);
  color: var(--gp-purple);
  font-size: 16px;
}

.gp-card p {
  margin: 0 0 12px;
  color: #3b3550;
  font-size: 15px;
  line-height: 1.75;
}

.gp-card ul {
  margin: 0 0 14px;
  padding-left: 1.15rem;
  color: #3b3550;
}

.gp-card li {
  margin-bottom: 7px;
  line-height: 1.55;
  font-size: 15px;
}

.gp-checks {
  list-style: none !important;
  padding: 0 !important;
  margin: 8px 0 0 !important;
  display: grid;
  gap: 8px;
}

.gp-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 11px 14px;
  border-radius: 14px;
  background: #faf9ff;
  border: 1px solid var(--gp-line);
  font-weight: 650;
  font-size: 14px;
  color: var(--gp-ink);
}

.gp-checks i {
  color: var(--gp-purple);
}

.gp-contact {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #faf9ff;
  border: 1px solid var(--gp-line);
}

.gp-contact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gp-ink);
}

.gp-contact p {
  margin: 0 0 6px;
}

.gp-contact a {
  color: var(--gp-purple);
  font-weight: 700;
  text-decoration: none;
}

.gp-contact a:hover {
  text-decoration: underline;
}

.gp-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 26px 28px;
  border-radius: 22px;
  background: linear-gradient(120deg, #7444FD, #8e55ff 55%, #a57bff);
  color: #fff;
  box-shadow: 0 18px 40px rgba(116, 68, 253, 0.28);
}

.gp-cta h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
}

.gp-cta p {
  margin: 0;
  opacity: .92;
  font-size: 14px;
  line-height: 1.55;
  max-width: 48ch;
}

.gp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s, background .15s;
}

.gp-btn:hover {
  transform: translateY(-1px);
}

.gp-btn--primary {
  background: #fff;
  color: var(--gp-purple) !important;
}

.gp-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 991px) {
  .gp-shell {
    grid-template-columns: 1fr;
  }

  .gp-toc {
    display: none;
  }

  .gp-toc-mobile {
    display: block;
  }

  .gp-hero {
    padding: 28px 16px 24px;
  }

  .gp-card {
    padding: 20px 18px;
    border-radius: 18px;
    scroll-margin-top: 88px;
  }

  .gp-cta {
    padding: 22px 18px;
  }

  .gp-cta__actions {
    width: 100%;
  }

  .gp-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .gp-hero h1 {
    font-size: 2rem;
  }

  .gp-hero__lead {
    font-size: 14px;
  }

  .gp-main {
    padding-bottom: 56px;
  }
}

/* Ortak hukuki sayfa yardımcıları */
.gp-dl {
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}

.gp-dl div {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #faf9ff;
  border: 1px solid var(--gp-line);
}

.gp-dl dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gp-muted);
}

.gp-dl dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  color: var(--gp-ink);
  line-height: 1.5;
  word-break: break-word;
}

.gp-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid rgba(181, 71, 8, 0.18);
  color: #8a4b0f;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.gp-form-box {
  margin-top: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #faf9ff;
  border: 1px dashed rgba(116, 68, 253, 0.28);
}

.gp-form-box h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gp-ink);
}

.gp-form-box h4 {
  margin: 16px 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gp-purple);
}

.gp-form-line {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px dotted rgba(26, 19, 51, 0.18);
  font-size: 14px;
  color: #3b3550;
  line-height: 1.5;
}

.gp-form-line strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gp-ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.gp-card a:not(.gp-btn) {
  color: var(--gp-purple);
  font-weight: 700;
  text-decoration: none;
}

.gp-card a:not(.gp-btn):hover {
  text-decoration: underline;
}

/* Özet bilgi kartları */
.gp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.gp-stat {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 10px 28px rgba(26, 19, 51, 0.04);
}

.gp-stat__ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gp-soft);
  color: var(--gp-purple);
  margin-bottom: 12px;
}

.gp-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--gp-ink);
}

.gp-stat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gp-muted);
}

/* Timeline */
.gp-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 4px;
}

.gp-timeline--return {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gp-step {
  position: relative;
  background: #faf9ff;
  border: 1px solid var(--gp-line);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
}

.gp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gp-purple);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.gp-step strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gp-ink);
  margin-bottom: 4px;
}

.gp-step span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--gp-muted);
}

@media (max-width: 991px) {
  .gp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-timeline,
  .gp-timeline--return {
    grid-template-columns: 1fr;
  }

  .gp-step {
    text-align: left;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 4px 12px;
    align-items: start;
  }

  .gp-step__num {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .gp-stats {
    grid-template-columns: 1fr;
  }
}
