/* WeCreat Product Support — Frontend Styles */

.wc-ps-wrap {
  --wc-accent: #8100F5;
  --wc-accent-light: #a855f7;
  --wc-accent-bg: #f3e8ff;
  --wc-bg: #f8fafc;
  --wc-card-bg: #ffffff;
  --wc-text: #1e293b;
  --wc-text-secondary: #64748b;
  --wc-border: #e2e8f0;
  --wc-radius: 16px;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--wc-text);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.wc-ps-wrap *, .wc-ps-wrap *::before, .wc-ps-wrap *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

/* ── Hero ── */
.wc-ps-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #f0e6ff 0%, #e8dff5 40%, #f5f0ff 100%);
  border-radius: 20px;
  padding: 48px 56px;
  margin-bottom: 48px;
  overflow: hidden;
  position: relative;
}
.wc-ps-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(129,0,245,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.wc-ps-hero__body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.wc-ps-hero__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wc-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.wc-ps-hero__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--wc-text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.wc-ps-hero__title span { color: var(--wc-accent); }
.wc-ps-hero__subtitle {
  font-size: 1rem;
  color: var(--wc-text-secondary);
  margin-bottom: 24px;
}
.wc-ps-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--wc-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(129,0,245,.3);
}
.wc-ps-hero__cta:hover {
  background: #6d00d0;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(129,0,245,.4);
}
.wc-ps-hero__cta svg { width: 18px; height: 18px; }
.wc-ps-hero__img {
  flex-shrink: 0;
  width: 260px;
  position: relative;
  z-index: 1;
}
.wc-ps-hero__img img {
  width: 100%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.1));
}

/* ── Quick Links ── */
.wc-ps-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.wc-ps-quick-card {
  background: var(--wc-card-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 24px 20px;
  text-decoration: none;
  color: var(--wc-text);
  transition: all 0.25s ease;
}
.wc-ps-quick-card:hover {
  border-color: var(--wc-accent-light);
  box-shadow: 0 4px 16px rgba(129,0,245,.12);
  transform: translateY(-2px);
}
.wc-ps-quick-card__icon { width: 40px; height: 40px; margin-bottom: 14px; }
.wc-ps-quick-card__icon svg { width: 32px; height: 32px; }
.wc-ps-quick-card__name { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.wc-ps-quick-card__desc { font-size: 0.8rem; line-height: 1.5; color: var(--wc-text-secondary); margin-bottom: 10px; }
.wc-ps-quick-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wc-accent);
  transition: gap 0.2s ease;
}
.wc-ps-quick-card:hover .wc-ps-quick-card__link { gap: 8px; }
.wc-ps-quick-card__link svg { width: 14px; height: 14px; }

/* ── Section Title ── */
.wc-ps-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.wc-ps-section-title__text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wc-text);
}
.wc-ps-section-title__nav { display: flex; gap: 8px; }
.wc-ps-section-title__nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--wc-border);
  background: var(--wc-card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--wc-text-secondary);
}
.wc-ps-section-title__nav button:hover { border-color: var(--wc-accent); color: var(--wc-accent); }
.wc-ps-section-title__nav button svg { width: 16px; height: 16px; }

/* ── Top Articles Carousel ── */
.wc-ps-articles-wrap { margin-bottom: 56px; overflow: hidden; }
.wc-ps-articles {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.wc-ps-articles::-webkit-scrollbar { display: none; }
.wc-ps-article-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--wc-card-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 24px 20px;
  text-decoration: none;
  color: var(--wc-text);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.wc-ps-article-card:hover {
  border-color: var(--wc-accent-light);
  box-shadow: 0 4px 16px rgba(129,0,245,.1);
  transform: translateY(-2px);
}
.wc-ps-article-card__num {
  position: absolute;
  bottom: 8px; right: 16px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(129,0,245,.06);
  line-height: 1;
}
.wc-ps-article-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
  color: var(--wc-text);
  position: relative;
}
.wc-ps-article-card__date {
  font-size: 0.75rem;
  color: var(--wc-text-secondary);
  position: relative;
}

/* ── Watch & Learn ── */
.wc-ps-videos-section { margin-bottom: 56px; }
.wc-ps-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wc-ps-video-card {
  text-decoration: none;
  color: var(--wc-text);
  transition: transform 0.25s ease;
}
.wc-ps-video-card:hover { transform: translateY(-3px); }
.wc-ps-video-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  margin-bottom: 12px;
}
.wc-ps-video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.wc-ps-video-card:hover .wc-ps-video-card__thumb img { opacity: 1; }
.wc-ps-video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.wc-ps-video-card__play svg { width: 20px; height: 20px; margin-left: 2px; }
.wc-ps-video-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--wc-text);
}

