/**
 * Fastcom — Çözümler (Hizmetler) sayfası
 */
body.page-hizmetler .page_title,
body.page-hizmetler .entry-header {
  display: none !important;
}

/* HFE başlık bandı — breadcrumb altı açıklama */
body.page-hizmetler .fc-page-header-lead {
  margin: 0.85rem 0 0;
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.fc-solutions {
  --fc-sol-radius: 16px;
  margin: 0 0 3rem;
}

.fc-solutions-hero {
  background: linear-gradient(135deg, var(--fc-navy) 0%, #1a3348 55%, #152a3a 100%);
  color: #fff;
  border-radius: var(--fc-sol-radius);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fc-solutions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(25, 189, 120, 0.2), transparent 45%);
  pointer-events: none;
}

.fc-solutions-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.fc-solutions-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fc-solutions-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.fc-solutions-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .fc-solutions-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fc-solutions-stat {
  background: #f4f7fa;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(15, 36, 51, 0.06);
}

.fc-solutions-stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fc-green, #19bd78);
  line-height: 1.2;
}

.fc-solutions-stat__label {
  display: block;
  font-size: 0.85rem;
  color: #5a6578;
  margin-top: 0.25rem;
}

.fc-solutions-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.fc-solutions-filters .fc-filter {
  border: 1px solid rgba(15, 36, 51, 0.12);
  background: #fff;
  color: var(--fc-navy);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.fc-solutions-filters .fc-filter:hover {
  border-color: var(--fc-green, #19bd78);
  color: var(--fc-green, #19bd78);
}

.fc-solutions-filters .fc-filter.is-active {
  background: var(--fc-navy);
  border-color: var(--fc-navy);
  color: #fff;
}

.fc-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fc-solution-card {
  background: #fff;
  border-radius: var(--fc-sol-radius);
  overflow: hidden;
  border: 1px solid rgba(15, 36, 51, 0.08);
  box-shadow: 0 2px 12px rgba(15, 36, 51, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.fc-solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 36, 51, 0.1);
}

.fc-solution-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf2;
}

.fc-solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-solution-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 36, 51, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.fc-solution-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fc-solution-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fc-navy);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.fc-solution-card__summary {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a6578;
  margin: 0 0 1rem;
  flex: 1;
}

.fc-solution-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  margin-top: auto;
}

.fc-solution-card__link a {
  color: var(--fc-green, #19bd78);
  text-decoration: none;
}

.fc-solution-card__link a:hover {
  text-decoration: underline;
}

a.fc-solution-card {
  text-decoration: none;
  color: inherit;
}

.fc-solutions-cta {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f4f7fa 0%, #eef3f7 100%);
  border-radius: var(--fc-sol-radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(15, 36, 51, 0.06);
}

.fc-solutions-cta__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--fc-navy);
  margin: 0 0 0.75rem;
}

.fc-solutions-cta__text {
  color: #5a6578;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.fc-solutions-cta__btn {
  display: inline-block;
  background: var(--fc-green, #19bd78);
  color: #fff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.fc-solutions-cta__btn:hover {
  background: #15a566;
}

.fc-solutions-cta__links {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.fc-solutions-cta__links a {
  color: var(--fc-navy);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.fc-solutions-cta__links a:hover {
  color: var(--fc-green, #19bd78);
}

.fc-solution-card.is-hidden {
  display: none;
}
