/* About page styles (about.html, about-pl/en/ua). Load after styles.css. */

html {
  overflow-x: hidden;
  min-height: 100vh;
  overscroll-behavior: auto; /* відновлюємо природний bounce (styles.css має none) */
}
body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  min-height: 100vh;
  height: auto !important;
  overscroll-behavior: auto; /* нативний відскок (styles.css має none) */
  -webkit-overflow-scrolling: touch; /* імпульсний скрол на iOS */
}
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: auto !important;
  overflow: visible !important;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: auto;
  overflow: visible !important;
  padding: 0;
}
main > section.about {
  flex: 1;
}

/* Figma /about-me-ukr: Desktop 1440px, padding 0 64px, top 100px; без нижнього відступу — футер одразу після «Підтримка проєкту» */
.about-wrap {
  max-width: 1440px;
  margin: 100px auto 0;
  padding: 0 64px 0;
  font-family: 'Roboto', sans-serif;
  background: #fff;
}

/* Hero: жовтий контейнер тільки для тексту; фото окремо справа, Hug 664px */
.about-hero {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
  min-width: 280px;
  padding: 30px;
  border-radius: 24px;
  background: #efe7dc;
}
.about-hero-img {
  flex-shrink: 0;
}
.about-hero-img img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
}

.about-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 37px;
  line-height: 64px;
  font-weight: 400;
  color: #000;
}

.about-lead {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
  max-width: 520px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.about-badges a {
  display: inline-flex;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--page) 92%, transparent);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.about-badges img {
  width: 120px;
  height: 40px;
  display: block;
  object-fit: cover;
}

.about-section {
  margin-top: 80px;
}

.about-section h2 {
  margin: 0 0 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 37px;
  line-height: 52px;
  font-weight: 400;
  color: #000;
  text-align: left;
}

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

