
/* ======================================================
   ÖZELLIK SAYFASI — Feature landing page styles
   ====================================================== */

:root {
  --ozellik-header-offset: calc(env(safe-area-inset-top, 0px) + 4.125rem);
}

html:has(body.ozellik-page) {
  scroll-padding-top: var(--ozellik-header-offset);
}

body.ozellik-page .header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

body.ozellik-page > main {
  padding-top: var(--ozellik-header-offset);
}

@media (max-width: 900px) {
  body.ozellik-page .header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ── Hero ── */
.op-hero {
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 100%);
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.op-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.op-hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.op-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.op-hero__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 1rem;
}

.op-hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.op-hero__desc {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: #475569;
  max-width: 580px;
  margin: 0 auto;
}

.op-hero__btns {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.op-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.45);
}

.op-hero__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.op-hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.op-hero__cta-ghost:hover {
  border-color: rgba(15, 23, 42, 0.3);
}

/* ── Features Section ── */
.op-features {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.op-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.op-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.op-section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1rem;
}

.op-section-desc {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 3rem;
}

.op-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .op-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .op-features__grid {
    grid-template-columns: 1fr;
  }
}

.op-feature-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.op-feature-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 16px -6px rgba(37, 99, 235, 0.1);
}

.op-feature-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
}

.op-feature-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

/* ── Detail Section ── */
.op-detail {
  padding: 5rem 1.5rem;
  background: #f8fafc;
}

.op-detail__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.op-detail__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.op-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.op-detail__item-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.45rem;
}

.op-detail__item-text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

.op-detail__item-text strong {
  color: #0f172a;
  font-weight: 600;
}

/* ── FAQ Section Override ── */
.ozellik-page .faq-section { background: #ffffff; }

/* ── FAQ Alt CTA ── */
.faq-bottom-cta { display: flex; align-items: center; justify-content: space-between; background: #0f172a; border-radius: 12px; padding: 16px 24px; margin: 2rem 0 0; gap: 16px; }
.faq-bottom-cta__content { display: flex; align-items: center; gap: 12px; color: #a5b4fc; font-size: 15px; font-weight: 500; }
.faq-bottom-cta__content span { color: #f1f5f9; }
.faq-bottom-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: #4f46e5; color: #fff; font-size: 14px; font-weight: 600; padding: 10px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background .2s; }
.faq-bottom-cta__btn:hover { background: #4338ca; }

/* ── Support CTA Band ── */
.support-cta-band { padding: 2rem clamp(1rem,4vw,2.5rem) 3rem; box-sizing: border-box; background: #ffffff; }
.support-cta-band__shell { position: relative; max-width: 1112px; margin: 0 auto; border-radius: 18px; overflow: hidden; background: #e8eaf0; display: flex; }
.support-cta-band__bg { position: absolute; inset: 0; background: url('../medya/sorunuzmuvar-bg.png') center/cover no-repeat; opacity: 0.35; z-index: 0; }
.support-cta-band__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(232,234,240,0.88) 0%, rgba(232,234,240,0.55) 45%, rgba(232,234,240,0.15) 100%); z-index: 1; }
.support-cta-band__grid { position: relative; z-index: 2; display: flex; align-items: center; gap: 4rem; width: 100%; padding: clamp(2.5rem,4vw,3.5rem) clamp(2rem,4vw,3.5rem); }
.support-cta-band__left { flex: 0 0 auto; min-width: 280px; }
.support-cta-band__head { display: flex; flex-direction: column; margin: 0 0 1.25rem; }
.support-cta-band__head-line { font-size: clamp(14px,1.1vw,16px); color: #374151; font-weight: 400; }
.support-cta-band__head-strong { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; color: #0f172a; line-height: 1.15; }
.support-cta-band__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.support-cta-band__btn { display: inline-flex; align-items: center; gap: 6px; background: #4f46e5; color: #fff; font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.support-cta-band__btn:hover { background: #4338ca; }
.support-cta-band__phone { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #d1d5db; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; color: #111827; text-decoration: none; transition: border-color .2s; }
.support-cta-band__phone:hover { border-color: #4f46e5; color: #4f46e5; }
.support-cta-band__phone-icon svg { stroke: currentColor; }
.support-cta-band__right { flex: 1; display: flex; align-items: center; align-self: stretch; }
.support-cta-band__copy { font-size: clamp(13px,1vw,15px); color: #1f2937; line-height: 1.7; margin: 0 2rem 0 auto; max-width: 480px; text-align: left; }

/* ── Guide Section ── */
.op-guide {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.op-guide__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.op-guide__block {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
}

.op-guide__block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.op-guide__block-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.op-guide__block-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.op-guide__block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .op-guide__block-body {
    grid-template-columns: 1fr;
  }
}

.op-guide__desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.op-guide__desc p {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.op-guide__desc p strong {
  color: #0f172a;
  font-weight: 600;
}

.op-guide__video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.op-guide__video-wrap video,
.op-guide__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.op-guide__video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.op-guide__video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

.op-guide__video-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

/* ── CTA Banner ── */
.op-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #1e40af 0%, #4f46e5 100%);
  text-align: center;
}

.op-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.op-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 0.875rem;
}

.op-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.op-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}

.op-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.25);
}

/* ── Other Modules ── */
.op-others {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.op-others__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.op-others__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

.op-others__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .op-others__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .op-others__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.op-others__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 10px;
  text-decoration: none;
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.op-others__link:hover {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--color-primary);
}

.op-others__link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.07);
  color: var(--color-primary);
}
