/* ═══════════════════════════════════════════════════════════
   SOSYALBOOST — css/free-tools.css
   Ucretsiz Araclar Sayfasi Stilleri
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────── */
.ft-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 60%, #1a0808 100%);
  padding: 70px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ft-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,107,0,.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(255,107,0,.10) 0%, transparent 45%);
  pointer-events: none;
}
.ft-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ft-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.15);
  border: 1.5px solid rgba(34,197,94,.3);
  color: #4ade80;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.ft-hero h1 {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ft-hero h1 span { color: var(--or); }
.ft-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  margin-inline: auto;
}

/* Stats */
.ft-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r2);
  padding: 16px 24px;
  margin-bottom: 28px;
  width: fit-content;
  margin-inline: auto;
}
.ft-stat { text-align: center; padding: 0 24px; }
.ft-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--or);
}
.ft-stat span { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; }
.ft-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* Nasil Calisir Adimlari */
.ft-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ft-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}
.ft-step-no {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-step-arrow { color: rgba(255,255,255,.25); font-size: 14px; }

/* ── Platform Filtresi ───────────────────────────────────── */
.ft-filter-bar {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.ft-filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.ftf-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tx2);
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  text-decoration: none;
  white-space: nowrap;
  transition: all .15s;
}
.ftf-btn:hover { border-color: var(--or); color: var(--or); background: var(--or-pale); }
.ftf-btn.active { background: var(--or); color: #fff; border-color: var(--or); }

/* ── Arac Kartlari Grid ──────────────────────────────────── */
.ft-section { padding: 50px 0 0; }
.ft-grid-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

.ft-card {
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.ft-card:hover {
  border-color: var(--or);
  box-shadow: var(--sh);
  transform: translateY(-3px);
}

/* Kart Baslik */
.ft-card-head {
  padding: 20px 22px 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.98));
  border-bottom: 1.5px solid var(--border2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
.ft-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--tc, var(--or));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.ft-card-head h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--tx);
  line-height: 1.3;
  margin-bottom: 4px;
}
.ft-card-limit {
  font-size: 11px;
  font-weight: 700;
  color: var(--tx2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ft-card-limit i { color: var(--tc, var(--or)); }
.ft-card-free-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #22C55E;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
}

.ft-card-desc {
  padding: 14px 22px;
  font-size: 13px;
  color: var(--tx2);
  line-height: 1.65;
  flex: 1;
}

/* Form */
.ft-card-form {
  padding: 0 22px 14px;
  display: flex;
  gap: 8px;
}
.ft-input-wrap {
  flex: 1;
  position: relative;
}
.ft-input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
}
.ft-input-wrap input {
  width: 100%;
  padding: 11px 12px 11px 36px;
  border: 1.5px solid var(--border2);
  border-radius: 11px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--tx);
  outline: none;
  transition: border-color .15s;
  background: var(--bg);
}
.ft-input-wrap input:focus {
  border-color: var(--tc, var(--or));
  background: #fff;
}
.ft-btn {
  padding: 11px 18px;
  background: var(--tc, var(--or));
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all .15s;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
}
.ft-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.ft-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* Guven Notlari */
.ft-trust {
  padding: 10px 22px 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ft-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--tx3);
}
.ft-trust i { color: var(--green); }

/* Sonuc Alani */
.ft-result {
  padding: 0 22px;
  min-height: 0;
}
.ft-result:not(:empty) { padding-bottom: 14px; }

.ft-progress {
  height: 6px;
  background: var(--bg2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.ft-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or2));
  border-radius: 6px;
  width: 0;
  transition: width .4s ease;
}
.ft-progress-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--tx2);
  animation: pulse2 1.5s ease infinite;
}
@keyframes pulse2 { 0%,100%{opacity:.6} 50%{opacity:1} }

.ft-result-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: 12px;
  margin-bottom: 8px;
}
.ft-result-icon {
  font-size: 22px;
  color: #22C55E;
  flex-shrink: 0;
  margin-top: 1px;
}
.ft-result-title { font-size: 14px; font-weight: 800; color: #166534; margin-bottom: 3px; }
.ft-result-sub { font-size: 12px; color: #15803d; line-height: 1.6; }

.ft-result-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #DC2626;
}
.ft-result-note {
  font-size: 11px;
  color: var(--tx2);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 6px 12px 10px;
}
.ft-result-note i { color: var(--blue); margin-top: 1px; flex-shrink: 0; }
.ft-result-note a { color: var(--or); font-weight: 700; }

/* ── Upgrade Banner ──────────────────────────────────────── */
.ft-upgrade-banner {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  margin: 0;
}
.ft-upgrade-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 50px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ft-upgrade-inner h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.ft-upgrade-inner p { font-size: 14px; color: rgba(255,255,255,.6); max-width: 460px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .ft-hero h1 { font-size: 32px; }
  .ft-grid-wrap { grid-template-columns: 1fr; }
  .ft-stats { flex-direction: column; gap: 10px; }
  .ft-stat-sep { width: 60%; height: 1px; }
  .ft-upgrade-inner { flex-direction: column; text-align: center; }
  .ft-steps { gap: 8px; }
  .ft-step-arrow { display: none; }
}