/* Планшет: компактніші відступи, 2 колонки, без горизонтального скролу */
@media (max-width: 900px) {
  .about-wrap {
    padding: 0 24px 0;
  }
  .about-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-hero-content {
    padding: 24px 24px;
  }
  .about-hero-img {
    width: 100%;
    order: 1;
  }
  .about-hero-img img {
    max-width: 100%;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section--sources {
    margin-left: -24px;
    margin-right: -24px;
    padding: 56px 24px;
  }

  .about-contact {
    margin-left: -24px;
    margin-right: -24px;
    padding: 56px 24px;
  }
}

/* FAQ: планшет і мобільні — один стовпчик, кожен блок на всю ширину */
@media (max-width: 992px) {
  .about-section--faq {
    padding: 40px 24px;
    gap: 28px;
  }
  .about-section--faq h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .about-section--faq .about-faq-list {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    max-width: none;
    width: 100%;
    gap: 14px;
  }
  .about-section--faq .about-faq-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .about-faq-question {
    padding: 22px 20px;
    font-size: 20px;
    line-height: 26px;
  }
  .about-faq-answer-content {
    padding: 0 20px 24px;
    font-size: 16px;
  }
}

/* Планшет: зображення адаптивні по ширині */
@media (max-width: 768px) {
  .about-hero-img img {
    max-width: 100%;
    width: 100%;
  }
  .about-section--sources-img img {
    max-width: 100%;
    width: 100%;
  }
  .about-section--support-img img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .about-wrap {
    margin: 0 auto 0;
    padding: 20px 12px 40px;
  }

  .about-section h2 {
    margin: 0;
    font-size: 36px;
    text-align: center;
  }

  .about-hero {
    gap: 24px;
  }
  .about-hero-content {
    padding: 24px 20px;
  }
  .about-hero-img {
    width: 100%;
    order: 1;
  }
  .about-hero-img img {
    width: 100%;
    max-width: none;
    border-radius: 12px;
  }

  .about-title {
    font-size: 30px;
    line-height: 1.2;
  }
  .about-lead {
    font-size: 16px;
    line-height: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card {
    padding: 24px 20px;
  }
  .card-title {
    font-size: 22px;
    line-height: 28px;
  }
  .card-sub {
    font-size: 16px;
    line-height: 22px;
  }
  .card-img {
    margin-top: 12px;
  }

  .about-section--sources h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .sources p,
  .sources li {
    font-size: 16px;
    line-height: 22px;
  }

  .about-section--support-img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .about-section--support-img img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .about-section--support h2 {
    font-size: 24px;
  }
  .about-section--support .hint {
    font-size: 16px;
    line-height: 22px;
  }

  .about-contact h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 36px;
  }
  .about-contact .input,
  .about-contact .textarea {
    height: 56px;
    padding: 16px;
    font-size: 16px;
  }
  .about-contact .textarea {
    height: 120px;
    min-height: 120px;
  }
  .about-contact .btn-primary {
    height: 44px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .about-badges {
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .about-badges img {
    width: 120px;
    height: 40px;
  }

  .about-section--sources {
    margin-left: -12px;
    margin-right: -12px;
    padding: 32px 12px;
  }

  .about-section--sources-img {
    width: 100%;
    max-width: 100%;
  }
  .about-section--sources-img img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* FAQ мобільна: той самий вигляд як на десктопі, один стовпчик */
  .about-section--faq {
    margin-top: 40px;
    padding: 24px 12px 32px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
  }

  .about-section--faq h2 {
    margin: 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: #000;
    text-align: center;
  }

  .about-section--faq .about-faq-list {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 16px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .about-section--faq .about-faq-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto;
    border-radius: 20px;
    box-sizing: border-box;
    background: #fff;
    overflow: hidden;
  }

  .about-section--faq .about-faq-question {
    width: 100%;
    padding: 24px 20px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #1a1a1a;
    -webkit-tap-highlight-color: transparent;
  }

  .about-section--faq .about-faq-icon {
    flex-shrink: 0;
    order: -1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: #1a1a1a;
    font-weight: 300;
  }

  .about-section--faq .about-faq-icon .minus {
    display: none;
  }
  .about-section--faq .about-faq-item[data-open="true"] .about-faq-icon .plus {
    display: none;
  }
  .about-section--faq .about-faq-item[data-open="true"] .about-faq-icon .minus {
    display: block;
  }

  .about-section--faq .about-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .about-section--faq .about-faq-item[data-open="true"] .about-faq-answer {
    max-height: 500px;
  }

  .about-section--faq .about-faq-answer-content {
    padding: 0 20px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.0015em;
    color: #5f6368;
  }
  .about-section--faq .about-faq-answer-content ul {
    margin: 12px 0 0;
    padding-left: 24px;
  }
  .about-section--faq .about-faq-answer-content li {
    margin: 6px 0;
  }
  .about-section--faq .about-faq-answer-content a {
    color: #1a1a1a;
    text-decoration: underline;
  }

  .about-contact {
    margin-top: 0;
    margin-left: -12px;
    margin-right: -12px;
    padding: 32px 12px;
  }

  .about-section--support {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .about-section--support-content {
    max-width: none;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    gap: 20px;
  }
  .about-section--support-content h2 {
    text-align: center;
  }
  .about-section--support .hint {
    text-align: center;
    max-width: 100%;
  }
  .about-section--support .cta-row {
    justify-content: center;
    align-items: center;
  }
  .about-section--support .btn-primary {
    align-self: center;
  }
  .about-section--support-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 36px;
  }

  .about-footer {
    padding: 32px 12px;
    align-items: center;
    text-align: center;
  }
  .about-footer-company {
    justify-content: center;
  }
  .about-footer-social-wrap {
    align-items: center;
  }
}

/* Як працює AlertyPL: 3 колонки однакової висоти, фото внизу по одній лінії */
.cards {
  align-items: stretch;
}
.card {
  border-radius: 28px;
  background: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: none;
  height: 100%;
  min-height: 0;
}

.card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  margin-top: auto;
  padding-top: 16px;
}

.card-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  color: #1a1a1a;
}

.card-sub {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.0015em;
  color: #5f6368;
}

/* Frame 25: full-bleed #EFE7DC, текст зліва, картинка справа */
.about-section--sources {
  margin-left: -64px;
  margin-right: -64px;
  margin-top: 80px;
  padding: 80px 64px;
  background: #efe7dc;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.about-section--sources-content {
  flex: 1;
  min-width: 280px;
}
.about-section--sources h2 {
  margin-bottom: 32px;
}
.sources {
  display: grid;
  gap: 32px;
  padding: 0;
  max-width: 600px;
}
.about-section--sources-img {
  flex-shrink: 0;
}
.about-section--sources-img img {
  display: block;
  max-width: 400px;
  height: auto;
}

.sources p {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.0015em;
  color: rgba(0, 0, 0, 0.55);
}

.sources ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sources li {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  padding-left: 0;
}

.sources li::before {
  content: "✅ ";
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-primary {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--alert);
  background: var(--alert);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 18px rgba(197, 90, 90, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.02);
}

.btn-outline {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--page) 92%, transparent);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.9;
}

