/* ============ PLATFORM IC SAYFASI ============ */

.smp-hero {
  color: white; padding: 50px 0 60px; position: relative; overflow: hidden;
}
.smp-hero::before {
  content:''; position:absolute; top:-30%; right:-15%; width:600px; height:600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius:50%; pointer-events:none;
}
.smp-hero-grid {
  display:grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: center;
  position: relative; z-index: 1;
}
.smp-hero-sol { display:flex; gap: 24px; align-items: center; }
.smp-hero-ikon-buyuk {
  width: 100px; height: 100px; border-radius: 24px;
  background: rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  font-size: 50px; color: white;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}
.smp-hero-overline {
  font-size: 12px; opacity: .8; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 6px; font-weight: 700;
}
.smp-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; color: white;
  line-height: 1.1; margin: 0 0 10px;
}
.smp-hero h1 span { opacity: .85; font-weight: 500; }
.smp-hero p { font-size: 1rem; opacity: .9; max-width:560px; line-height:1.6; margin: 0; }

.smp-hero-sag {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.smp-hero-stat {
  background: rgba(255,255,255,0.12);
  padding: 16px 22px; border-radius: 14px;
  display:flex; justify-content:space-between; align-items:center;
  backdrop-filter: blur(10px);
}
.smp-hero-stat strong {
  font-size: 1.8rem; font-weight: 900; color: white; line-height:1;
}
.smp-hero-stat strong sub { font-size: 11px; opacity: .8; }
.smp-hero-stat span {
  font-size: 11px; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing:1px; font-weight: 700;
}

/* HIZMETLER */
.smp-hizmetler { padding: 50px 0 60px; background: #f8fafc; }

.smp-hizmet-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.smp-hizmet-kart {
  background: white; border-radius: 14px; padding: 22px 24px;
  text-decoration: none; color: inherit;
  border: 2px solid #f3f4f6;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.smp-hizmet-kart:hover {
  transform: translateY(-4px);
  border-color: var(--p-renk);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.smp-hizmet-ust {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom: 14px;
}
.smp-hizmet-ikon {
  width: 50px; height: 50px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
}
.smp-hizmet-rozet {
  background: #d1fae5; color: #065f46;
  padding: 4px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 800;
}
.smp-hizmet-kart h3 {
  font-size: 1.15rem; font-weight: 800; color: #0a1628;
  margin: 0 0 6px;
}
.smp-hizmet-tip { font-size: 12px; color: #6b7280; font-weight: 700; margin-bottom: 10px; }
.smp-hizmet-kart p {
  color: #6b7280; line-height: 1.5; font-size: 13px;
  margin: 0 0 16px; min-height: 36px;
}

.smp-hizmet-alt {
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 14px; border-top: 1px dashed #e5e7eb; margin-top: auto;
}
.smp-hizmet-fiyat-label {
  display: block; font-size: 10px; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .5px; font-weight: 700;
}
.smp-hizmet-fiyat {
  font-size: 1.2rem; font-weight: 900; color: #1B3A6B;
}
.smp-hizmet-btn {
  font-size: 12px; font-weight: 800; color: var(--p-renk);
}

/* DIGER PLATFORMLAR */
.smp-diger { padding: 50px 0; background: white; }
.smp-diger-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.smp-diger-kart {
  background: white; border: 2px solid #f3f4f6; border-radius: 12px;
  padding: 18px 14px; text-align: center;
  text-decoration: none; color: inherit;
  transition: all .25s;
}
.smp-diger-kart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.smp-diger-ikon {
  width: 50px; height: 50px; border-radius: 12px;
  margin: 0 auto 8px;
  display:flex; align-items:center; justify-content:center;
  color: white; font-size: 22px;
}
.smp-diger-ad {
  font-size: 13px; font-weight: 800; color: #0a1628;
}

@media (max-width: 1024px) {
  .smp-hero-grid { grid-template-columns: 1fr; }
  .smp-hero-sag { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .smp-hero-sol { flex-direction: column; align-items: flex-start; }
  .smp-hero-ikon-buyuk { width:70px; height:70px; font-size:36px; }
  .smp-hero-sag { grid-template-columns: 1fr; }
}