/* ============================================================================
   Single product page (/product/{slug})
   Ported from the Figma export at /figma/single-product.
   Dark (default) + light themes via [data-theme]. All styling lives here —
   no inline or internal CSS. Brand: #ff6a3a / #f28967.
   ========================================================================== */

:root {
    --pd-brand: #ff6a3a;
    --pd-brand-2: #f28967;
    --pd-brand-soft: rgba(255, 106, 58, 0.12);
    --pd-brand-line: rgba(255, 106, 58, 0.2);
}

:root[data-theme="dark"] {
    --pd-bg: #262626;
    --pd-nav-bg: rgba(38, 38, 38, 0.8);
    --pd-surface: rgba(255, 255, 255, 0.03);
    --pd-surface-2: rgba(255, 255, 255, 0.06);
    --pd-text: #ffffff;
    --pd-muted: rgba(255, 255, 255, 0.5);
    --pd-muted-2: rgba(255, 255, 255, 0.4);
    --pd-muted-3: rgba(255, 255, 255, 0.3);
    --pd-border: rgba(255, 255, 255, 0.07);
    --pd-border-2: rgba(255, 255, 255, 0.12);
    --pd-code-bg: #181818;
    --pd-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    --card-bg: linear-gradient(180deg, #131318, #0f0f13);
}

:root[data-theme="light"] {
    --pd-bg: #f5f6f8;
    --pd-nav-bg: rgba(255, 255, 255, 0.85);
    --pd-surface: #ffffff;
    --pd-surface-2: rgba(0, 0, 0, 0.04);
    --pd-text: #18181b;
    --pd-muted: #52525b;
    --pd-muted-2: #71717a;
    --pd-muted-3: #a1a1aa;
    --pd-border: rgba(0, 0, 0, 0.09);
    --pd-border-2: rgba(0, 0, 0, 0.14);
    --pd-code-bg: #1c1c1c;
    --pd-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    --card-bg: linear-gradient(180deg, #f8f8f8, #fefefe);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.pd-body {
    margin: 0;
    background: var(--pd-bg);
    color: var(--pd-text);
    font-family: 'YekanBakh', ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.pd-page {
    position: relative;
}

/* ------------------------------- Buttons -------------------------------- */
.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.pd-btn--primary {
    background: linear-gradient(135deg, var(--pd-brand), var(--pd-brand-2));
    color: #fff;
    box-shadow: 0 6px 28px rgba(255, 106, 58, 0.4);
}

.pd-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(255, 106, 58, 0.5);
}

.pd-btn--ghost {
    background: var(--pd-surface);
    border: 1px solid var(--pd-border-2);
    color: var(--pd-text);
    font-weight: 600;
}

.pd-btn--ghost:hover {
    background: var(--pd-surface-2);
}

.kc-eyebrow {
    display: inline-flex;
    align-self: center;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--pd-brand-soft);
    border: 1px solid var(--pd-brand-line);
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--pd-brand-2) !important;
}

.pd-chip {
    display: inline-flex;
    align-self: center;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--pd-brand-soft);
    border: 1px solid var(--pd-brand-line);
    font-size: 12px;
    font-weight: 600;
    color: var(--pd-brand-2);
}

.pd-feature-inner .pd-chip {
    align-self: flex-start;
}

.pd-accent {
    color: var(--pd-brand);
}

.pd-grad {
    display: block;
    background: linear-gradient(135deg, #ff6a3a 0%, #f28967 60%, #ffb899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pd-sec-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0;
}

/* -------------------------- Theme toggle button ------------------------- */
.pd-theme-toggle {
    position: fixed;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--pd-border-2);
    background: var(--pd-surface);
    color: var(--pd-text);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, border-color 0.2s ease, background 0.3s ease;
}

.pd-theme-toggle:hover {
    transform: translateY(-50%) scale(1.08);
    border-color: var(--pd-brand);
}

