:root {
  --pc-bg: #0b0d12;
  --pc-bg-soft: #141923;
  --pc-surface: rgba(12, 16, 24, 0.88);
  --pc-surface-strong: rgba(18, 24, 36, 0.96);
  --pc-card: rgba(255, 255, 255, 0.05);
  --pc-card-strong: rgba(255, 255, 255, 0.08);
  --pc-line: rgba(255, 255, 255, 0.12);
  --pc-line-strong: rgba(255, 255, 255, 0.18);
  --pc-text: #f7f8fb;
  --pc-muted: #adb8c9;
  --pc-orange: #f6921d;
  --pc-red: #e45114;
  --pc-gold: #ffd27f;
  --pc-green: #13cd85;
  --pc-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pc-text);
  background:
    radial-gradient(circle at top left, rgba(246, 146, 29, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(228, 81, 20, 0.16), transparent 34%),
    linear-gradient(180deg, #080a0f 0%, #0c1018 42%, #0b0e14 100%);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.is-mobile-menu-open,
body.is-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.pc-site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.pc-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.pc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--pc-line);
  background: rgba(7, 10, 15, 0.84);
  backdrop-filter: blur(22px);
}

.pc-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 88px;
}

.pc-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  border: 1px solid var(--pc-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  min-width: 0;
  text-decoration: none;
}

.pc-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(246, 146, 29, 0.3), transparent 60%),
    rgba(255, 255, 255, 0.06);
}

.pc-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}

.pc-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pc-brand__eyebrow {
  margin-bottom: 3px;
  color: var(--pc-gold);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pc-brand strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1;
}

.pc-brand span {
  display: block;
  color: var(--pc-muted);
  font-size: 12px;
}

.pc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.pc-nav a,
.pc-lang-switch,
.pc-mobile-link {
  text-decoration: none;
}

.pc-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--pc-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.pc-nav a:hover,
.pc-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.pc-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pc-lang-group {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.pc-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--pc-muted);
}

.pc-lang-switch.is-active,
.pc-lang-switch:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.pc-button,
.pc-copy-button,
.pc-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pc-button:hover,
.pc-copy-button:hover,
.pc-link-button:hover {
  transform: translateY(-1px);
}

.pc-button,
.pc-copy-button {
  background: linear-gradient(135deg, var(--pc-red), var(--pc-orange));
  box-shadow: 0 14px 34px rgba(228, 81, 20, 0.24);
}

.pc-button--ghost,
.pc-link-button {
  border-color: var(--pc-line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.pc-button--compact {
  min-height: 44px;
  padding: 0 18px;
}

.pc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--pc-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.pc-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.pc-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 6, 11, 0.64);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pc-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(390px, 88vw);
  height: 100vh;
  padding: 24px;
  border-left: 1px solid var(--pc-line);
  background:
    radial-gradient(circle at top, rgba(246, 146, 29, 0.16), transparent 28%),
    var(--pc-surface-strong);
  transform: translateX(110%);
  transition: transform 0.24s ease;
}

.pc-mobile-panel__header,
.pc-mobile-actions,
.pc-card-actions,
.pc-copy-row,
.pc-device-card__footer,
.pc-hero__actions,
.pc-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-mobile-panel__header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pc-mobile-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-mobile-brand span {
  color: var(--pc-muted);
  font-size: 12px;
  line-height: 1.5;
}

.pc-mobile-panel__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.pc-mobile-panel__body {
  display: grid;
  gap: 12px;
}

.pc-mobile-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--pc-line);
  border-radius: 16px;
  color: var(--pc-muted);
  background: rgba(255, 255, 255, 0.03);
}

.pc-mobile-link.is-active,
.pc-mobile-link:hover {
  color: #fff;
  border-color: rgba(246, 146, 29, 0.34);
  background: rgba(246, 146, 29, 0.1);
}

body.is-mobile-menu-open .pc-mobile-panel {
  transform: translateX(0);
}

body.is-mobile-menu-open .pc-mobile-backdrop {
  visibility: visible;
  opacity: 1;
}

.pc-main {
  min-height: 60vh;
}

.pc-hero,
.pc-page-shell {
  position: relative;
  padding: 46px 0 76px;
}

.pc-page-shell--tight {
  padding-top: 0;
}

.pc-hero::before,
.pc-page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 240px;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 60%);
}

.pc-hero__layout,
.pc-dual-grid,
.pc-info-grid,
.pc-plan-grid,
.pc-notice-grid,
.pc-footer__grid,
.pc-story-grid,
.pc-device-grid,
.pc-step-grid,
.pc-compare-grid,
.pc-faq-grid,
.pc-kpi-grid {
  display: grid;
  gap: 20px;
}

.pc-hero__layout,
.pc-dual-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
}

.pc-hero__copy,
.pc-banner-card,
.pc-content-card,
.pc-download-board,
.pc-notice-card,
.pc-plan-card,
.pc-auth-card,
.pc-rich-content,
.pc-stat-strip,
.pc-alert,
.pc-spotlight-card,
.pc-story-card,
.pc-device-card,
.pc-step-card,
.pc-compare-card,
.pc-faq-card,
.pc-kpi-card {
  position: relative;
  border: 1px solid var(--pc-line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--pc-shadow);
}

