.faq-page {
  --faq-border: rgba(15, 23, 42, 0.1);
  --faq-border-strong: rgba(15, 23, 42, 0.16);
  --faq-muted: #5f6d7e;
  --faq-text: #0f1724;
  --faq-surface: #f6f8fb;
  --faq-surface-strong: #f1f4f8;
  --faq-accent-soft: rgba(0, 114, 206, 0.1);
  --faq-shadow: 0 24px 52px rgba(15, 23, 42, 0.06);
  --faq-shadow-hover: 0 28px 60px rgba(15, 23, 42, 0.1);
  padding-top: 72px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 40%, #fff 100%);
}

.faq-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  aspect-ratio: 3 / 1;
  display: flex;
  align-items: center;
  padding: 88px 56px 78px;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.faq-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 12, 18, 0.88) 0%, rgba(8, 12, 18, 0.62) 40%, rgba(8, 12, 18, 0.22) 72%, rgba(8, 12, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.06) 0%, rgba(10, 10, 10, 0.2) 100%);
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 64ch);
  max-width: 64ch;
  margin: 0;
}

.faq-hero h1 {
  margin: 16px 0 22px;
  font-family: 'Inter', sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.faq-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.86;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.faq-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  z-index: 1;
}

.faq-overview {
  padding: 48px 56px 18px;
  background: transparent;
}

.faq-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.faq-overview-card {
  position: relative;
  padding: 34px 34px 30px;
  border: 1px solid var(--faq-border);
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: var(--faq-shadow);
  overflow: hidden;
}

.faq-overview-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 114, 206, 0.42), rgba(15, 23, 42, 0.12), transparent);
}

.faq-overview-card--advisory {
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
}

.faq-overview-head {
  max-width: 56ch;
}

.faq-kicker {
  margin-bottom: 14px;
  color: #0072CE;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-overview-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--faq-text);
}

