/* ===== FEATURES INTRO ===== */
.feat-intro {
  padding: 80px 0 30px;
}

/* Alttaki feat-cards-wrap ile aynı genişlik ve padding */
.feat-intro-inner {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Eşit genişlik — her iki taraf flex:1 */
.feat-intro-left {
  flex: 1;
  min-width: 0;
}

.feat-intro-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.feat-graph {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.feat-intro h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.feat-intro .sub {
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  max-width: 627px;
  line-height: 1.35;
  letter-spacing: -1.08px;
  margin-bottom: 24px;
}

/* ===== FEATURE CARDS ===== */
.feat-cards {
  padding: 0 0 60px;
}

.feat-cards-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 84px;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fc {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

/* --- BÜYÜK KART --- */
.fc-lg {
  grid-column: 1 / span 2;
  display: flex;
  align-items: stretch;
}

.fc-lg .fc-img {
  width: 50%; /* 608px yerine %50 verdik, böylece ekranla beraber esneyecek */
  background: #FFFFFF;
  flex-shrink: 0;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.fc-lg .fc-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.fc-lg .fc-body {
  width: 100%; /* Metin alanına da %50 verdik, denge sağlandı */
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box; /* Padding'in %50'yi taşırmasını önlemek için eklendi */
}

.fc-lg .fc-body > img {
  max-width: 100%;
  height: auto;
  margin-top: 12px;
  align-self: flex-start;
}

/* --- KÜÇÜK KARTLAR --- */
.fc:not(.fc-lg) {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fc:not(.fc-lg) .fc-img {
  overflow: hidden;
  height: 260px;
  padding: 32px 32px 0 32px;
  background: var(--white);
}

.fc:not(.fc-lg) .fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* --- ORTAK METİN ALANLARI --- */
.fc-body {
  padding: 28px 32px 36px;
}

.fc-body h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.fc-body p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: -0.63px;
}

/* === FEATURE CARDS MOBİL UYUMU (Sündürmeyi Önleyen Kısım) === */