.input, .textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--page) 92%, transparent);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.spacer {
  height: 1px;
  background: var(--line);
  margin: 24px 0 0;
}

/* FAQ: тільки десктоп (щоб не перебивати мобільну версію) */
@media (min-width: 561px) {
  .about-section--faq {
    margin-top: 80px;
    padding: 48px 64px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .about-section--faq h2 {
    margin: 0;
    font-size: 36px;
    line-height: 44px;
    font-weight: 400;
    color: #000;
  }
  .about-section--faq .about-faq-list {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-section--faq .about-faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
  }
  .about-section--faq .about-faq-question {
    width: 100%;
    padding: 24px 28px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
    color: #1a1a1a;
  }
  .about-section--faq .about-faq-question:hover {
    opacity: 0.88;
  }
  .about-section--faq .about-faq-icon {
    flex-shrink: 0;
    order: -1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: #1a1a1a;
    font-weight: 300;
  }
  .about-section--faq .about-faq-icon .minus {
    display: none;
  }
  .about-section--faq .about-faq-item[data-open="true"] .about-faq-icon .plus {
    display: none;
  }
  .about-section--faq .about-faq-item[data-open="true"] .about-faq-icon .minus {
    display: block;
  }
  .about-section--faq .about-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .about-section--faq .about-faq-item[data-open="true"] .about-faq-answer {
    max-height: 400px;
  }
  .about-section--faq .about-faq-answer-content {
    padding: 0 28px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.0015em;
    color: #5f6368;
  }
  .about-section--faq .about-faq-answer-content ul {
    margin: 12px 0 0;
    padding-left: 24px;
  }
  .about-section--faq .about-faq-answer-content li {
    margin: 6px 0;
  }
  .about-section--faq .about-faq-answer-content a {
    color: #1a1a1a;
    text-decoration: underline;
  }
}

/* Contact section — Figma Hero 7 */
.about-contact {
  background: #efe7dc;
  padding: 80px 64px;
  margin-left: -64px;
  margin-right: -64px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-contact .form {
  display: grid;
  gap: 24px;
  padding: 0;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 486px;
}
.about-contact-form-status {
  font-size: 14px;
  line-height: 20px;
  color: #1a1a1a;
  margin: 8px 0 0;
  padding: 0;
  border-radius: 12px;
  border: 1px solid transparent;
}
.about-contact-form-status:not(:empty) {
  font-weight: 500;
  padding: 12px 16px;
}
.about-contact-form-status.is-success {
  background: #e8f5e9;
  color: #1b5e20;
  border-color: #a5d6a7;
}
.about-contact-form-status.is-error {
  background: #ffebee;
  color: #b71c1c;
  border-color: #ef9a9a;
}
.about-contact-form-status.is-sending {
  background: #fff8e1;
  color: #f57f17;
  border-color: #ffe082;
}
.about-contact .field {
  gap: 0;
}
.about-contact .label {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.0015em;
  color: #615e5b;
  margin-bottom: 4px;
}
.about-contact .label.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;
}
.about-contact .input,
.about-contact .textarea {
  width: 100%;
  height: 74px;
  padding: 21px;
  border: none;
  border-radius: 20px;
  background: #fff;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.0015em;
  color: #1a1a1a;
}
.about-contact .textarea {
  height: 150px;
  min-height: 150px;
  resize: vertical;
}
.about-contact .cta-row {
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.about-contact .btn-primary {
  height: 48px;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: #d32f2f;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.0015em;
  color: #fff;
  box-shadow: none;
}

/* Frame 22 Support: текст зліва (половина ширини), картинка справа — тільки десктоп */
@media (min-width: 561px) {
  .about-section--support {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 48px 0;
  }
  .about-section--support-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    flex: 0 1 50%;
    max-width: 50%;
    min-width: 280px;
    text-align: left;
  }
  .about-section--support h2 {
    margin: 0;
  }
  .about-section--support .hint {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.0015em;
    color: rgba(0, 0, 0, 0.55);
  }
  .about-section--support .btn-primary {
    height: 48px;
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    background: #d32f2f;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.0015em;
    color: #fff;
    align-self: flex-start;
  }
  .about-section--support-img {
    flex-shrink: 0;
  }
  .about-section--support-img img {
    display: block;
    max-width: 260px;
    height: auto;
  }
}

/* Footer 2 — Figma, одразу під контактами */
.about-footer {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Roboto', sans-serif;
}
.about-footer-company {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.about-footer-company a {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}
.about-footer-company a:hover {
  opacity: 0.85;
}
.about-footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.about-footer-follow {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.0015em;
  color: rgba(0, 0, 0, 0.55);
}
.about-footer [data-lang] {
  display: none;
}
.about-footer [data-lang].visible {
  display: inline;
}
.about-footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.about-footer-social a {
  width: 40px;
  height: 40px;
  border: 3.5px solid #1e1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-footer-social a:hover {
  opacity: 0.7;
}
.about-footer-social svg,
.about-footer-social img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}
@media (max-width: 560px) {
  .about-footer {
    padding: 32px 12px;
    align-items: center;
    text-align: center;
  }
  .about-footer-company {
    justify-content: center;
  }
  .about-footer-social-wrap {
    align-items: center;
  }
}

/* ========== Dark theme — about page ========== */
html[data-theme="dark"] .about-wrap {
  background: var(--page);
}
html[data-theme="dark"] .about-hero-content {
  background: var(--panel);
}
html[data-theme="dark"] .about-title,
html[data-theme="dark"] .about-section h2 {
  color: var(--ink);
}
html[data-theme="dark"] .about-lead {
  color: var(--muted);
}
html[data-theme="dark"] .card {
  background: var(--panel);
}
html[data-theme="dark"] .card-title {
  color: var(--ink);
}
html[data-theme="dark"] .card-sub {
  color: var(--muted);
}
html[data-theme="dark"] .about-section--sources {
  background: var(--panel);
}
html[data-theme="dark"] .sources p {
  color: var(--muted);
}
html[data-theme="dark"] .sources li {
  color: var(--ink);
}
html[data-theme="dark"] .about-section--faq .about-faq-item,
html[data-theme="dark"] .about-section--faq .about-faq-item {
  background: var(--panel);
}
html[data-theme="dark"] .about-section--faq .about-faq-question,
html[data-theme="dark"] .about-section--faq .about-faq-icon {
  color: var(--ink);
}
html[data-theme="dark"] .about-section--faq .about-faq-question {
  background: transparent;
}
html[data-theme="dark"] .about-section--faq .about-faq-answer-content {
  color: var(--muted);
}
html[data-theme="dark"] .about-section--faq .about-faq-answer-content a {
  color: var(--ink);
}
html[data-theme="dark"] .about-section--faq h2 {
  color: var(--ink);
}
html[data-theme="dark"] .about-section--support-content,
html[data-theme="dark"] .about-section--support .hint {
  color: var(--ink);
}
html[data-theme="dark"] .about-section--support .hint {
  color: var(--muted);
}
html[data-theme="dark"] .about-contact {
  background: var(--panel);
}
html[data-theme="dark"] .about-contact .input,
html[data-theme="dark"] .about-contact .textarea {
  background: var(--page);
  border: 1px solid var(--line);
  color: var(--ink);
}
html[data-theme="dark"] .about-contact .label {
  color: var(--muted);
}
html[data-theme="dark"] .about-contact-form-status {
  color: var(--ink);
}
html[data-theme="dark"] .about-contact-form-status.is-success {
  background: rgba(76, 175, 80, 0.2);
  color: #81c784;
  border-color: #4caf50;
}
html[data-theme="dark"] .about-contact-form-status.is-error {
  background: rgba(244, 67, 54, 0.2);
  color: #e57373;
  border-color: #f44336;
}
html[data-theme="dark"] .about-contact-form-status.is-sending {
  background: rgba(255, 193, 7, 0.15);
  color: #ffca28;
  border-color: #ffc107;
}
html[data-theme="dark"] .about-section--support .hint {
  color: var(--muted);
}
html[data-theme="dark"] .about-section--support h2 {
  color: var(--ink);
}
html[data-theme="dark"] .about-footer {
  border-top-color: var(--line);
}
html[data-theme="dark"] .about-footer-company a {
  color: var(--ink);
}
html[data-theme="dark"] .about-footer-follow {
  color: var(--muted);
}
html[data-theme="dark"] .about-footer-social a {
  border-color: var(--line-2);
  color: var(--ink);
}
html[data-theme="dark"] .about-footer-social img {
  filter: invert(1);
}
