/* =============================================================
   products-show.css — Product detail page specific styles
   ============================================================= */

/* ── Hero ─────────────────────────────────────────── */
.ps-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
    border-bottom: 1.5px solid var(--border);
    position: relative;
}
.ps-hero-left {
    padding: 56px 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border-right: 1.5px solid var(--border);
}
.ps-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.18s;
}
.ps-back:hover {
    color: var(--ink);
}
.ps-back svg {
    width: 13px;
    height: 13px;
}
.ps-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.ps-eyebrow span {
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--accent);
}
.ps-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -0.8px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
}
.ps-title em {
    font-style: italic;
    color: var(--accent);
}
.ps-tagline {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.ps-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.72;
    max-width: 440px;
    margin-bottom: 24px;
}
/* status pill */
.ps-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 4px;
    margin-bottom: 24px;
    align-self: flex-start;
}
.ps-status.live {
    background: rgba(22, 101, 52, 0.1);
    color: #16a34a;
    border: 1px solid rgba(22, 101, 52, 0.24);
}
.ps-status.beta {
    background: rgba(100, 100, 100, 0.1);
    color: var(--muted);
    border: 1px solid var(--border);
}
.ps-status.free {
    background: rgba(212, 65, 11, 0.1);
    color: var(--accent);
    border: 1px solid rgba(212, 65, 11, 0.22);
}
.ps-status.soon {
    background: rgba(100, 100, 100, 0.1);
    color: var(--muted);
    border: 1px solid var(--border);
}
.ps-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: psBlink 1.8s ease-in-out infinite;
}
@keyframes psBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
/* action buttons */
.ps-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ps-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "DM Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.18s;
    border: 1.5px solid transparent;
}
.ps-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.ps-btn.fill {
    background: var(--ink);
    color: var(--bg);
}
.ps-btn.fill:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.ps-btn.outline {
    border-color: var(--border);
    color: var(--muted);
    background: transparent;
}
.ps-btn.outline:hover {
    border-color: var(--ink);
    color: var(--ink);
}
/* stats row */
.ps-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.pss {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.pss-n {
    font-family: "DM Serif Display", serif;
    font-size: 24px;
    letter-spacing: -0.4px;
    color: var(--ink);
    line-height: 1;
}
.pss-n sup {
    font-size: 13px;
    color: var(--accent);
}
.pss-l {
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Hero right (cover image) ─────────────────────── */
.ps-hero-right {
    position: relative;
    overflow: hidden;
    background: var(--card);
    min-height: 460px;
    display: flex;
    align-items: stretch;
}
.ps-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.ps-hero:hover .ps-cover {
    transform: scale(1.03);
}
.ps-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--ink-rgb, 15, 15, 15), 0.06) 0%,
        transparent 60%
    );
    z-index: 1;
}
/* fallback when no screenshot */
.ps-cover-fallback {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    background: var(--card);
    background-image: radial-gradient(
        circle,
        rgba(128, 128, 128, 0.055) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    min-height: 460px;
}
.ps-cover-icon {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.ps-cover-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
/* image count badge */
.ps-img-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(8px);
}

/* ── Breadcrumb strip ─────────────────────────────── */
.ps-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 52px;
    height: 46px;
    border-bottom: 1.5px solid var(--border);
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--muted);
}
.ps-strip a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}
.ps-strip a:hover {
    color: var(--ink);
}
.ps-strip-sep {
    opacity: 0.35;
}

/* ═══ Main layout ═══════════════════════════════════ */
.ps-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    align-items: start;
}

/* ── Sections ─────────────────────────────────────── */
.ps-section {
    padding: 56px 52px;
    border-bottom: 1.5px solid var(--border);
}
.ps-sec-label {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.ps-sec-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(26px, 2.8vw, 36px);
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 32px;
}
.ps-sec-title em {
    font-style: italic;
    color: var(--accent);
}

/* ── Screenshots ─────────────────────────────────── */
.ps-sc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ps-sc-grid .sc-big {
    grid-column: 1 / -1;
}
.ps-sc-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    cursor: zoom-in;
    background: var(--card);
    transition:
        border-color 0.2s,
        transform 0.22s;
    aspect-ratio: 16/9;
}
.ps-sc-item:hover {
    border-color: rgba(212, 65, 11, 0.38);
    transform: translateY(-2px);
}
.ps-sc-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.ps-sc-item:hover img {
    transform: scale(1.04);
}
.ps-sc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 10px;
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        transparent 100%
    );
}