/* ── KB Articles (tabbed / grouped) ── */
.wc-ps-kb-section { margin-bottom: 56px; }
.wc-ps-cat-tabs-wrap {
  position: relative;
  margin-bottom: 32px;
}
.wc-ps-cat-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--wc-border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
}
.wc-ps-cat-tabs::-webkit-scrollbar { display: none; }
.wc-ps-cat-tab {
  flex-shrink: 0;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wc-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  scroll-snap-align: start;
}
.wc-ps-cat-tab:hover { color: var(--wc-accent); }
.wc-ps-cat-tab.active {
  color: var(--wc-accent);
  border-bottom-color: var(--wc-accent);
}
.wc-ps-cat-panel { display: none; animation: wcpsFadeIn .3s ease; }
.wc-ps-cat-panel.active { display: block; }
@keyframes wcpsFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.wc-ps-article-group {
  background: var(--wc-bg);
  border-radius: var(--wc-radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.wc-ps-article-group__title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--wc-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wc-border);
}
.wc-ps-article-group__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  list-style: none;
}
.wc-ps-article-group__list li { padding: 0; }
.wc-ps-article-group__list a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--wc-accent);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s ease;
}
.wc-ps-article-group__list a::before {
  content: "\2022";
  color: var(--wc-accent);
  font-weight: 700;
  flex-shrink: 0;
}
.wc-ps-article-group__list a:hover { color: #6d00d0; text-decoration: underline; }

.wc-ps-view-all {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.wc-ps-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wc-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.wc-ps-view-all a:hover { color: var(--wc-accent); }
.wc-ps-view-all a svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════
 * Product Support Tabs (homepage)
 * ══════════════════════════════════════════════ */
.wc-ps-support {
  margin-bottom: 64px;
}
.wc-ps-support__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.wc-ps-support-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.wc-ps-support-tab {
  position: relative;
  padding: 10px 28px;
  font-size: 0.938rem;
  font-weight: 600;
  border: 2px solid var(--wc-border);
  border-radius: 999px;
  background: transparent;
  color: var(--wc-text-secondary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.wc-ps-support-tab:hover {
  border-color: var(--wc-accent-light);
  color: var(--wc-accent);
}
.wc-ps-support-tab.active {
  background: var(--wc-accent);
  border-color: var(--wc-accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(129,0,245,.35);
}
.wc-ps-support-panel { display: none; animation: wcpsFadeIn .35s ease; }
.wc-ps-support-panel.active { display: block; }

.wc-ps-support-section { margin-bottom: 40px; }
.wc-ps-support-section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wc-accent);
  margin-bottom: 20px;
  padding-left: 4px;
}
.wc-ps-support-section__label::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-light));
}
.wc-ps-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.wc-ps-support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--wc-card-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 28px 20px 22px;
  text-decoration: none;
  color: var(--wc-text);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.wc-ps-support-card:hover {
  border-color: var(--wc-accent-light);
  box-shadow: 0 4px 16px rgba(129,0,245,.18), 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.wc-ps-support-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--wc-bg);
}
.wc-ps-support-card__img-wrap img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  transition: transform .3s ease;
}
.wc-ps-support-card:hover .wc-ps-support-card__img-wrap img { transform: scale(1.06); }
.wc-ps-support-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: var(--wc-text);
}
.wc-ps-support-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--wc-text-secondary);
}
.wc-ps-support-empty__icon { font-size: 3rem; margin-bottom: 16px; opacity: .5; }
.wc-ps-support-empty__text { font-size: 1.125rem; font-weight: 500; }

/* ══════════════════════════════════════════════
 * Service Portal
 * ══════════════════════════════════════════════ */
.wc-ps-services {
  margin-bottom: 64px;
}
.wc-ps-services__divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wc-border) 20%, var(--wc-border) 80%, transparent);
  margin-bottom: 48px;
}
.wc-ps-services__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--wc-text);
  margin-bottom: 40px;
}
.wc-ps-svc-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.wc-ps-svc-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--wc-card-bg);
  border: 1px solid var(--wc-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--wc-text);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.wc-ps-svc-feat:hover {
  border-color: var(--wc-accent-light);
  box-shadow: 0 4px 16px rgba(129,0,245,.15), 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-3px);
}
.wc-ps-svc-feat__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-light));
}
.wc-ps-svc-feat__icon svg { width: 24px; height: 24px; }
.wc-ps-svc-feat__body { flex: 1; min-width: 0; }
.wc-ps-svc-feat__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--wc-text);
}
.wc-ps-svc-feat__desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--wc-text-secondary);
}
.wc-ps-svc-all { /* native <details> */ }
.wc-ps-svc-all__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  padding: 4px 4px 4px 4px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  color: var(--wc-accent);
  transition: opacity 0.2s ease;
}
.wc-ps-svc-all__summary::-webkit-details-marker { display: none; }
.wc-ps-svc-all__summary::marker { content: ""; }
.wc-ps-svc-all__summary:hover { opacity: 0.75; }
.wc-ps-svc-all__summary:focus-visible {
  outline: 2px solid var(--wc-accent-light);
  outline-offset: 2px;
  border-radius: 6px;
}
.wc-ps-svc-all__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wc-accent);
}
.wc-ps-svc-all__label::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--wc-accent), var(--wc-accent-light));
}
.wc-ps-svc-all__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wc-accent-bg);
  transition: transform 0.25s ease;
}
.wc-ps-svc-all__toggle svg { width: 16px; height: 16px; }
.wc-ps-svc-all[open] .wc-ps-svc-all__toggle { transform: rotate(180deg); }
.wc-ps-svc-all[open] .wc-ps-svc-grid { animation: wcpsFadeIn .3s ease; }
.wc-ps-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wc-ps-svc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--wc-card-bg);
  border: 1px solid var(--wc-border);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--wc-text);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.wc-ps-svc-item:hover {
  border-color: var(--wc-accent-light);
  box-shadow: 0 2px 12px rgba(129,0,245,.12);
  transform: translateY(-2px);
}
.wc-ps-svc-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wc-accent-bg);
}
.wc-ps-svc-item__icon svg { width: 20px; height: 20px; }
.wc-ps-svc-item__body { flex: 1; min-width: 0; }
.wc-ps-svc-item__name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--wc-text);
}
.wc-ps-svc-item__desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--wc-text-secondary);
}

