/**
 * Fastcom — Sektörler sayfası
 */
body.page-sektorler .page_title,
body.page-sektorler .entry-header {
  display: none !important;
}

/* HFE başlık bandı — breadcrumb altı açıklama */
body.page-sektorler .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-sectors {
  --fc-sec-radius: 16px;
  margin: 0 0 3rem;
}

.fc-sectors-hero {
  background: linear-gradient(135deg, #0f2433 0%, var(--fc-navy) 50%, #1e3a52 100%);
  color: #fff;
  border-radius: var(--fc-sec-radius);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fc-sectors-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(25, 189, 120, 0.15), transparent 50%);
  pointer-events: none;
}

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

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

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

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

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

.fc-sectors-stat {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fc-sectors-stat:hover {
  border-color: var(--fc-accent);
  box-shadow: 0 8px 24px rgba(27, 48, 65, 0.08);
}

.fc-sectors-stat__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fc-accent);
  line-height: 1.1;
}

.fc-sectors-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #5a6578;
  font-weight: 500;
}

.fc-sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .fc-sector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.fc-sector-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: var(--fc-sec-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fc-sector-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 189, 120, 0.4);
  box-shadow: 0 20px 48px rgba(27, 48, 65, 0.1);
}

.fc-sector-card__media {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.fc-sector-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.fc-sector-card:hover .fc-sector-card__media img {
  transform: scale(1.05);
}

.fc-sector-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 48, 65, 0.75) 100%);
}

.fc-sector-card__title-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.fc-sector-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.fc-sector-card__highlight {
  display: inline-block;
  align-self: flex-start;
  background: rgba(25, 189, 120, 0.12);
  color: #0d7a4d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.fc-sector-card__summary {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

.fc-sector-card__block-title {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fc-navy);
}

.fc-sector-card__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #5a6578;
}

.fc-sector-card__list li {
  margin-bottom: 0.3rem;
}

.fc-sector-card__list--refs {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fc-sector-card__list--refs li {
  margin: 0;
  background: var(--fc-muted);
  border: 1px solid #e8edf4;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  color: var(--fc-navy);
}

.fc-sectors-cta {
  margin-top: 3rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #e8edf4;
  border-radius: var(--fc-sec-radius);
  padding: 2.5rem 2rem;
  text-align: center;
}

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

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

.fc-sectors-cta__btn {
  display: inline-block;
  background: var(--fc-accent);
  color: #fff !important;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fc-sectors-cta__btn:hover {
  background: #15a566;
  transform: translateY(-1px);
  color: #fff;
}

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

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

.fc-sectors-cta__links a:hover {
  color: var(--fc-accent);
}