/* ── Overview ─────────────────────────────────────── */
.ps-ov-body {
    font-size: 15px;
    line-height: 1.78;
    color: var(--muted);
    max-width: 680px;
}
.ps-ov-body p {
    margin-bottom: 16px;
}
.ps-ov-body p:last-child {
    margin-bottom: 0;
}
.ps-ov-body strong {
    color: var(--ink);
    font-weight: 600;
}
.ps-ov-body h2,
.ps-ov-body h3 {
    font-family: "DM Serif Display", serif;
    color: var(--ink);
    margin: 24px 0 10px;
    letter-spacing: -0.3px;
}
.ps-ov-body ul,
.ps-ov-body ol {
    padding-left: 20px;
    margin: 12px 0;
}
.ps-ov-body li {
    margin-bottom: 6px;
}

/* ── Features ─────────────────────────────────────── */
.ps-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ps-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    transition:
        border-color 0.18s,
        transform 0.18s;
}
.ps-feat-item:hover {
    border-color: rgba(212, 65, 11, 0.28);
    transform: translateY(-2px);
}
.ps-feat-ico {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(212, 65, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.ps-feat-ico svg {
    width: 13px;
    height: 13px;
    color: var(--accent);
}
.ps-feat-text {
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 500;
}

/* ── Pricing ──────────────────────────────────────── */
.ps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.ps-pr-card {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--card);
    transition:
        border-color 0.2s,
        transform 0.22s;
}
.ps-pr-card:hover {
    border-color: rgba(212, 65, 11, 0.3);
    transform: translateY(-3px);
}
.ps-pr-card.featured {
    border-color: var(--accent);
    background: var(--ink);
    transform: translateY(-4px);
}
.ps-pr-head {
    padding: 22px 22px 0;
    position: relative;
}
.ps-pr-badge {
    display: inline-block;
    font-family: "DM Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    background: var(--accent);
    color: #fff;
    margin-bottom: 10px;
}
.ps-pr-name {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin-bottom: 4px;
}
.ps-pr-card.featured .ps-pr-name {
    color: #fff;
}
.ps-pr-price-wrap {
    padding: 16px 22px 18px;
    border-bottom: 1px solid var(--border);
}
.ps-pr-card.featured .ps-pr-price-wrap {
    border-color: rgba(255, 255, 255, 0.12);
}
.ps-pr-price {
    font-family: "DM Serif Display", serif;
    font-size: 32px;
    letter-spacing: -0.6px;
    color: var(--ink);
    line-height: 1;
}
.ps-pr-card.featured .ps-pr-price {
    color: #fff;
}
.ps-pr-per {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-top: 4px;
}
.ps-pr-card.featured .ps-pr-per {
    color: rgba(255, 255, 255, 0.5);
}
.ps-pr-feats {
    padding: 16px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.ps-pr-feat {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
}
.ps-pr-feat svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--accent);
}
.ps-pr-card.featured .ps-pr-feat {
    color: rgba(255, 255, 255, 0.7);
}
.ps-pr-card.featured .ps-pr-feat svg {
    color: rgba(212, 65, 11, 0.8);
}
.ps-pr-foot {
    padding: 16px 22px 22px;
    margin-top: auto;
}
.ps-pr-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.18s;
    border: 1.5px solid var(--border);
    color: var(--ink);
    background: transparent;
}
.ps-pr-btn:hover {
    border-color: var(--ink);
}
.ps-pr-btn svg {
    width: 11px;
    height: 11px;
}
.ps-pr-card.featured .ps-pr-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.ps-pr-card.featured .ps-pr-btn:hover {
    opacity: 0.88;
}

/* Dark mode: featured card has cream bg (from --ink), use dark text for contrast */
[data-theme="dark"] .ps-pr-card.featured .ps-pr-name {
    color: #111110;
}
[data-theme="dark"] .ps-pr-card.featured .ps-pr-price {
    color: #111110;
}
[data-theme="dark"] .ps-pr-card.featured .ps-pr-per {
    color: rgba(0, 0, 0, 0.55);
}
[data-theme="dark"] .ps-pr-card.featured .ps-pr-feat {
    color: rgba(0, 0, 0, 0.7);
}
[data-theme="dark"] .ps-pr-card.featured .ps-pr-feat svg {
    color: var(--accent);
}
[data-theme="dark"] .ps-pr-card.featured .ps-pr-price-wrap {
    border-color: rgba(0, 0, 0, 0.12);
}
[data-theme="dark"] .ps-pr-card.featured .ps-pr-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ── Reviews ──────────────────────────────────────── */
.ps-rv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.ps-rv-card {
    padding: 22px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.18s;
}
.ps-rv-card:hover {
    border-color: rgba(212, 65, 11, 0.2);
}
.ps-rv-stars {
    display: flex;
    gap: 3px;
}
.ps-rv-star {
    width: 13px;
    height: 13px;
    fill: var(--accent);
}
.ps-rv-star.dim {
    fill: var(--border);
}
.ps-rv-quote {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    quotes: "\201C" "\201D";
}
.ps-rv-quote::before {
    content: open-quote;
    color: var(--accent);
    font-size: 20px;
    line-height: 0;
    vertical-align: -5px;
    margin-right: 2px;
}
.ps-rv-author {
    display: flex;
    align-items: center;
    gap: 11px;
}
.ps-rv-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Serif Display", serif;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.ps-rv-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.ps-rv-role {
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── FAQ ──────────────────────────────────────────── */
.ps-faq-list {
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.ps-faq-item {
    border-bottom: 1.5px solid var(--border);
}
.ps-faq-item:last-child {
    border-bottom: none;
}
.ps-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    font-family: "DM Serif Display", serif;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: var(--ink);
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}
.ps-faq-q:hover {
    background: var(--card);
}
.ps-faq-q svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.25s;
}
.ps-faq-item.open .ps-faq-q svg {
    transform: rotate(45deg);
    color: var(--accent);
}
.ps-faq-item.open .ps-faq-q {
    background: var(--card);
}
.ps-faq-a {
    font-size: 13.5px;
    line-height: 1.72;
    color: var(--muted);
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.32s ease,
        padding 0.32s ease;
}
.ps-faq-item.open .ps-faq-a {
    max-height: 400px;
    padding: 0 22px 20px;
}

