/* FrostNodes landing — Zelect üzerine ek stiller */

.ft-landing-preview-bar {
  position: sticky;
  top: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 8px 16px;
  background: rgba(5, 10, 20, 0.94);
  border-bottom: 1px solid rgba(56, 152, 236, 0.3);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  color: #94a3b8;
}

.ft-landing-preview-bar nav {
  display: flex;
  gap: 14px;
}

.ft-landing-preview-bar a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.ft-landing-preview-bar a:hover {
  text-decoration: underline;
}

/* Promo şeridi gizle — FrostNodes pill zaten var */
.ft-landing-preview-bar + .rt-top-nav .rt-header-top {
  display: none !important;
}

/* Gereksiz template nav karmaşasını sadeleştir */
.rt-pages-dropdown {
  display: none !important;
}

.rt-navbar-v1-menu > .rt-navbar-dropdown:nth-child(n + 5) {
  display: none !important;
}

/* —— Telemetry —— */
.ft-telemetry {
  padding: 80px 0;
  background: #050a14;
  position: relative;
}

.ft-tel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.ft-tel-sub {
  color: #94a3b8;
  font-size: 14px;
  margin: 8px 0 0;
  max-width: 520px;
}

.ft-tel-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.ft-tel-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  animation: ft-pulse 2s ease infinite;
}

@keyframes ft-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ft-tel-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.5);
  overflow: hidden;
}

.ft-tel-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.ft-tel-row:last-child {
  border-bottom: none;
}

.ft-tel-row:hover {
  background: rgba(56, 152, 236, 0.06);
}

.ft-tel-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ft-tel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3898ec, #4353ff);
  flex-shrink: 0;
}

.ft-tel-name {
  font-weight: 600;
  font-size: 14px;
}

.ft-tel-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.ft-tel-loc {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.ft-tel-ms {
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ft-tel-ms span {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-left: 2px;
}

.ft-tel-meta {
  display: flex;
  gap: 20px;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
}

.ft-tel-meta small {
  display: block;
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* —— Packages —— */
.ft-packages {
  padding: 80px 0;
  background: #070d18;
  position: relative;
}

.ft-pkg-head {
  text-align: center;
  margin-bottom: 40px;
}

.ft-pkg-sub {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 10px;
}

.ft-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ft-plan-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.55);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ft-plan-card:hover {
  transform: translateY(-4px);
}

.ft-plan-card--featured {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.2);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(15, 23, 42, 0.6));
}

.ft-plan-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.ft-plan-tag {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ft-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
}

.ft-plan-tagline {
  font-size: 13px;
  color: #94a3b8;
  margin: 4px 0 16px;
}

.ft-plan-traffic {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.ft-plan-traffic-sub {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
}

.ft-plan-desc {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 16px;
  line-height: 1.5;
}

.ft-plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  font-size: 12px;
  color: #cbd5e1;
}

.ft-plan-feats li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-plan-feats li::before {
  content: "✓ ";
  color: #60a5fa;
  font-weight: 700;
}

.ft-plan-btn {
  width: 100%;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .ft-tel-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ft-tel-meta {
    justify-content: flex-start;
    text-align: left;
  }
}
