/* NG ANALİZ — önyüz içerik alanı (header/footer hariç) */
.main-content a,
.main-content a:hover,
.main-content a:focus,
.content-body a,
.content-body a:hover,
.category-card a,
.tool-list a,
.popular-tools-bar a {
  text-decoration: none !important;
}

/* Arka plan: main-front.css */

.content-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
  color: #fff;
  padding: 40px 0 48px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.content-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.content-hero .container { position: relative; z-index: 1; }
.content-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.content-hero .hero-lead {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 640px;
  line-height: 1.6;
}
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.hero-stat-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 120px;
  transition: transform .2s, background .2s;
}
.hero-stat-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
}
.hero-stat-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-stat-card span { font-size: 0.82rem; opacity: 0.85; }

.content-body { padding: 32px 0 56px; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15,23,42,.06);
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover {
  box-shadow: 0 12px 32px rgba(37,99,235,.12);
  transform: translateY(-3px);
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-card p, .feature-card ul { font-size: 0.88rem; color: #64748b; margin: 0; }
.feature-card ul { padding-left: 18px; }
.feature-card--highlight {
  border-color: #93c5fd;
  background: linear-gradient(145deg, #fff 0%, #eff6ff 100%);
}
.feature-card--highlight a.tool-day-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.tips-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tip-pill {
  background: #fff;
  border: 1px dashed #cbd5e1;
  color: #475569;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  transition: border-color .2s, color .2s;
}
.tip-pill:hover { border-color: #2563eb; color: #2563eb; }

.popular-tools-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  margin-bottom: 20px;
}
.popular-tools-bar strong {
  margin-right: 4px;
  color: #1e293b;
}
.popular-tools-bar a {
  transition: all .2s;
}
.popular-tools-bar a:hover {
  background: #2563eb !important;
  color: #fff !important;
  border-color: #2563eb !important;
  transform: scale(1.02);
}

.home-hero-stats {
  background: linear-gradient(90deg, #fff, #f8fafc);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: none !important;
}

.limit-bar {
  background: linear-gradient(90deg, #dbeafe, #eff6ff) !important;
  border-color: #93c5fd !important;
  border-radius: 12px !important;
  animation: fadeInUp .4s ease;
}

.tools-section { padding: 0; }
.tools-section .container.content-inner {
  max-width: 1280px;
}

.tools-header h1 {
  background: linear-gradient(90deg, #1e293b, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-card {
  border-radius: 14px !important;
  transition: transform .25s, box-shadow .25s;
  animation: fadeInUp .5s ease backwards;
}
.category-card:nth-child(1) { animation-delay: .05s; }
.category-card:nth-child(2) { animation-delay: .1s; }
.category-card:nth-child(3) { animation-delay: .15s; }
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,.1) !important;
}

.faq-section {
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.faq-section h2 { font-size: 1.35rem; margin-bottom: 8px; color: #1e293b; }
.faq-section-lead {
  color: #64748b;
  font-size: .92rem;
  margin: 0 0 20px;
  line-height: 1.5;
}
.faq-section--home .faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .faq-section--home .faq-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
  .faq-section--home .faq-item {
    break-inside: avoid;
  }
}
.faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 14px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.faq-q::after { content: '+'; color: #2563eb; font-size: 1.2rem; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 10px 0 4px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; animation: fadeInUp .3s ease; }

/* Araç sayfası — amaç & SSS (üst üste tam genişlik paneller) */
.tool-guide-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tool-guide-purpose {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tool-guide-block {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.tool-guide-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
  line-height: 1.35;
}
.tool-guide-text {
  color: #475569;
  line-height: 1.75;
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.tool-guide-text:last-child { margin-bottom: 0; }
.tool-guide-list,
.tool-guide-steps {
  margin: 10px 0 0;
  padding-left: 1.35rem;
  color: #475569;
  line-height: 1.75;
  font-size: 0.95rem;
}
.tool-guide-list li,
.tool-guide-steps li {
  margin-bottom: 8px;
}
.tool-guide-list li::marker { color: #2563eb; }
.tool-guide-steps li::marker { color: #ea580c; font-weight: 600; }

.tool-page .tool-faq-section {
  margin-top: 0;
}
.tool-faq-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tool-faq-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
}
.tool-faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tool-faq-line {
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  margin-bottom: 8px;
}
.tool-faq-list .tool-faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 2px 16px;
  margin-bottom: 10px;
}
.tool-faq-list .tool-faq-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
}
.tool-faq-list .tool-faq-item .faq-q {
  padding: 14px 0;
}
.tool-faq-list .tool-faq-item.open {
  background: #fff;
  border-color: #cbd5e1;
}
.tool-faq-list .tool-faq-item .faq-a {
  padding-bottom: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: 0;
  padding-top: 12px;
}

/* Araç üst kart (hero) */
.tool-hero-card {
  border-top: none !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08) !important;
  border: 1px solid #e2e8f0 !important;
  position: relative;
  overflow: hidden;
}
.tool-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, #3b82f6);
}
.tool-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.tool-hero-top h1 {
  margin-bottom: 0 !important;
  flex: 1;
  min-width: 200px;
}
.tool-hero-desc {
  font-size: 0.95rem !important;
  margin: 8px 0 10px !important;
  color: #64748b !important;
}
.tool-hero-cat {
  display: inline-block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 12px;
}
.tool-hero-card .tool-limit-pill {
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border: 1px solid #bfdbfe;
  padding: 8px 16px;
  font-size: 0.84rem;
}
.tool-hero-card .btn-favorite {
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .tool-info-grid {
    grid-template-columns: 1fr;
  }
  .tool-faq-card {
    padding: 20px 16px 14px;
  }
  .tool-info-card-head,
  .tool-info-card-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.recent-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.recent-tools-row a {
  padding: 8px 14px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #334155;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}
.recent-tools-row a:hover { background: #2563eb; color: #fff !important; }

/* Araç / paket / auth sayfaları */
.page-content-wrap { padding: 40px 0 56px; }
.page-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  border: 1px solid #e2e8f0;
}
.tool-page-card, .auth-card, .packages-grid .package-card {
  animation: fadeInUp .45s ease;
}
.tool-page .tool-form.card,
.tool-page .tool-result-placeholder.card,
.tool-page .tool-result-wrap .result-pro {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.tool-page .tool-page-header,
.tool-page .tool-form-card,
.tool-page .tool-result-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  margin-bottom: 20px;
  padding: 24px;
}
.btn-favorite {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-left: 12px;
  transition: all .2s;
}
.btn-favorite.active, .btn-favorite:hover {
  background: #fef2f2;
  border-color: #f87171;
  color: #dc2626;
}
.packages-hero {
  border-radius: 0 !important;
  margin-bottom: 0;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.sitemap-col h3 {
  font-size: 0.95rem;
  color: #1e40af;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #dbeafe;
}
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: 6px; }
.sitemap-col a { font-size: 0.85rem; color: #475569; }
.sitemap-col a:hover { color: #2563eb; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .content-hero { padding: 28px 0 36px; }
  .hero-stats-row { gap: 10px; }
  .hero-stat-card { min-width: calc(50% - 8px); flex: 1; }
  .faq-section { padding: 20px; }
}