.faq-overview-copy {
  margin: 14px 0 0;
  color: var(--faq-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-overview-links,
.faq-guidance-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-overview-link,
.faq-guidance-link {
  position: relative;
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.faq-overview-link {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-overview-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-overview-link-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #253244;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-overview-link-copy {
  display: grid;
  gap: 6px;
}

.faq-overview-link-copy strong,
.faq-guidance-link strong {
  color: var(--faq-text);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.faq-overview-link-copy span:not(.tr-text):not(.en-text) {
  display: none;
}

.faq-overview-link-copy .tr-text:last-child,
.faq-overview-link-copy .en-text:last-child,
.faq-guidance-link > .tr-text:last-child,
.faq-guidance-link > .en-text:last-child {
  color: var(--faq-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-overview-link:hover,
.faq-overview-link:focus-visible {
  transform: translateX(6px);
  outline: none;
}

.faq-overview-link:hover .faq-overview-link-index,
.faq-overview-link:focus-visible .faq-overview-link-index {
  border-color: rgba(0, 114, 206, 0.28);
  color: #0072CE;
  background: #f7fbff;
}

.faq-guidance-link {
  padding: 20px 22px;
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.faq-guidance-label {
  color: #0072CE;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-guidance-link:hover,
.faq-guidance-link:focus-visible {
  border-color: rgba(0, 114, 206, 0.24);
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.faq-section {
  position: relative;
  padding: 40px 56px;
  background: transparent;
}

.faq-section::after {
  content: '';
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

.faq-section#genel::before {
  content: '';
  position: absolute;
  left: 56px;
  right: 56px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

.faq-section .faq-shell {
  max-width: 980px;
}

.faq-section-intro {
  position: relative;
  max-width: 760px;
  margin-bottom: 16px;
  padding: 0 0 0 22px;
}

.faq-section-intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 114, 206, 0.68), rgba(15, 23, 42, 0.08));
}

.faq-section-overline {
  margin: 0 0 10px;
  color: #0072CE;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-section-intro h2 {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--faq-text);
}

.faq-section-intro p:last-child,
.faq-answer p,
.faq-answer li {
  color: var(--faq-muted);
  font-size: 0.95rem;
  line-height: 1.82;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: none;
  padding-left: 0;
}

.faq-item {
  border: 1px solid var(--faq-border);
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.26s ease,
    background-color 0.26s ease;
  scroll-margin-top: 108px;
}

.faq-item:hover {
  border-color: rgba(0, 114, 206, 0.18);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: rgba(0, 114, 206, 0.28);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.1);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px 22px 26px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question-copy {
  flex: 1;
  color: var(--faq-text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.faq-toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #0072CE;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item:hover .faq-question-copy,
.faq-item summary:focus-visible .faq-question-copy,
.faq-item[open] .faq-question-copy {
  color: #0c2643;
}

.faq-item:hover .faq-toggle-icon,
.faq-item summary:focus-visible .faq-toggle-icon {
  border-color: rgba(0, 114, 206, 0.2);
  background: #f7fbff;
}

.faq-item[open] .faq-toggle-icon {
  border-color: rgba(0, 114, 206, 0.24);
  background: rgba(0, 114, 206, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.faq-item[open] .faq-toggle-icon::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 26px 26px;
}

.faq-item[open] .faq-answer {
  display: block;
}

.faq-answer p:first-child,
.faq-answer ul:first-child {
  margin-top: 2px;
}

.faq-answer p + p,
.faq-answer ul,
.faq-answer li + li {
  margin-top: 14px;
}

.faq-answer ul {
  padding-left: 18px;
}

.faq-answer li::marker {
  color: #0072CE;
}

.faq-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(224, 111, 0, 0.34);
  background: linear-gradient(180deg, rgba(224, 111, 0, 0.2) 0%, rgba(224, 111, 0, 0.3) 100%);
  color: #7f3900;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.faq-inline-cta::after {
  content: '›';
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-0.5px);
  transition: transform 0.22s ease;
}

.faq-inline-cta:hover,
.faq-inline-cta:focus-visible {
  border-color: #E06F00;
  background: linear-gradient(180deg, rgba(224, 111, 0, 0.26) 0%, rgba(224, 111, 0, 0.38) 100%);
  color: #652b00;
  box-shadow: 0 14px 28px rgba(224, 111, 0, 0.16);
  transform: translateY(-1px);
}

.faq-inline-cta:hover::after,
.faq-inline-cta:focus-visible::after {
  transform: translate(2px, -0.5px);
}

.faq-bottom-cta {
  position: relative;
  margin: 8px 0 0;
  padding: 60px 56px;
  border: none;
  background: #151515;
  box-shadow: 0 28px 60px rgba(10, 10, 10, 0.24);
  overflow: hidden;
}

.faq-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.faq-bottom-cta .cta-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.faq-bottom-cta h2 {
  max-width: 40ch;
  line-height: 1.18;
}

.faq-bottom-copy {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.84;
}

.faq-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.faq-cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.4;
}

.faq-page a:focus-visible,
.faq-page summary:focus-visible {
  outline: 2px solid #0072CE;
  outline-offset: 3px;
}

.faq-section,
.faq-overview,
.faq-bottom-cta {
  scroll-margin-top: 104px;
}

@media (max-width: 1024px) {
  .faq-overview-grid {
    grid-template-columns: 1fr;
  }

  .faq-overview-card {
    padding: 30px 28px 26px;
  }

  .faq-bottom-cta {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .faq-hero {
    min-height: 400px;
    padding: 58px 24px 50px;
    aspect-ratio: 4 / 3;
    align-items: flex-end;
  }

  .faq-hero-content {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    margin: 0;
  }

  .faq-hero h1 {
    font-size: 1.95rem;
  }

  .faq-hero p {
    max-width: 31ch;
    line-height: 1.7;
  }

  .faq-overview,
  .faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .faq-section::after,
  .faq-section#genel::before {
    left: 24px;
    right: 24px;
  }

  .faq-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .faq-section-intro {
    margin-bottom: 14px;
  }

  .faq-bottom-cta {
    margin-bottom: 56px;
  }
}

@media (max-width: 600px) {
  .faq-hero {
    min-height: 420px;
    padding: 46px 20px 40px;
  }

  .faq-hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .faq-hero h1 {
    font-size: 1.75rem;
    line-height: 1.14;
  }

  .faq-hero p,
  .faq-overview-copy,
  .faq-overview-link-copy .tr-text:last-child,
  .faq-overview-link-copy .en-text:last-child,
  .faq-guidance-link > .tr-text:last-child,
  .faq-guidance-link > .en-text:last-child,
  .faq-section-intro p:last-child,
  .faq-answer p,
  .faq-answer li,
  .faq-bottom-copy {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .faq-overview,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-section::after,
  .faq-section#genel::before {
    left: 20px;
    right: 20px;
  }

  .faq-overview-card {
    padding: 26px 20px 22px;
  }

  .faq-overview-title {
    font-size: 1.22rem;
  }

  .faq-overview-link {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .faq-overview-link-index {
    width: fit-content;
  }

  .faq-guidance-link {
    padding: 18px;
  }

  .faq-section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .faq-section-intro {
    padding-left: 18px;
  }

  .faq-section-intro h2,
  .faq-bottom-cta h2 {
    font-size: 1.58rem;
  }

  .faq-bottom-cta h2 {
    max-width: none;
  }

  .faq-item summary {
    padding: 18px 18px 18px 20px;
    gap: 14px;
  }

  .faq-question-copy {
    font-size: 0.96rem;
  }

  .faq-toggle-icon {
    width: 38px;
    height: 38px;
  }

  .faq-answer {
    padding: 0 20px 22px;
  }

  .faq-inline-cta {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .faq-bottom-cta {
    margin: 4px 0 0;
    padding: 48px 20px;
  }

  .faq-cta-points {
    gap: 8px;
  }

  .faq-cta-points span {
    min-height: 32px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-bottom-cta .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