.pc-hero__copy {
  padding: 38px;
  background:
    radial-gradient(circle at top left, rgba(246, 146, 29, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.pc-hero__visual {
  display: grid;
  gap: 18px;
}

.pc-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(228, 81, 20, 0.92), rgba(246, 146, 29, 0.92));
}

.pc-pill--soft {
  color: #ffd9ab;
  border: 1px solid rgba(246, 146, 29, 0.2);
  background: rgba(246, 146, 29, 0.12);
}

.pc-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pc-gold);
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
}

.pc-hero__copy h1,
.pc-page-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1;
}

.pc-hero__copy p,
.pc-page-hero p,
.pc-content-card p,
.pc-plan-card p,
.pc-notice-card p,
.pc-rich-content,
.pc-step-card p,
.pc-compare-card p,
.pc-faq-card p,
.pc-device-card p,
.pc-kpi-card span {
  color: var(--pc-muted);
  line-height: 1.8;
}

.pc-page-hero,
.pc-section__heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.pc-section {
  padding: 0 0 70px;
}

.pc-section--compact {
  padding-bottom: 28px;
}

.pc-section__heading h2,
.pc-content-card h2,
.pc-download-board h2,
.pc-rich-content h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.pc-section__heading p {
  margin: 0 auto;
  max-width: 640px;
}

.pc-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.pc-kpi-card {
  padding: 24px;
}

.pc-kpi-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 28px;
}

.pc-banner-card,
.pc-content-card,
.pc-download-board,
.pc-notice-card,
.pc-auth-card,
.pc-rich-content,
.pc-story-card,
.pc-device-card,
.pc-step-card,
.pc-compare-card,
.pc-faq-card {
  padding: 28px;
}

.pc-banner-card {
  grid-template-columns: minmax(0, 1fr) 160px;
  align-items: center;
}

.pc-banner-card__content {
  min-width: 0;
}

.pc-banner-card__content h2,
.pc-spotlight-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.pc-banner-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
}

.pc-spotlight-card {
  padding: 24px;
  overflow: hidden;
}

.pc-spotlight-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 146, 29, 0.24), transparent 70%);
}

.pc-signal-list,
.pc-feature-list,
.pc-footer ul,
.pc-timeline,
.pc-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-signal-list {
  display: grid;
  gap: 12px;
}

.pc-signal-list li,
.pc-feature-list li,
.pc-footer li,
.pc-timeline li,
.pc-check-list li {
  position: relative;
  padding-left: 18px;
}

.pc-signal-list li::before,
.pc-feature-list li::before,
.pc-footer li::before,
.pc-timeline li::before,
.pc-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pc-red), var(--pc-orange));
}

.pc-story-grid,
.pc-compare-grid,
.pc-faq-grid,
.pc-info-grid,
.pc-notice-grid,
.pc-footer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-plan-card {
  padding: 26px;
  overflow: hidden;
}

.pc-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--plan-accent, var(--pc-orange));
}

.pc-plan-card.is-featured {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at top left, rgba(246, 146, 29, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.pc-plan-card__top h3,
.pc-notice-card h3,
.pc-story-card h3,
.pc-device-card h3,
.pc-step-card h3,
.pc-compare-card h3,
.pc-faq-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.pc-price-row {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 20px 0;
}

.pc-price-row strong {
  font-size: 38px;
}

.pc-price-row span,
.pc-card-note,
.pc-device-card small,
.pc-mini-table span {
  color: var(--pc-muted);
}

.pc-card-note {
  min-height: 54px;
  margin-bottom: 18px;
}

.pc-download-grid {
  display: grid;
  gap: 16px;
}

.pc-download-grid a,
.pc-device-card__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--pc-line);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}

.pc-download-grid--large,
.pc-device-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pc-device-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-device-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pc-gold);
  font-size: 13px;
}

.pc-device-card__footer {
  margin-top: auto;
}

.pc-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-step-card span,
.pc-story-card span,
.pc-compare-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pc-red), var(--pc-orange));
}

.pc-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.pc-stat-strip div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.pc-stat-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--pc-muted);
}

.pc-stat-strip strong {
  font-size: 24px;
}

.pc-input,
.pc-register-form input,
.pc-auth-card input[type="text"],
.pc-auth-card input[type="email"],
.pc-auth-card input[type="password"] {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--pc-line);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.pc-copy-row {
  align-items: center;
}

.pc-copy-row .pc-input {
  margin: 0;
}

.pc-copy-button {
  min-width: 134px;
}

.pc-mini-table div,
.pc-list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pc-line);
}

.pc-mini-table div:last-child,
.pc-list-item:last-child {
  border-bottom: 0;
}

.pc-timeline {
  display: grid;
  gap: 14px;
}

.pc-timeline li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pc-line);
}

