/* Sık Sorulan Sorular — yalnız .oe-faq-page kapsamı */

.oe-faq-page {
  --oe-faq-max: 1100px;
  --oe-faq-radius: 16px;
  --oe-faq-navy: #0f172a;
  --oe-faq-muted: #475569;
  --oe-faq-blue: #2563eb;
  --oe-faq-cyan: #13b8c6;
  --oe-faq-orange: #f97316;
  --oe-faq-card: #ffffff;
  --oe-faq-border: rgba(15, 23, 42, 0.1);
  --oe-faq-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);

  max-width: var(--oe-faq-max);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px) clamp(14px, 3vw, 24px) clamp(40px, 5vw, 56px);
  color: var(--oe-faq-navy);
  box-sizing: border-box;
}

.oe-faq-hero {
  border-radius: var(--oe-faq-radius);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3.5vw, 32px);
  margin-bottom: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12) 0%,
    rgba(19, 184, 198, 0.14) 42%,
    rgba(249, 115, 22, 0.08) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: var(--oe-faq-shadow);
}

.oe-faq-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--oe-faq-navy);
}

.oe-faq-hero__lead {
  margin: 0 0 14px;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.6;
  color: var(--oe-faq-muted);
  max-width: 52rem;
}

.oe-faq-hero__badge {
  display: inline-block;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--oe-faq-blue);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.oe-faq-body {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.oe-faq-category {
  background: var(--oe-faq-card);
  border: 1px solid var(--oe-faq-border);
  border-radius: var(--oe-faq-radius);
  padding: clamp(18px, 2.5vw, 24px);
  box-shadow: var(--oe-faq-shadow);
}

.oe-faq-category__title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(37, 99, 235, 0.15);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  font-weight: 700;
  color: var(--oe-faq-navy);
}

.oe-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oe-faq-item {
  border: 1px solid var(--oe-faq-border);
  border-radius: 12px;
  background: #fafbfc;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.oe-faq-item[open] {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.08);
}

.oe-faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  line-height: 1.4;
  color: var(--oe-faq-navy);
  transition: background 0.15s ease, color 0.15s ease;
}

.oe-faq-item__summary::-webkit-details-marker {
  display: none;
}

.oe-faq-item__summary:hover {
  background: rgba(37, 99, 235, 0.05);
}

.oe-faq-item__summary:focus {
  outline: none;
}

.oe-faq-item__summary:focus-visible {
  outline: 2px solid var(--oe-faq-blue);
  outline-offset: 2px;
  border-radius: 10px;
}

.oe-faq-item__question {
  flex: 1 1 auto;
  min-width: 0;
}

.oe-faq-item__chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--oe-faq-blue);
  border-bottom: 2px solid var(--oe-faq-blue);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s ease;
}

.oe-faq-item[open] .oe-faq-item__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.oe-faq-item__answer {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.oe-faq-item__answer p {
  margin: 12px 0 0;
  font-size: clamp(0.9rem, 1.25vw, 0.98rem);
  line-height: 1.65;
  color: var(--oe-faq-muted);
}

.oe-faq-cta {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--oe-faq-radius);
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.04) 0%,
    rgba(37, 99, 235, 0.08) 100%
  );
  border: 1px solid var(--oe-faq-border);
}

.oe-faq-cta__title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--oe-faq-navy);
}

.oe-faq-cta__text {
  margin: 0 0 18px;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  line-height: 1.55;
  color: var(--oe-faq-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.oe-faq-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--oe-faq-blue) 0%, #1d4ed8 55%, var(--oe-faq-orange) 140%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.oe-faq-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  color: #fff;
}

.oe-faq-cta__btn:focus-visible {
  outline: 2px solid var(--oe-faq-orange);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .oe-faq-page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .oe-faq-item__summary {
    padding: 12px 14px;
  }

  .oe-faq-item__answer {
    padding: 0 14px 14px;
  }
}
