/* İKMAN Kimdir */
.ik-hero {
  background: linear-gradient(135deg, #071018 0%, #0c1a28 42%, #123048 100%);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.ik-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 80% 20%, rgba(14, 165, 233, .16) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 15% 85%, rgba(251, 146, 60, .12) 0%, transparent 60%);
}
.ik-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, .12);
  border: 1px solid rgba(125, 211, 252, .28);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  color: #7dd3fc;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ik-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.ik-hero h1 span {
  background: linear-gradient(90deg, #38bdf8, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ik-hero .lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0;
}
.ik-hero-visual {
  position: relative;
  text-align: center;
}
.ik-hero-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .45));
  animation: ik-float 5s ease-in-out infinite;
}
@keyframes ik-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ik-section {
  padding: 80px 0;
  background: #fff;
}
.ik-section--alt {
  background: #f4f7fb;
}
.ik-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0284c7;
  margin-bottom: 12px;
}
.ik-title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}
.ik-sub {
  color: #64748b;
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.ik-prose {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.85;
}
.ik-prose p { margin-bottom: 1.15rem; }
.ik-prose a {
  color: #0369a1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ik-prose a:hover { color: #0c4a6e; }
.ik-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 18px 20px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  color: #9a3412;
}
.ik-notice i {
  font-size: 1.25rem;
  margin-top: 2px;
  color: #ea580c;
}
.ik-notice p { margin: 0; line-height: 1.55; font-weight: 600; }

.ik-video {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ik-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, .08);
}
.ik-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.ik-video-frame iframe,
.ik-video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.ik-video h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  padding: 16px 18px 8px;
  margin: 0;
  line-height: 1.4;
}
.ik-video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 18px 16px;
  margin-top: auto;
  font-size: .85rem;
  color: #64748b;
}
.ik-video-meta a {
  color: #0284c7;
  font-weight: 600;
  text-decoration: none;
}
.ik-video-meta a:hover { text-decoration: underline; }
.ik-video--soon .ik-video-frame--poster {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
}
.ik-video--soon .ik-video-frame--poster img {
  position: relative;
  inset: auto;
  width: 70%;
  height: auto;
  object-fit: contain;
}

.ik-timeline {
  text-align: center;
  margin-bottom: 40px;
}
.ik-timeline img {
  max-width: min(100%, 570px);
  height: auto;
  border-radius: 12px;
}
.ik-cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #0c1a28, #123048);
  border-radius: 16px;
  color: #e2e8f0;
}
.ik-cta-banner p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 520px;
  line-height: 1.5;
}
.btn-ik-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  transition: filter .2s ease;
}
.btn-ik-primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

@media (max-width: 767.98px) {
  .ik-hero { padding: 72px 0 56px; }
  .ik-section { padding: 56px 0; }
  .ik-cta-banner { padding: 22px; }
}
