
/* STEP 5.0 — Ana sayfa bilgi kartları */
.step5-info-section{
  width:min(92vw,1320px);
  margin:0 auto 42px;
  padding:0 clamp(42px,4vw,72px);
  position:relative;
}
.step5-info-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  flex-wrap:nowrap;
  gap:24px;
  margin-bottom:15px;
}
.step5-info-title{margin:0;color:#fff;font-size:22px;line-height:1.1;font-weight:900;white-space:nowrap;flex:0 0 auto}
.step5-info-title::after{
  content:"";display:block;width:82px;height:3px;margin-top:8px;
  background:var(--orange);border-radius:3px
}
.step5-info-subtitle{margin:0 0 0 auto;color:#dbe7f2;font-size:18.75px;font-weight:700;line-height:1.3;text-align:right;white-space:nowrap;flex:0 1 auto}
.step5-info-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
}
.step5-info-card{
  min-height:138px;
  border:1px solid #ffffff2f;
  border-radius:12px;
  background:linear-gradient(145deg,#0b2b50,#082442);
  padding:8px 8px 8px;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  box-shadow:0 9px 22px #0002;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.step5-info-card:hover{
  transform:translateY(-3px);
  border-color:var(--orange);
  box-shadow:0 14px 28px #0004;
}
.step5-info-icon{
  width:38px;height:38px;border-radius:11px;
  display:grid;place-items:center;
  background:#f47b0018;border:1px solid #f47b0066;
  color:var(--orange);font-size:21px;line-height:1;
  margin-bottom:6px;flex:0 0 auto;
}
.step5-info-card h3{
  margin:0 0 4px;color:var(--orange);font-size:13px;line-height:1.22;font-weight:900
}
.step5-info-card p{
  margin:0;color:#edf5fb;font-size:11px;line-height:1.35
}
.step5-info-card--istanbul{
  min-height:166px;
  transform:scale(1.035);
  transform-origin:center;
  border:2px solid var(--orange);
  background:linear-gradient(145deg,#0d315c,#0b2b50);
  box-shadow:0 14px 32px #0005;
}
.step5-info-card--istanbul:hover{transform:scale(1.055) translateY(-2px)}
.step5-info-card--istanbul .step5-info-icon{width:48px;height:48px;font-size:27px;background:#f47b0028}
.step5-info-card--istanbul h3{font-size:15.5px}
.step5-info-card--istanbul p{font-size:12px}
@media(max-width:1100px){.step5-info-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){
  .step5-info-section{width:100%;padding:0 12px;margin-bottom:28px}
  .step5-info-head{align-items:flex-start;flex-direction:column;flex-wrap:nowrap;margin-bottom:12px}
  .step5-info-subtitle{text-align:left;white-space:normal;margin-left:0}
  .step5-info-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .step5-info-card--istanbul{transform:none}
  .step5-info-card--istanbul:hover{transform:translateY(-2px)}
}
@media(max-width:480px){.step5-info-grid{grid-template-columns:1fr}.step5-info-card{min-height:0}}
