/* İç sayfa ek stilleri */
.page-hero {
  padding: 140px 0 70px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: #ffb8b8; filter: blur(80px); opacity: 0.35;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: #b5f1ec; filter: blur(80px); opacity: 0.35;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 14px; color: var(--text-soft); margin-bottom: 18px;
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb span { color: #c5cdd6; }
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800; line-height: 1.15; margin-bottom: 18px;
  max-width: 820px;
}
.page-hero .lead {
  font-size: 18px; color: var(--text-soft);
  max-width: 720px; margin-bottom: 28px;
}
.page-hero .hero-buttons { margin-bottom: 0; }

.content-section { padding: 70px 0; background: white; }
.content-section.alt { background: var(--bg-soft); }
.content-wrap { max-width: 880px; margin: 0 auto; }
.content-wrap h2 {
  font-size: clamp(24px, 3vw, 34px); font-weight: 800;
  margin-bottom: 18px; line-height: 1.25;
}
.content-wrap h3 {
  font-size: 22px; font-weight: 700;
  margin: 28px 0 12px;
}
.content-wrap p { color: var(--text-soft); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.content-wrap ul { margin: 10px 0 22px 8px; }
.content-wrap ul li {
  position: relative; padding: 8px 0 8px 32px; color: var(--text-soft);
}
.content-wrap ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 10px; color: var(--secondary);
  width: 22px; height: 22px; border-radius: 50%;
  background: #e6faf8; display: grid; place-items: center; font-size: 10px;
}

.feature-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin: 30px 0;
}
.feature-list li {
  background: white; padding: 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding-left: 60px !important;
}
.feature-list li::before { left: 22px !important; top: 26px !important; }

.inline-cta {
  background: var(--gradient); color: white;
  padding: 36px 32px; border-radius: var(--radius-lg);
  text-align: center; margin: 40px 0;
}
.inline-cta h3 { color: white; font-size: 24px; margin-bottom: 8px; }
.inline-cta p { color: rgba(255,255,255,0.95); margin-bottom: 20px; }
.inline-cta .btn-white-wa { background: white; }

.related-section { padding: 60px 0; background: var(--bg-blue); }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 30px;
}
.related-card {
  background: white; padding: 22px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  transition: all 0.3s; text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card i {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient); color: white; display: grid; place-items: center;
  font-size: 18px; flex-shrink: 0;
}
.related-card span { font-weight: 600; font-size: 15px; }