/* ══════════════════════════════════════════════
 * Contact Us
 * ══════════════════════════════════════════════ */
.wc-ps-contact {
  margin-bottom: 64px;
}
.wc-ps-contact__divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wc-border) 20%, var(--wc-border) 80%, transparent);
  margin-bottom: 48px;
}
.wc-ps-contact__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--wc-text);
  margin-bottom: 40px;
}
.wc-ps-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.wc-ps-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #faf5ff;
  border: 1px solid #ede9fe;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.wc-ps-contact-card:hover {
  box-shadow: 0 4px 20px rgba(129,0,245,.1);
  transform: translateY(-2px);
}
.wc-ps-contact-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-ps-contact-card__icon svg { width: 40px; height: 40px; }
.wc-ps-contact-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wc-text);
  margin-bottom: 12px;
}
.wc-ps-contact-card__info {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--wc-text-secondary);
  margin-bottom: 4px;
}
.wc-ps-contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wc-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.wc-ps-contact-card__link:hover { gap: 8px; }
.wc-ps-contact-card__link svg { width: 16px; height: 16px; }

/* ── YouTube Lightbox ── */
.wc-ps-video-card--yt { cursor: pointer; }
.wc-ps-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.wc-ps-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.wc-ps-lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.wc-ps-lightbox.active .wc-ps-lightbox__inner {
  transform: scale(1);
}
.wc-ps-lightbox__inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.wc-ps-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.wc-ps-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .wc-ps-hero { flex-direction: column; text-align: center; padding: 36px 28px; gap: 24px; }
  .wc-ps-hero__img { width: 200px; }
  .wc-ps-quick { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wc-ps-videos { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wc-ps-article-group__list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wc-ps-support__title,
  .wc-ps-services__title,
  .wc-ps-contact__title { font-size: 1.75rem; margin-bottom: 24px; }
  .wc-ps-support-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    margin: 0 -16px 32px;
    padding: 0 16px 8px;
    scrollbar-width: none;
  }
  .wc-ps-support-tabs::-webkit-scrollbar { display: none; }
  .wc-ps-support-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 22px;
    font-size: 0.85rem;
  }
  .wc-ps-support-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wc-ps-support-card { padding: 16px 12px 14px; border-radius: 12px; }
  .wc-ps-support-card__name { font-size: 0.8rem; }

  .wc-ps-services__divider,
  .wc-ps-contact__divider { margin-bottom: 36px; }
  .wc-ps-svc-featured { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .wc-ps-svc-feat { padding: 20px 18px; }
  .wc-ps-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wc-ps-svc-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    gap: 8px;
  }
  .wc-ps-svc-item__icon { width: 36px; height: 36px; border-radius: 8px; }
  .wc-ps-svc-item__icon svg { width: 18px; height: 18px; }
  .wc-ps-svc-item__name { font-size: 0.82rem; }
  .wc-ps-svc-item__desc { font-size: 0.72rem; }

  .wc-ps-contact__grid { grid-template-columns: 1fr; gap: 16px; }
  .wc-ps-contact-card { padding: 32px 20px; }
}
@media (max-width: 580px) {
  .wc-ps-wrap { padding: 0 16px 48px; }
  .wc-ps-hero { padding: 28px 20px; border-radius: 16px; }
  .wc-ps-hero__title { font-size: 1.5rem; }
  .wc-ps-hero__img { width: 160px; }
  .wc-ps-quick { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wc-ps-quick-card { padding: 18px 14px; }
  .wc-ps-quick-card__desc { display: none; }
  .wc-ps-article-card { flex: 0 0 220px; padding: 20px 16px; }
  .wc-ps-videos { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wc-ps-video-card__play { width: 36px; height: 36px; }
  .wc-ps-video-card__play svg { width: 14px; height: 14px; }
  .wc-ps-cat-tab { padding: 10px 16px; font-size: 0.82rem; }
  .wc-ps-article-group { padding: 20px 16px; }
  .wc-ps-section-title__text { font-size: 1.25rem; }
}