.pc-timeline li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pc-qr-block {
  width: fit-content;
  margin-top: 18px;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
}

.pc-qr-block img {
  width: 180px;
  height: 180px;
}

.pc-auth-shell {
  display: flex;
  justify-content: center;
  padding: 30px 0 10px;
}

.pc-auth-card {
  width: min(540px, 100%);
}

.pc-auth-card .login-username label,
.pc-auth-card .login-password label,
.pc-auth-card .login-remember label {
  display: block;
  margin-bottom: 6px;
}

.pc-auth-card .login-submit {
  margin: 16px 0 10px;
}

.pc-auth-card .button-primary {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--pc-red), var(--pc-orange));
}

.pc-auth-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--pc-muted);
  text-decoration: none;
}

.pc-rich-content h2,
.pc-rich-content h3 {
  margin-top: 0;
}

.pc-alert {
  padding: 16px 20px;
  color: #ffd7d7;
  background: rgba(228, 81, 20, 0.16);
}

.pc-footer {
  border-top: 1px solid var(--pc-line);
  background: rgba(7, 10, 15, 0.74);
}

.pc-footer__grid {
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(180px, 0.86fr));
  gap: 28px;
  padding: 38px 0 30px;
  align-items: start;
}

.pc-footer__brand {
  max-width: 360px;
}

.pc-footer__brand p,
.pc-footer__contact p {
  color: var(--pc-muted);
  line-height: 1.8;
}

.pc-footer h3,
.pc-footer h4 {
  margin: 0 0 16px;
}

.pc-footer h3 {
  font-size: 22px;
}

.pc-footer h4 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pc-line);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.pc-footer__menu {
  display: grid;
  gap: 12px;
}

.pc-footer__menu li {
  margin: 0;
  padding-left: 0;
  color: var(--pc-muted);
}

.pc-footer__menu li::before {
  display: none;
}

.pc-footer__menu a {
  color: var(--pc-muted);
  text-decoration: none;
}

.pc-footer__menu a:hover {
  color: #fff;
}

.pc-footer__bottom {
  border-top: 1px solid var(--pc-line);
}

.pc-footer__bottom .pc-container {
  padding: 16px 0;
  color: var(--pc-muted);
}

.pc-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pc-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.pc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.76);
}

.pc-modal__dialog {
  position: relative;
  width: min(760px, calc(100% - 28px));
  margin: 6vh auto 0;
  border: 1px solid var(--pc-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(246, 146, 29, 0.14), transparent 30%),
    var(--pc-surface-strong);
  box-shadow: var(--pc-shadow);
}

.pc-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.pc-modal__content {
  max-height: 84vh;
  padding: 34px;
  overflow: auto;
}

.pc-modal__body h3 {
  margin: 0 0 16px;
  font-size: 30px;
}

.pc-modal__body h4 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.pc-modal__body p,
.pc-modal__body li {
  color: var(--pc-muted);
  line-height: 1.8;
}

.pc-modal-template {
  display: none;
}

@media (max-width: 1140px) {
  .pc-header__inner {
    grid-template-columns: auto 1fr;
  }

  .pc-nav {
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .pc-header__inner {
    grid-template-columns: auto auto;
  }

  .pc-nav,
  .pc-header__actions .pc-lang-group,
  .pc-header__actions .pc-button--ghost,
  .pc-header__actions .pc-button--compact {
    display: none;
  }

  .pc-menu-toggle {
    display: inline-block;
  }

  .pc-hero__layout,
  .pc-dual-grid,
  .pc-story-grid,
  .pc-compare-grid,
  .pc-faq-grid,
  .pc-info-grid,
  .pc-notice-grid,
  .pc-plan-grid,
  .pc-kpi-grid,
  .pc-stat-strip,
  .pc-step-grid {
    grid-template-columns: 1fr;
  }

  .pc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .pc-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .pc-container {
    width: min(100% - 24px, 1200px);
  }

  .pc-hero,
  .pc-page-shell {
    padding: 28px 0 58px;
  }

  .pc-header__inner {
    min-height: 76px;
  }

  .pc-brand span {
    display: none;
  }

  .pc-brand__eyebrow {
    display: none;
  }

  .pc-hero__copy,
  .pc-banner-card,
  .pc-content-card,
  .pc-download-board,
  .pc-notice-card,
  .pc-plan-card,
  .pc-rich-content,
  .pc-auth-card,
  .pc-story-card,
  .pc-device-card,
  .pc-step-card,
  .pc-compare-card,
  .pc-faq-card {
    padding: 22px;
    border-radius: 22px;
  }

  .pc-banner-card,
  .pc-download-grid--large,
  .pc-device-grid {
    grid-template-columns: 1fr;
  }

  .pc-page-hero,
  .pc-section__heading {
    text-align: left;
  }

  .pc-modal__content {
    padding: 26px 20px;
  }

  .pc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .pc-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .pc-footer__grid {
    grid-template-columns: 1fr;
  }

  .pc-footer__brand {
    grid-column: auto;
  }
}