.pd-theme-ic {
    display: none;
}

.pd-theme-ic svg {
    width: 20px;
    height: 20px;
    display: block;
}

:root[data-theme="dark"] .pd-theme-ic--sun {
    display: inline-flex;
}

:root[data-theme="light"] .pd-theme-ic--moon {
    display: inline-flex;
}

/* -------------------------------- Navbar -------------------------------- */
.pd-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    background: var(--pd-nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pd-border);
}

.pd-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.pd-nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6a3a, #f28967);
    box-shadow: 0 4px 12px rgba(255, 106, 58, 0.35);
}

.pd-nav-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.pd-nav-name {
    font-weight: 800;
    font-size: 15px;
    color: var(--pd-text);
}

.pd-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pd-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--pd-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.pd-nav-links a:hover {
    color: var(--pd-text);
}

.pd-nav-cta {
    padding: 9px 20px;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6a3a, #f28967);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(255, 106, 58, 0.35);
    transition: transform 0.15s;
}

.pd-nav-cta:hover {
    transform: translateY(-1px);
}

/* --------------------------------- Hero --------------------------------- */
.pd-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.pd-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(var(--pd-border) 1px, transparent 1px), linear-gradient(90deg, var(--pd-border) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

.pd-hero-glows {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pd-hero-glows span {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.pd-hero-glows span:nth-child(1) {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255, 106, 58, 0.1) 0%, transparent 65%);
}

.pd-hero-glows span:nth-child(2) {
    top: 48%;
    left: 12%;
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(242, 137, 103, 0.06) 0%, transparent 70%);
}

.pd-hero-glows span:nth-child(3) {
    top: 40%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(255, 106, 58, 0.05) 0%, transparent 70%);
}

.pd-hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(255, 106, 58, 0.08);
    border: 1px solid var(--pd-brand-line);
    font-size: 12px;
    font-weight: 600;
    color: var(--pd-brand-2);
}

.pd-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pd-brand);
    box-shadow: 0 0 6px var(--pd-brand);
    animation: pd-pulse 2s infinite;
}

@keyframes pd-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.pd-hero-title {
    position: relative;
    max-width: 820px;
    margin: 0 0 24px;
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pd-hero-title span {
    display: block;
}

.pd-hero-sub {
    position: relative;
    max-width: 560px;
    margin: 0 0 44px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--pd-muted);
}

.pd-hero-btns {
    position: relative;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 72px;
}

