/* ============================================================
   mk-help.css — Help center page styles
   Scope: public/pages/marketing/mk-help.html
   ============================================================ */

.mk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Page wrapper */
.mk-help {
  padding-block: var(--space-9);
  background: var(--WHITE);
}

.mk-help__container {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

/* Header */
.mk-help__header {
  margin-bottom: var(--space-8);
}

.mk-help__title {
  font-family: var(--font-family-heading);
  font-weight: 400;
  font-size: var(--fz-2xl);
  margin: 0 0 var(--space-3);
  color: var(--BLACK);
}

.mk-help__sub {
  margin: 0 0 var(--space-5);
  color: rgba(15, 15, 15, 0.65);
  font-size: var(--fz-base);
  font-weight: 300;
  line-height: var(--lh-normal);
}

.mk-help__search-wrap {
  max-width: 480px;
}

.mk-help__search-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--SILVER);
  border-radius: var(--radius-sm);
  font-family: var(--font-family-body);
  font-size: var(--fz-base);
  font-weight: 300;
  color: var(--BLACK);
  background: var(--WHITE);
  outline: none;
  transition: border-color var(--timing-fast) var(--ease-curve);
}

.mk-help__search-input:focus-visible {
  border-color: var(--BLACK);
}

/* Section */
.mk-help__section {
  margin-bottom: var(--space-8);
}

.mk-help__section-heading {
  font-family: var(--font-family-heading);
  font-weight: 400;
  font-size: var(--fz-xl);
  color: var(--BLACK);
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1.5px solid var(--SILVER);
}

/* Question list */
.mk-help__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mk-help__item {
  border-bottom: 1px solid rgba(222, 222, 222, 0.6);
}

/* Question toggle */
.mk-help__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border: 0;
  background: transparent;
  font-family: var(--font-family-body);
  font-size: var(--fz-base);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  color: var(--BLACK);
  line-height: var(--lh-normal);
  transition: color var(--timing-fast) var(--ease-curve);
}

.mk-help__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(15, 15, 15, 0.45);
  transition: transform var(--timing-fast) var(--ease-curve), color var(--timing-fast) var(--ease-curve);
  line-height: 1;
}

.mk-help__question[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--BLACK);
}

.mk-help__question:hover,
.mk-help__question:focus-visible {
  color: rgba(15, 15, 15, 0.7);
}

.mk-help__question:focus-visible {
  outline: 2px solid var(--BLACK);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Answer */
.mk-help__answer {
  padding-bottom: var(--space-4);
  color: rgba(15, 15, 15, 0.75);
  line-height: var(--lh-normal);
}

.mk-help__answer p {
  margin: 0 0 var(--space-3);
}

.mk-help__answer p:last-child {
  margin-bottom: 0;
}

.mk-help__answer a {
  color: var(--BLACK);
  text-decoration: underline;
}

/* Contact section */
.mk-help__section--contact {
  padding-top: var(--space-6);
  border-top: 1.5px solid var(--SILVER);
}

.mk-help__section--contact .mk-help__section-heading {
  border-bottom: none;
  padding-bottom: var(--space-2);
}

.mk-help__contact-text {
  margin: 0 0 var(--space-3);
  color: rgba(15, 15, 15, 0.75);
  font-weight: 300;
  line-height: var(--lh-normal);
}

.mk-help__contact-link {
  display: inline-block;
  font-size: var(--fz-lg);
  font-weight: 400;
  color: var(--BLACK);
  text-decoration: underline;
  margin-bottom: var(--space-3);
}

.mk-help__contact-note {
  margin: 0;
  font-size: var(--fz-sm);
  font-weight: 300;
  color: rgba(15, 15, 15, 0.5);
}

/* Legal footer */
.mk-help__legal {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(222, 222, 222, 0.6);
  font-size: var(--fz-sm);
  font-weight: 300;
  color: rgba(15, 15, 15, 0.55);
  line-height: var(--lh-normal);
}

.mk-help__legal a {
  color: var(--BLACK);
  text-decoration: underline;
}
}
