.ps-gpad-page .ps-gpad-landing {
  --ps-ink: #0c1222;
  --ps-muted: #5b6478;
  --ps-card: #ffffff;
  --ps-border: #e5e8ee;
  --ps-brand: #b91c1c;
  --ps-ok: #15803d;
  --ps-part: #b45309;
  --ps-cable: #1d4ed8;
  --ps-no: #9ca3af;
}

.ps-gpad-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 4vw, 48px);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 38%, #991b1b 100%);
  color: #ecfeff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.26);
}
.ps-gpad-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse 55% 45% at 12% 30%, rgba(239, 68, 68, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 38% at 90% 70%, rgba(251, 191, 36, 0.1), transparent 50%);
  pointer-events: none;
}
.ps-gpad-hero__inner { position: relative; z-index: 1; max-width: 840px; }
.ps-gpad-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fecaca;
  margin-bottom: 12px;
}
.ps-gpad-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 3.8vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}
.ps-gpad-page #content h1.ps-gpad-hero__title { color: #fff !important; }
.ps-gpad-hero__lead { margin: 0; font-size: 1.05rem; line-height: 1.65; color: #fee2e2; }

.ps-gpad-check {
  background: var(--ps-card);
  border: 1px solid var(--ps-border);
  border-radius: 18px;
  padding: clamp(20px, 3.4vw, 32px);
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.ps-gpad-section { margin-bottom: 32px; }
.ps-gpad-section__title {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 800;
  color: var(--ps-ink);
}
.ps-gpad-section__sub { margin: 0 0 16px; font-size: 0.95rem; color: var(--ps-muted); line-height: 1.55; }

.ps-gpad-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.ps-gpad-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: #f8f9fb;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ps-ink);
  transition: all 0.15s ease;
}
.ps-gpad-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ps-border);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--ps-brand);
}
.ps-gpad-chip:hover { border-color: var(--ps-brand); }
.ps-gpad-chip.is-active { background: var(--ps-brand); border-color: var(--ps-brand); color: #fff; }
.ps-gpad-chip.is-active .ps-gpad-chip__icon { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); color: #fff; }

.ps-gpad-panel { display: none; }
.ps-gpad-panel.is-active { display: block; animation: ps-gpad-fade 0.2s ease; }
@keyframes ps-gpad-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.ps-gpad-panel__title { margin: 0 0 14px; font-size: 1.1rem; font-weight: 800; color: var(--ps-ink); }
.ps-gpad-panel__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.ps-gpad-pad {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 14px 16px;
  border: 1px solid var(--ps-border);
  border-radius: 14px;
  background: #fbfbfd;
}
.ps-gpad-pad__main { display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; min-width: 0; }
.ps-gpad-pad__name { font-size: 0.98rem; color: var(--ps-ink); }
.ps-gpad-pad__tag { font-size: 0.78rem; color: var(--ps-muted); }
.ps-gpad-pad__note { flex-basis: 100%; font-size: 0.82rem; color: var(--ps-muted); line-height: 1.45; }

.ps-gpad-st {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.ps-gpad-st--full { background: #ecfdf5; color: var(--ps-ok); border: 1px solid #bbf7d0; }
.ps-gpad-st--part { background: #fffbeb; color: var(--ps-part); border: 1px solid #fde68a; }
.ps-gpad-st--cable { background: #eff6ff; color: var(--ps-cable); border: 1px solid #bfdbfe; }
.ps-gpad-st--no { background: #f3f4f6; color: var(--ps-no); border: 1px solid #e5e7eb; }

.ps-gpad-matrix-sec { margin-bottom: 32px; }
.ps-gpad-matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--ps-border);
  border-radius: 14px;
  background: var(--ps-card);
}
.ps-gpad-matrix { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 900px; }
.ps-gpad-matrix th, .ps-gpad-matrix td { padding: 11px 12px; text-align: center; font-size: 0.86rem; }
.ps-gpad-matrix thead th {
  position: sticky;
  top: 0;
  background: #f8f9fb;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ps-muted);
  border-bottom: 1px solid var(--ps-border);
  white-space: nowrap;
}
.ps-gpad-matrix thead th.ps-gpad-matrix__head { text-align: left; min-width: 190px; }
.ps-gpad-matrix tbody td { border-bottom: 1px solid #f0f1f5; }
.ps-gpad-matrix tbody tr:last-child td { border-bottom: 0; }
.ps-gpad-matrix td.ps-gpad-matrix__name { text-align: left; font-weight: 700; color: var(--ps-ink); }
.ps-gpad-matrix th[data-c].is-active, .ps-gpad-matrix td[data-c].is-active { background: #fbf6ff; }
.ps-gpad-matrix thead th[data-c].is-active { color: var(--ps-brand); }
.ps-gpad-matrix td.ps-gpad-st {
  display: table-cell;
  vertical-align: middle;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  white-space: nowrap;
}
.ps-gpad-note { margin: 12px 2px 0; font-size: 0.85rem; color: var(--ps-muted); line-height: 1.5; }

.ps-gpad-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.ps-gpad-tip {
  background: var(--ps-card);
  border: 1px solid var(--ps-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.ps-gpad-tip__title { margin: 0 0 8px; font-size: 1rem; font-weight: 800; color: var(--ps-ink); }
.ps-gpad-tip__text { margin: 0; font-size: 0.9rem; line-height: 1.55; color: var(--ps-muted); }

.ps-gpad-faq { margin-bottom: 32px; }
.ps-gpad-faq__item {
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  background: var(--ps-card);
  margin-bottom: 10px;
  overflow: hidden;
}
.ps-gpad-faq__item summary {
  cursor: pointer;
  padding: 15px 18px;
  padding-right: 44px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ps-ink);
  list-style: none;
  position: relative;
}
.ps-gpad-faq__item summary::-webkit-details-marker { display: none; }
.ps-gpad-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--ps-brand);
}
.ps-gpad-faq__item[open] summary::after { content: "–"; }
.ps-gpad-faq__a { padding: 0 18px 15px; font-size: 0.92rem; line-height: 1.6; color: var(--ps-muted); }

.ps-gpad-cta {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 38%, #991b1b 100%);
  color: #ecfeff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}
.ps-gpad-cta__title { margin: 0 0 10px; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: #fff; }
.ps-gpad-cta__text { margin: 0 auto 20px; max-width: 660px; font-size: 1rem; line-height: 1.6; color: #fee2e2; }
.ps-gpad-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ps-gpad-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
.ps-gpad-cta__btn { background: #fff; color: #b91c1c !important; }
.ps-gpad-cta__btn:hover { background: #fdf0f0; }
.ps-gpad-cta__btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff !important; }
.ps-gpad-cta__btn--ghost:hover { background: rgba(255, 255, 255, 0.24); }

@media (max-width: 767px) {
  .ps-gpad-matrix { min-width: 760px; }
}