.pd-hero-stats {
    position: relative;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.pd-stat {
    text-align: center;
}

.pd-stat-val {
    font-size: 26px;
    font-weight: 900;
    color: var(--pd-brand);
    letter-spacing: -0.02em;
}

.pd-stat-lbl {
    font-size: 12px;
    color: var(--pd-muted-2);
    margin-top: 4px;
    font-weight: 500;
}

/* -------------------------------- Feature ------------------------------- */
.pd-feature {
    padding: 100px 64px;
}

.pd-feature-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pd-code-wrap {
    position: relative;
}

.pd-code {
    border-radius: 20px;
    overflow: hidden;
    background: var(--pd-code-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 1px rgba(255, 106, 58, 0.08), 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 106, 58, 0.06);
}

.pd-code-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-dot-r, .pd-dot-y, .pd-dot-g {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.pd-dot-r {
    background: #ff5f57;
}

.pd-dot-y {
    background: #ffbd2e;
}

.pd-dot-g {
    background: #28c840;
}

.pd-code-endpoint {
    flex: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 12px;
    border-radius: 6px;
}

.pd-code-body {
    /* Firefox JSON viewer palette (override per product/theme if needed) */
    --code-fg: #f2f2f2;
    --number-color: #86de74;
    --string-color: #ff7de9;
    --null-color: #939395;
    --theme-highlight-blue: #75bfff;
    --punctuation-color: rgba(255, 255, 255, 0.45);

    display: flex;
    gap: 20px;
    padding: 24px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12.5px;
    line-height: 1.85;
    overflow-x: auto;
    direction: ltr;
}

.pd-code-gutter {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.15);
    text-align: right;
    min-width: 18px;
    user-select: none;
}

.pd-code-src {
    margin: 0;
    color: var(--code-fg, #f2f2f2);
    white-space: pre;
    font-family: inherit;
    tab-size: 4;
}

/* --- JSON tokens --- */
.pd-j-key {
    color: var(--theme-highlight-blue, #75bfff);
}

.pd-j-str {
    color: var(--string-color, #ff7de9);
}

.pd-j-num,
.pd-j-bool {
    color: var(--number-color, #86de74);
}

.pd-j-null {
    color: var(--null-color, #939395);
}

.pd-j-punc {
    color: var(--punctuation-color, rgba(255, 255, 255, 0.45));
}

.pd-code-status {
    display: flex;
    gap: 16px;
    padding: 8px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    direction: ltr;
}

.pd-code-ok {
    color: #28c840;
}

.pd-code-charset {
    margin-inline-start: auto;
}

.pd-code-ping {
    position: absolute;
    bottom: -33px;
    left: -16px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6a3a, #f28967);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(255, 106, 58, 0.4);
}

.pd-feature-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-feature-title {
    font-size: clamp(28px, 3vw, 33px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.025em;
    margin: 0;
}

.pd-feature-para {
    font-size: 15px;
    line-height: 1.8;
    color: var(--pd-muted);
    margin: 0;
}

.pd-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.pd-feature-li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--pd-text);
    font-weight: 500;
}

.pd-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--pd-brand);
    background: rgba(255, 106, 58, 0.12);
    border: 1px solid rgba(255, 106, 58, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* -------------------------------- Pricing ------------------------------- */
.pd-pricing {
    position: relative;
    padding: 40px 24px;
}

.pd-pricing-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.pd-pricing-inner .kc-card {
    background: var(--card-bg);
}

/* The non-purchasable free plan needs readable muted tones in light mode too. */
:root[data-theme="light"] .pd-pricing-inner .kc-btn--free {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: #52525b;
}

:root[data-theme="light"] .pd-pricing-inner .kc-btn--free:hover {
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.2);
    color: #18181b;
}

:root[data-theme="light"] .pd-pricing-inner .kc-free-note {
    color: #71717a;
}

.pd-pricing-inner .kc-pricing .kc-sub {
    font-size: 14px;
    color: var(--pd-muted);
}

.pd-pricing-inner .kc-pricing h2 {
    font-size: clamp(28px, 3vw, 33px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.025em;
    margin: 8px 0 0;
    color: var(--pd-text);
}

/* Neutralise the standalone-page top padding of the reused plan block. */
.pd-pricing .kc-pricing {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* --------------------------------- Trust -------------------------------- */
.pd-trust {
    padding: 100px 64px;
}

.pd-trust-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.pd-trust-head {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pd-trust-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #231c15 0%, #1c1c1c 45%, #18201e 100%);
    border: 1px solid rgba(242, 137, 103, 0.12);
    box-shadow: 0 0 0 1px rgba(242, 137, 103, 0.06), 0 0 80px rgba(242, 137, 103, 0.08), 0 40px 80px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 420px 1fr;
}

:root[data-theme="light"] .pd-trust-box {
    background: linear-gradient(135deg, #fff 0%, #fbf6f3 100%);
}

.pd-trust-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.pd-trust-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.6);
    display: block;
}

.pd-trust-media-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #1c1c1c 0%, rgba(28, 28, 28, 0.3) 40%, transparent 100%);
}

:root[data-theme="light"] .pd-trust-media-fade {
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.3) 40%, transparent 100%);
}

.pd-trust-uptime {
    position: absolute;
    bottom: 28px;
    right: 28px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(242, 137, 103, 0.25);
    text-align: center;
}

.pd-trust-uptime-val {
    font-size: 28px;
    font-weight: 900;
    color: var(--pd-brand-2);
    line-height: 1;
}

.pd-trust-uptime-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.pd-trust-content {
    padding: 48px 48px 48px 40px;
}

:root[data-theme="light"] .pd-trust-content {
    color: #18181b;
}


.pd-trust-intro-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.pd-trust-intro-title .pd-accent {
    display: block;
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.4;
}

.pd-trust-intro-text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--pd-muted);
    margin: 0 0 32px;
}

