.help-studio {
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  padding: 32px 0 56px;
}

.help-studio__shell {
  max-width: 1440px;
}

.help-studio__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: start;
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
  border: 1px solid #e5e5e5;
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-bottom: 24px;
}

.help-studio__eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: #666666;
}

.help-studio__title {
  margin: 0;
  color: #111111;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
}

.help-studio__subtitle {
  margin: 12px 0 0;
  max-width: 760px;
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.7;
}

.help-studio__hero-actions,
.help-contact-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #d8d8d8;
  font-weight: 700;
  text-decoration: none;
  background: #ffffff;
  color: #222222;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.help-btn:hover {
  transform: translateY(-1px);
}

.help-btn--primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
}

.help-btn--secondary {
  background: #ffffff;
  color: #222222;
}

.help-studio__hero-meta {
  display: grid;
  gap: 14px;
}

.help-meta-card,
.help-side-card,
.help-mini-card,
.help-contact-band,
.help-empty {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.help-meta-card {
  padding: 18px;
}

.help-meta-card__label,
.help-mini-card__label,
.help-contact-band__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #777777;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-meta-card strong {
  color: #111111;
  font-size: 1rem;
  line-height: 1.5;
}

.help-studio__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.help-studio__main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.help-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.help-card__header {
  margin-bottom: 18px;
}

.help-card__header h2,
.help-side-card h2 {
  margin: 0 0 6px;
  color: #111111;
  font-size: 1.5rem;
  font-weight: 800;
}

.help-card__header p,
.help-side-card p {
  margin: 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
}

.help-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.help-mini-card {
  padding: 18px;
}

.help-mini-card p,
.help-contact-band p,
.help-side-list li,
.help-empty p {
  color: #4b5563;
  line-height: 1.75;
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-module {
  border: 1px solid #ececec;
  border-radius: 20px;
  background: linear-gradient(180deg, #fcfcfc 0%, #f7f7f7 100%);
  overflow: hidden;
}

.faq-module__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: #111111;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
}

.faq-module__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-module__icon::before,
.faq-module__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #555555;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.faq-module__question.active .faq-module__icon::after {
  opacity: 0;
}

.faq-module__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-module__answer.show {
  max-height: 500px;
}

.faq-module__answer-inner {
  padding: 0 20px 20px;
  color: #4b5563;
  line-height: 1.75;
}

.faq-module__answer-inner p:last-child {
  margin-bottom: 0;
}

.help-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  margin-top: 18px;
}

.help-contact-band h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.35rem;
  font-weight: 800;
}

.help-empty {
  padding: 28px;
  text-align: center;
}

.help-empty i {
  display: inline-block;
  margin-bottom: 14px;
  color: #777777;
  font-size: 2.6rem;
}

.help-empty h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.35rem;
  font-weight: 800;
}

.help-studio__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 108px;
}

.help-side-card {
  padding: 22px;
}

.help-side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.help-side-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  color: #222222;
  font-weight: 700;
  text-decoration: none;
}

.help-side-nav a:hover {
  background: #efefef;
}

.help-side-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

@media (max-width: 1199px) {
  .help-studio__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-studio__side {
    position: static;
  }
}

@media (max-width: 991px) {
  .help-studio__hero,
  .help-contact-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .help-studio {
    padding: 18px 0 36px;
  }

  .help-studio__hero,
  .help-card,
  .help-side-card,
  .help-contact-band,
  .help-empty {
    padding: 20px;
    border-radius: 22px;
  }

  .help-studio__hero-actions,
  .help-contact-band__actions {
    flex-direction: column;
  }

  .help-btn {
    width: 100%;
  }
}