:root{
  --tgk-ink:#0b1225;
  --tgk-sub:#475569;

  --tgk-card:rgba(255,255,255,.66);
  --tgk-bd:rgba(255,255,255,.46);
  --tgk-shadow:0 10px 34px rgba(15,23,42,.07);

  --tgk-ac:#2ca5e0;
  --tgk-ac2:#6ed0ff;
  --tgk-ac3:#7c3aed; /* hafif premium mor vuruş */
}

/* WRAP */
.tgk-wrap{
  max-width:980px;
  margin:0 auto;
  padding:clamp(14px,3.6vw,24px) clamp(12px,3.6vw,18px) 64px;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--tgk-ink);
}
.tgk-wrap *,
.tgk-wrap *::before,
.tgk-wrap *::after{ box-sizing:border-box; }

/* HERO — daha kısa/kompakt */
.tgk-hero{
  background:
    radial-gradient(700px 260px at 10% -30%, rgba(255,255,255,.26), transparent 60%),
    radial-gradient(600px 240px at 110% -30%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, rgba(44,165,224,.18), rgba(110,208,255,.14), rgba(124,58,237,.10));
  border:1px solid rgba(255,255,255,.58);
  border-radius:20px;
  box-shadow:0 18px 58px rgba(44,165,224,.12);
  overflow:hidden;
  padding:14px 14px 13px;
  margin:0 0 14px;
  position:relative;
}

.tgk-hero::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(circle at 15% 10%, rgba(124,58,237,.15), transparent 45%);
  pointer-events:none;
}

.tgk-hero-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  position:relative;
  z-index:1;
}

.tgk-hero-badge{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.60);
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  font-size:20px;
  flex-shrink:0;
}

.tgk-title{
  margin:0 0 6px;
  font-size:clamp(18px,2.5vw,26px);
  line-height:1.16;
  font-weight:950;
  letter-spacing:-.3px;
}

.tgk-desc{
  margin:0;
  color:var(--tgk-sub);
  font-size:13.5px;
  line-height:1.55;
  max-width:820px;
}

.tgk-badges{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:9px;
}
.tgk-badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.62);
  color:#334155;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}

/* CARD */
.tgk-card{
  background:var(--tgk-card);
  border:1px solid var(--tgk-bd);
  backdrop-filter:blur(14px) saturate(170%);
  -webkit-backdrop-filter:blur(14px) saturate(170%);
  border-radius:18px;
  box-shadow:var(--tgk-shadow);
  padding:16px;
  margin-bottom:12px;
}

/* H2 premium çizgi */
.tgk-h2{
  margin:0 0 10px;
  font-size:16px;
  font-weight:950;
  color:#0b1225;
  position:relative;
  padding-left:11px;
}
.tgk-h2::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  bottom:4px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--tgk-ac),var(--tgk-ac2));
  opacity:.95;
}

.tgk-h3{
  margin:0 0 4px;
  font-size:14.5px;
  font-weight:850;
  color:#0b1225;
}

.tgk-p{
  margin:0 0 10px;
  color:var(--tgk-sub);
  font-size:14px;
  line-height:1.6;
}

.tgk-note{
  background:rgba(44,165,224,.10);
  border:1px solid rgba(44,165,224,.18);
  border-left:3px solid var(--tgk-ac);
  border-radius:12px;
  padding:10px 12px;
  color:#334155;
  font-size:13px;
  line-height:1.55;
  margin:10px 0;
}

.tgk-callout{
  background:rgba(110,208,255,.14);
  border:1px solid rgba(110,208,255,.22);
  border-radius:12px;
  padding:10px 12px;
  color:#334155;
  font-size:13.5px;
  line-height:1.55;
  margin-top:12px;
}

/* STEPS */
.tgk-steps{ margin-top:6px; }
.tgk-step{
  display:flex;
  gap:10px;
  padding:10px 0;
  border-top:1px solid rgba(148,163,184,.22);
}
.tgk-step:first-child{ border-top:none; padding-top:0; }
.tgk-step-num{
  width:26px; height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  font-size:12px;
  color:#fff;
  background:linear-gradient(135deg,var(--tgk-ac),var(--tgk-ac2));
  box-shadow:0 12px 26px rgba(44,165,224,.18);
  flex-shrink:0;
}
.tgk-step-body{ min-width:0; }