.pd-trust-divider {
    height: 1px;
    background: var(--pd-border);
    margin-bottom: 32px;
}

.pd-trust-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pd-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--pd-brand-2);
    background: rgba(242, 137, 103, 0.08);
    border: 1px solid rgba(242, 137, 103, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-trust-icon svg {
    width: 22px;
    height: 22px;
}

.pd-trust-item-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pd-trust-item-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--pd-muted-2);
}

.pd-trust-stats {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

.pd-trust-stat {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(242, 137, 103, 0.06);
    border: 1px solid rgba(242, 137, 103, 0.12);
}

.pd-trust-stat-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--pd-brand-2);
}

.pd-trust-stat-lbl {
    font-size: 10px;
    color: var(--pd-muted-2);
    margin-top: 3px;
}

/* ---------------------------------- FAQ --------------------------------- */
.pd-faq {
    padding: 100px 64px;
}

.pd-faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.pd-faq-head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pd-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-acc-item {
    border-radius: 14px;
    overflow: hidden;
    background: var(--pd-surface);
    border: 1px solid var(--pd-border);
    transition: border-color 0.2s, background 0.2s;
}

.pd-acc-item.is-open {
    border-color: rgba(255, 106, 58, 0.22);
    background: var(--pd-surface-2);
}

.pd-acc-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
}

.pd-acc-q > span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--pd-text);
    line-height: 1.4;
    flex: 1;
}

.pd-acc-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--pd-muted);
    background: var(--pd-surface-2);
    border: 1px solid var(--pd-border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, color 0.2s, background 0.2s;
}

.pd-acc-item.is-open .pd-acc-icon {
    transform: rotate(45deg);
    color: var(--pd-brand);
    background: rgba(255, 106, 58, 0.12);
}

.pd-acc-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-acc-item.is-open .pd-acc-a {
    max-height: 400px;
}

.pd-acc-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--pd-muted);
}

.pd-faq-cta {
    margin-top: 48px;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 106, 58, 0.07) 0%, rgba(242, 137, 103, 0.04) 100%);
    border: 1px solid rgba(255, 106, 58, 0.12);
}

.pd-faq-cta p {
    font-size: 14px;
    color: var(--pd-muted-2);
    margin: 0 0 16px;
}

/* -------------------------------- Footer -------------------------------- */
.pd-footer {
    border-top: 1px solid var(--pd-border);
    padding: 32px 24px;
    text-align: center;
    color: var(--pd-muted-3);
    font-size: 13px;
}

.pd-footer p {
    margin: 0;
}

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 900px) {
    .pd-nav {
        padding: 0 20px;
    }

    .pd-nav-links {
        display: none;
    }

    .pd-feature, .pd-trust, .pd-faq {
        padding: 72px 20px;
    }

    .pd-feature-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-trust-box {
        grid-template-columns: 1fr;
    }

    .pd-trust-media {
        min-height: 260px;
    }

    .pd-trust-content {
        padding: 32px 24px;
    }

    .pd-hero-stats {
        gap: 28px;
    }

    .pd-theme-toggle {
        left: 14px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 560px) {
    .pd-hero-stats {
        gap: 20px;
    }

    .pd-stat-val {
        font-size: 22px;
    }

    .pd-trust-stats {
        flex-wrap: wrap;
    }
}
