:root {
  --bg-main: #050505;
  --bg-card: #101010;
  --bg-soft: #181818;
  --accent: #cfa43a;
  --accent-soft: rgba(207, 164, 58, 0.14);
  --accent-2: #f1d48a;
  --text-main: #f2f2f2;
  --text-muted: #b0b0b0;
  --border-soft: rgba(255, 255, 255, 0.14);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.72);
  --shadow-button: 0 10px 28px rgba(207, 164, 58, 0.26);
  --container-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(207, 164, 58, 0.10) 0, transparent 28%),
    linear-gradient(180deg, #1a1a1a 0%, #090909 42%, #030303 100%);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 94%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ========== HEADER ========== */
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.92), transparent);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 14px;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-wrap img {
  width: 168px;
  height: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.logo-text span:first-child {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.logo-text span:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.secure-badge {
  font-size: 11px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.secure-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(207, 164, 58, 0.18);
}

.btn-header {
  font-size: 13px;
  padding: 8px 17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 0 0, rgba(207, 164, 58, 0.10), transparent),
    rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: 0.2s ease;
  color: var(--text-main);
}

.btn-header:hover {
  border-color: rgba(207, 164, 58, 0.55);
  transform: translateY(-1px);
}

.btn-header-primary {
  border: 1px solid rgba(207, 164, 58, 0.45);
  background: linear-gradient(135deg, #d6ad49, #b78b25);
  box-shadow: var(--shadow-button);
  color: #0b0b0b;
  font-weight: 700;
}

.btn-header-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px) scale(1.01);
}

/* ========== HERO ========== */
.hero {
  padding: 28px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.hero-left {
  background:
    radial-gradient(circle at top left, rgba(207, 164, 58, 0.10), transparent 52%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 58%),
    var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-pill {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-pill span.tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(207, 164, 58, 0.16);
  color: #f3d99a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #d6ad49, #f1d48a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.hero-badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #d6ad49, #b78b25);
  color: #0a0a0a;
  box-shadow: var(--shadow-button);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.btn-main:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 38px rgba(207, 164, 58, 0.34);
}

.btn-main:hover::after {
  opacity: 1;
}

.btn-secondary {
  padding: 11px 16px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(207, 164, 58, 0.55);
  color: #f1f1f1;
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta strong {
  color: #ededed;
  font-weight: 600;
}

.hero-note {
  font-size: 11px;
  color: var(--text-muted);
}

/* HERO SAĞ TARAF */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  background: rgba(18, 18, 18, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 14px 14px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.link-list {
  display: grid;
  gap: 8px;
  font-size: 12px;
}

.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 0 0, rgba(207, 164, 58, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: 0.18s ease;
}

.link-item:hover {
  transform: translateY(-1px);
  border-color: rgba(207, 164, 58, 0.45);
}

.link-item strong {
  font-size: 12px;
}

.link-pill {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
}

.mini-text {
  font-size: 11px;
  color: #9b9b9b;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.badge {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.badge-primary {
  border-color: rgba(207, 164, 58, 0.5);
  background: rgba(207, 164, 58, 0.14);
  color: #f3d99a;
}

.progress-line {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 6px;
}

.progress-line span {
  position: absolute;
  inset: 0;
  width: 84%;
  background: linear-gradient(90deg, #cfa43a, #f1d48a);
  box-shadow: 0 0 18px rgba(207, 164, 58, 0.45);
}

/* ========== ANA İÇERİK ========== */
main {
  padding: 4px 0 32px;
}

.section {
  margin-top: 24px;
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  background: rgba(16, 16, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.58);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.section-title {
  font-size: 17px;
  font-weight: 600;
}

.section-title span {
  color: var(--accent);
}

.section-kicker {
  font-size: 12px;
  color: var(--text-muted);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-box {
  padding: 11px 10px;
  border-radius: 12px;
  background:
    radial-gradient(circle at top, rgba(207, 164, 58, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.info-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}

.info-text {
  font-size: 12px;
  color: var(--text-muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.list {
  margin-left: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.list li {
  margin-bottom: 4px;
}

.highlight-box {
  padding: 10px 12px;
  border-radius: 12px;
  background:
    radial-gradient(circle at top, rgba(207, 164, 58, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(207, 164, 58, 0.35);
  font-size: 12px;
  color: var(--text-muted);
}

.section p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* ========== FAQ ========== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
}

.faq-q {
  font-weight: 600;
  margin-bottom: 4px;
}

.faq-a {
  color: var(--text-muted);
}

/* ========== ALT BİLGİ & FOOTER ========== */
.foot-meta {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

footer {
  margin-top: 20px;
  padding: 12px 0 18px;
  font-size: 11px;
  color: #7d7d7d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .logo-wrap {
    align-items: center;
  }

  .logo-wrap img {
    width: 150px;
  }

  .logo-text span:first-child {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .logo-text span:last-child {
    font-size: 11px;
  }

  .header-cta {
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .secure-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn-header,
  .btn-header-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 11px 16px;
  }

  .hero-left {
    padding: 16px 14px 14px;
  }

  .hero-title {
    font-size: 21px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 14px 11px 12px;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: 94%;
  }
}