/* ═══ Sidebar ═══════════════════════════════════════ */
.ps-sidebar {
    border-left: 1.5px solid var(--border);
    position: sticky;
    top: 60px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}
.ps-sidebar::-webkit-scrollbar {
    width: 0;
}
.ps-sb-block {
    padding: 28px 28px;
    border-bottom: 1.5px solid var(--border);
}
.ps-sb-lbl {
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
/* CTA block */
.ps-sb-cta-title {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.2;
}
.ps-sb-cta-tag {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}
.ps-sb-price {
    font-family: "DM Serif Display", serif;
    font-size: 28px;
    letter-spacing: -0.5px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 3px;
}
.ps-sb-per {
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.ps-sb-feats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.ps-sb-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
}
.ps-sb-feat svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--accent);
}
.ps-sb-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    font-family: "DM Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--bg);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.18s;
}
.ps-sb-cta-btn:hover {
    background: var(--accent);
}
.ps-sb-cta-btn svg {
    width: 11px;
    height: 11px;
}
/* info rows */
.ps-sb-rows {
    display: flex;
    flex-direction: column;
}
.ps-sb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    gap: 10px;
}
.ps-sb-row:last-child {
    border-bottom: none;
}
.ps-sb-row-k {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
}
.ps-sb-row-v {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    text-align: right;
}
.ps-sb-row-v.green {
    color: #16a34a;
}
.ps-sb-row-v a {
    color: var(--accent);
    text-decoration: none;
}
.ps-sb-row-v a:hover {
    text-decoration: underline;
}
/* tech chips */
.ps-sb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ps-sb-chip {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.4px;
    padding: 4px 10px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    color: var(--muted);
    transition:
        border-color 0.15s,
        color 0.15s;
}
.ps-sb-chip:hover {
    border-color: var(--ink);
    color: var(--ink);
}
/* related */
.ps-related-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.ps-rel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.18s;
}
.ps-rel-item:last-child {
    border-bottom: none;
}
.ps-rel-item:hover {
    opacity: 0.75;
}
.ps-rel-vis {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--card);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.ps-rel-vis img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps-rel-name {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2px;
}
.ps-rel-tag {
    font-family: "DM Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
    .ps-hero {
        grid-template-columns: 1fr;
    }
    .ps-hero-left {
        padding: 36px 28px 36px;
        border-right: none;
        border-bottom: 1.5px solid var(--border);
    }
    .ps-hero-right {
        min-height: 260px;
    }
    .ps-strip {
        padding: 0 28px;
    }
    .ps-layout {
        grid-template-columns: 1fr;
    }
    .ps-sidebar {
        border-left: none;
        border-top: 1.5px solid var(--border);
        position: static;
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .ps-section {
        padding: 40px 28px;
    }
    .ps-sc-grid,
    .ps-feat-grid,
    .ps-rv-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 580px) {
    .ps-sidebar {
        grid-template-columns: 1fr;
    }
    .ps-pricing-grid {
        grid-template-columns: 1fr;
    }
    .ps-pr-card.featured {
        transform: none;
    }
}
@media (max-width: 480px) {
    .ps-hero-left {
        padding: 24px 16px;
    }
    .ps-strip {
        padding: 0 16px;
    }
    .ps-section {
        padding: 28px 16px;
    }
    .ps-stats {
        gap: 16px;
        margin-top: 16px;
        padding-top: 16px;
    }
}