/* COMMAND GRID */
.tgk-cmd-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.tgk-cmd{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.26);
  border-radius:16px;
  padding:12px;
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  position:relative;
  overflow:hidden;
}
.tgk-cmd::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(circle at 12% 0%, rgba(44,165,224,.18), transparent 52%);
  pointer-events:none;
}
.tgk-cmd-top{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.tgk-cmd-title{
  font-weight:850;
  font-size:12.8px;
  color:#0b1225;
  line-height:1.25;
}

/* chips */
.tgk-chip{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.30);
  background:rgba(255,255,255,.70);
  color:#0b1225;
  flex-shrink:0;
}
.tgk-chip-on{
  background:rgba(22,163,74,.10);
  border-color:rgba(22,163,74,.25);
  color:#14532d;
}
.tgk-chip-off{
  background:rgba(220,38,38,.08);
  border-color:rgba(220,38,38,.22);
  color:#7f1d1d;
}
.tgk-chip-help{
  background:rgba(124,58,237,.10);
  border-color:rgba(124,58,237,.22);
  color:#3b0764;
}

/* code line + copy */
.tgk-codeline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 8px;
  border-radius:12px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(148,163,184,.22);
  margin-top:8px;
  position:relative;
  z-index:1;
}

.tgk-codeline code{
  display:block;
  background:#0b1120;
  color:#e5edff;
  border-radius:10px;
  padding:9px 10px;
  font-size:12.8px;
  line-height:1.1;
  overflow-x:auto;
  white-space:nowrap;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  flex:1;
}

.tgk-copy{
  border:none;
  cursor:pointer;
  font-weight:950;
  font-size:12px;
  padding:9px 10px;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(135deg,var(--tgk-ac),var(--tgk-ac2));
  box-shadow:0 12px 26px rgba(44,165,224,.20);
  transition:transform .16s ease, box-shadow .16s ease, filter .16s ease;
  flex-shrink:0;
}
.tgk-copy:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(44,165,224,.26);
}
.tgk-copy:active{ transform:translateY(0px) scale(.99); }
.tgk-copy.is-copied{
  background:linear-gradient(135deg,#16a34a,#4ade80) !important;
  box-shadow:0 16px 34px rgba(22,163,74,.22);
}

/* LIST (nokta yok) */
.tgk-list{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;
}
.tgk-list li{
  list-style:none !important;
  margin:0;
  padding:8px 0;
  border-top:1px solid rgba(148,163,184,.22);
  color:var(--tgk-sub);
  font-size:14px;
  line-height:1.55;
}
.tgk-list li:first-child{ border-top:none; padding-top:0; }

/* CTA GRID (services) */
.tgk-grid{
  list-style:none !important;
  padding:0 !important;
  margin:12px 0 14px !important;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:10px;
}
.tgk-grid li{ list-style:none !important; }

.tgk-item{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:space-between;
  padding:11px 12px;
  border-radius:16px;
  text-decoration:none;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(148,163,184,.28);
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  color:var(--tgk-ink);
}

.tgk-ico{
  width:32px; height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(44,165,224,.18), rgba(110,208,255,.18));
  color:#0b1225;
  flex-shrink:0;
}

.tgk-name{
  flex:1;
  min-width:0;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.tgk-go{
  color:#94a3b8;
  font-size:18px;
  line-height:1;
  flex-shrink:0;
}

.tgk-item:hover{
  transform:translateY(-1px);
  border-color:rgba(44,165,224,.55);
  box-shadow:0 14px 34px rgba(44,165,224,.14);
}
.tgk-item:hover .tgk-go{ color:var(--tgk-ac); }

.tgk-cta-btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--tgk-ac),var(--tgk-ac2));
  color:#fff !important;
  text-decoration:none;
  font-weight:950;
  border-radius:999px;
  padding:12px 18px;
  box-shadow:0 14px 34px rgba(44,165,224,.22);
  transition:transform .18s ease, box-shadow .18s ease;
}
.tgk-cta-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(44,165,224,.26);
}

/* MOBILE */
@media (max-width:900px){
  .tgk-cmd-grid{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .tgk-hero{ padding:12px 12px 11px; border-radius:18px; }
  .tgk-hero-row{ gap:10px; }
  .tgk-hero-badge{ width:38px; height:38px; border-radius:13px; }
  .tgk-desc{ font-size:13px; }
  .tgk-card{ padding:14px; border-radius:16px; }
  .tgk-grid{ grid-template-columns:1fr; }
}

.tgk-link{
  color: var(--tgk-ac);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed rgba(44,165,224,.55);
  transition: .2s ease;
}
.tgk-link:hover{
  color: #0b84b8;
  border-bottom-color: rgba(44,165,224,.95);
}