:root {
    --pendrive-surface: rgba(255, 255, 255, 0.06);
    --pendrive-surface-2: rgba(255, 255, 255, 0.09);
    --pendrive-border: rgba(255, 255, 255, 0.14);
}

.pendrive-page {
    padding: 18px clamp(14px, 2.2vw, 28px) 70px;
    --pendrive-solid-surface: #121212;
    --pendrive-solid-surface-2: #171717;
    --pendrive-solid-media: #0f0f0f;
    --pendrive-solid-border: #2a2a2a;
    overflow-x: hidden;
}

body[data-theme="light"] .pendrive-page {
    --pendrive-solid-surface: #ffffff;
    --pendrive-solid-surface-2: #f6f6f7;
    --pendrive-solid-media: #ffffff;
    --pendrive-solid-border: #d0d0d0;
}

.site-main > .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.pendrive-hero {
    margin-top: 14px;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.pendrive-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding: 26px;
}

.pendrive-hero__grid > * {
    min-width: 0;
}

@keyframes pendriveSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pendriveSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.pendrive-page .pendrive-hero__copy {
    animation: pendriveSlideInLeft 2s cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform, opacity;
}

.pendrive-page .pendrive-hero__media {
    animation: pendriveSlideInRight 2s cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    .pendrive-page .pendrive-hero__copy,
    .pendrive-page .pendrive-hero__media {
        animation: none;
    }
}

.pendrive-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 12px;
    opacity: 0.9;
}

.pendrive-title {
    margin: 12px 0 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: 0.2px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.pendrive-subtitle {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.pendrive-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
    max-width: 680px;
}

.pendrive-badge {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
}

body[data-theme="light"] .pendrive-badge {
    background: transparent;
}

.pendrive-badge__value {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.4px;
}

.pendrive-badge__label {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.pendrive-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.pendrive-order__filters {
    position: absolute;
    width: 0;
    height: 0;
}

.pendrive-order {
    position: relative;
    cursor: pointer;
    border: none;
    height: 56px;
    padding: 0 18px;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #111;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.pendrive-order__text {
    position: relative;
    z-index: 1;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pendrive-order__icon {
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    transform: translateY(0);
}

.pendrive-order:hover .pendrive-order__icon {
    animation: pendriveOrderIconPop 0.85s ease both;
}

@keyframes pendriveOrderIconPop {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-2px) scale(1.08);
    }

    60% {
        transform: translateY(0) scale(0.98);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.pendrive-order::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 50%, #0000 0, #0000 20%, #111111aa 50%),
        radial-gradient(ellipse 100% 100%, #fff, #fff0);
    background-size: 3px 3px, auto auto;
    transition: 0.3s;
    border-radius: 16px;
}

.pendrive-order:hover::before {
    opacity: 0.3;
}

.pendrive-order__a {
    pointer-events: none;
    position: absolute;
    --w: 2px;
    --t: -40px;
    --s: calc(var(--t) * -1);
    --e: calc(100% + var(--t));
    --g: #fff0, #fff3 var(--s), #fffa var(--s), #fff, #fffa var(--e), #fff3 var(--e), #fff0;
}

.pendrive-order__a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: none;
    z-index: -2;
}

.pendrive-order__a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: none;
    opacity: 0;
    z-index: -2;
    transition: 0.3s;
}

.pendrive-order:hover .pendrive-order__a::after {
    opacity: 1;
}

.pendrive-order__l {
    left: -2px;
}

.pendrive-order__r {
    right: -2px;
}

.pendrive-order__l,
.pendrive-order__r {
    background: linear-gradient(var(--g));
    top: var(--t);
    bottom: var(--t);
    width: var(--w);
}

.pendrive-order__t {
    top: -2px;
}

.pendrive-order__b {
    bottom: -2px;
}

.pendrive-order__t,
.pendrive-order__b {
    background: linear-gradient(90deg, var(--g));
    left: var(--t);
    right: var(--t);
    height: var(--w);
}

.pendrive-order__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

body[data-theme="light"] .pendrive-order {
    background: #0a0a0a;
}

@media (max-width: 520px) {
    .pendrive-order {
        height: 54px;
    }
}

.pendrive-buy {
    display: flex;
    width: 360px;
    max-width: 100%;
    height: 56px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--pendrive-solid-surface);
    color: var(--text);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

body[data-theme="light"] .pendrive-buy {
    border-color: rgba(0, 0, 0, 0.14);
    background: var(--pendrive-solid-surface);
}

.pendrive-buy:hover {
    transform: scale(1.03);
    width: 210px;
}

.pendrive-buy:hover .pendrive-buy__left {
    width: 100%;
}

.pendrive-buy__left {
    background-color: #5de2a3;
    width: 120px;
    height: 56px;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    overflow: hidden;
}

.pendrive-buy__right {
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
}

.pendrive-buy__right:hover {
    background-color: var(--pendrive-solid-surface-2);
}

body[data-theme="light"] .pendrive-buy__right:hover {
    background-color: var(--pendrive-solid-surface-2);
}

.pendrive-buy__arrow {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    color: var(--text);
}

body[data-theme="light"] .pendrive-buy__arrow {
    color: var(--text);
}

.pendrive-buy__text {
    font-size: 17px;
    font-family: "Lexend Deca", sans-serif;
    margin-left: 20px;
    letter-spacing: 0.4px;
}

.pendrive-buy__card {
    width: 38px;
    height: 28px;
    background-color: #c7ffbc;
    border-radius: 8px;
    position: absolute;
    display: flex;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    box-shadow: 9px 9px 9px -2px rgba(77, 200, 143, 0.72);
}

.pendrive-buy__card-line {
    width: 34px;
    height: 8px;
    background-color: #80ea69;
    border-radius: 3px;
    margin-top: 6px;
}

.pendrive-buy__buttons {
    width: 7px;
    height: 7px;
    background-color: #379e1f;
    box-shadow: 0 -9px 0 0 #26850e, 0 9px 0 0 #56be3e;
    border-radius: 50%;
    margin-top: 4px;
    transform: rotate(90deg);
    margin: 8px 0 0 -18px;
}

.pendrive-buy:hover .pendrive-buy__card {
    animation: pendriveBuySlideTop 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.pendrive-buy__post {
    width: 40px;
    height: 64px;
    background-color: #dddde0;
    position: absolute;
    z-index: 11;
    bottom: 6px;
    top: 56px;
    border-radius: 8px;
    overflow: hidden;
}

.pendrive-buy__post-line {
    width: 30px;
    height: 7px;
    background-color: #545354;
    position: absolute;
    border-radius: 0 0 3px 3px;
    right: 5px;
    top: 6px;
}

.pendrive-buy__post-line:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 7px;
    background-color: #757375;
    top: -6px;
}

.pendrive-buy__screen {
    width: 30px;
    height: 16px;
    background-color: #ffffff;
    position: absolute;
    top: 18px;
    right: 5px;
    border-radius: 3px;
}

.pendrive-buy__numbers {
    width: 9px;
    height: 9px;
    background-color: #838183;
    box-shadow: 0 -14px 0 0 #838183, 0 14px 0 0 #838183;
    border-radius: 2px;
    position: absolute;
    transform: rotate(90deg);
    left: 16px;
    top: 42px;
}

.pendrive-buy__numbers-line2 {
    width: 9px;
    height: 9px;
    background-color: #aaa9ab;
    box-shadow: 0 -14px 0 0 #aaa9ab, 0 14px 0 0 #aaa9ab;
    border-radius: 2px;
    position: absolute;
    transform: rotate(90deg);
    left: 16px;
    top: 54px;
}

.pendrive-buy:hover .pendrive-buy__post {
    animation: pendriveBuySlidePost 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.pendrive-buy__dollar {
    position: absolute;
    font-size: 13px;
    font-family: "Lexend Deca", sans-serif;
    width: 100%;
    left: 0;
    top: 0;
    color: #4b953b;
    text-align: center;
}

.pendrive-buy:hover .pendrive-buy__dollar {
    animation: pendriveBuyFadeIn 0.3s 1s backwards;
}

@keyframes pendriveBuySlideTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-38px) rotate(90deg);
    }

    60% {
        transform: translateY(-38px) rotate(90deg);
    }

    100% {
        transform: translateY(-6px) rotate(90deg);
    }
}

@keyframes pendriveBuySlidePost {
    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-46px);
    }
}

@keyframes pendriveBuyFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 520px) {
    .pendrive-buy {
        transform: scale(0.95);
        transform-origin: left center;
    }

    .pendrive-buy:hover {
        transform: scale(0.98);
    }

    .pendrive-buy__text {
        font-size: 14px;
    }
}

.pendrive-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: var(--pendrive-solid-surface);
    color: inherit;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 12px;
}

body[data-theme="light"] .pendrive-btn {
    border-color: rgba(0, 0, 0, 0.2);
    background: var(--pendrive-solid-surface);
}

.pendrive-btn--primary {
    border-color: rgba(220, 20, 60, 0.7);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.95), rgba(255, 74, 135, 0.85));
    box-shadow: 0 14px 34px rgba(220, 20, 60, 0.18);
    color: #ffffff;
}

.pendrive-btn--primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.pendrive-btn--primary:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.pendrive-price {
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pendrive-price__tag {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pendrive-price__value {
    font-weight: 900;
    font-size: 22px;
}

.pendrive-price__note {
    color: var(--muted);
    font-size: 12px;
}

.pendrive-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pendrive-compare {
    position: relative;
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--pendrive-border);
    background: var(--pendrive-solid-media);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
}

.pendrive-compare__img {
    display: block;
    width: 100%;
    height: auto;
}

.pendrive-compare__img--after {
    position: relative;
    z-index: 1;
}

.pendrive-compare__before {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: var(--pos);
    overflow: hidden;
}

.pendrive-compare__img--before {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pendrive-compare__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    z-index: 3;
    transform: translateX(-50%);
    width: 0;
}

.pendrive-compare__divider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    transform: translateX(-50%);
    background: #ffffff;
}

body[data-theme="light"] .pendrive-compare__divider::before {
    background: #000000;
}

.pendrive-compare__handle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.5px;
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body[data-theme="light"] .pendrive-compare__handle {
    background: #000000;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.pendrive-compare__range {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.pendrive-faq {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pendrive-faq__item {
    border-radius: 18px;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface);
    overflow: hidden;
}

.pendrive-faq__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--pendrive-solid-surface-2);
}

.pendrive-faq__summary::before {
    content: "\f3ed";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    opacity: 0.9;
    flex: 0 0 auto;
    margin-right: 6px;
}

.pendrive-faq__summary::-webkit-details-marker {
    display: none;
}

.pendrive-inline-icon {
    margin-right: 8px;
    font-size: 13px;
    opacity: 0.9;
}

.pendrive-heading-icon {
    margin-right: 10px;
    font-size: 16px;
    opacity: 0.92;
}

.pendrive-faq__item > .pendrive-faq__summary::after {
    content: "\f067";
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--pendrive-solid-surface);
    border: 1px solid var(--pendrive-solid-border);
    color: var(--text);
    flex: 0 0 auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
}

.pendrive-faq__item[open] > .pendrive-faq__summary::after {
    content: "\f068";
}

.pendrive-faq__item[open] > .pendrive-faq__summary {
    border-bottom: 1px solid var(--pendrive-solid-border);
}

.pendrive-faq-tabs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    isolation: isolate;
}

.pendrive-faq-tabs__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

@media (min-width: 821px) {
    .pendrive-faq-tabs__list {
        max-height: 640px;
        overflow: auto;
        padding-right: 12px;
        scrollbar-gutter: stable;
    }
}

.pendrive-faq-tabs__list {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
}

body[data-theme="light"] .pendrive-faq-tabs__list {
    scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}

.pendrive-faq-tabs__list::-webkit-scrollbar {
    width: 8px;
}

.pendrive-faq-tabs__list::-webkit-scrollbar-track {
    background: transparent;
}

.pendrive-faq-tabs__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

body[data-theme="light"] .pendrive-faq-tabs__list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.28);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.pendrive-faq-tabs__tab {
    appearance: none;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface);
    color: var(--text);
    text-align: left;
    padding: 12px 14px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.25;
    position: relative;
}

.pendrive-faq-tabs__tab::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.75;
}

.pendrive-faq-tabs__tab.is-active {
    background: var(--pendrive-solid-surface-2);
}

.pendrive-faq-tabs__panels {
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface);
    border-radius: 18px;
    padding: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.pendrive-faq-tabs__panels.is-flash {
    box-shadow: 0 0 0 2px rgba(93, 226, 163, 0.32);
}

.pendrive-faq-tabs__active-title {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 0.2px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface-2);
}

.pendrive-faq-tabs__cta {
    margin-top: auto;
    border-top: 1px solid var(--pendrive-solid-border);
    padding-top: 14px;
    display: grid;
    gap: 10px;
}

.pendrive-faq-tabs__cta-title {
    font-weight: 900;
    font-size: 14px;
}

.pendrive-faq-tabs__cta-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.pendrive-faq-tabs__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface-2);
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}

.pendrive-faq-tabs__cta-btn:hover {
    transform: translateY(-1px);
}

.pendrive-faq-tabs__panel {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    opacity: 0;
    transform: translateX(18px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 520ms ease, transform 520ms ease, max-height 520ms ease;
}

.pendrive-faq-tabs__panel.is-active {
    opacity: 1;
    transform: translateX(0);
    max-height: 2000px;
    padding: 12px 12px;
    border-radius: 18px;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface-2);
}

.pendrive-faq-tabs__panel.is-leaving {
    opacity: 0;
    transform: translateX(-18px);
    max-height: 0;
}

.pendrive-faq-tabs__extras {
    border-top: 1px solid var(--pendrive-solid-border);
    padding-top: 12px;
}

.pendrive-faq-tabs__extras-title {
    font-weight: 900;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    font-size: 14px;
}

.pendrive-faq-tabs__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.pendrive-faq-tabs__points li {
    position: relative;
    padding-left: 14px;
}

.pendrive-faq-tabs__points li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text);
    opacity: 0.7;
}

.pendrive-faq-tabs__facts {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pendrive-faq-tabs__fact {
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface-2);
    border-radius: 16px;
    padding: 10px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
}

.pendrive-faq-tabs__fact i {
    font-size: 14px;
    opacity: 0.9;
}

.pendrive-faq-tabs__fact span {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.pendrive-faq-tabs__fact strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 900;
}

@media (max-width: 820px) {
    .pendrive-faq-tabs {
        grid-template-columns: 1fr;
    }

    .pendrive-faq-tabs__panels {
        height: auto;
    }
}

@media (max-width: 860px) {
    .pendrive-policy__top {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .pendrive-policy__media {
        width: 100%;
        max-width: 100%;
    }

    .pendrive-policy__intro {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .pendrive-section__inner {
        padding: 18px;
    }

    .pendrive-policy__p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pendrive-faq-tabs__panel {
        transition: none;
        transform: none;
    }
}

.pendrive-faq__content {
    padding: 0 16px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(18px);
    transition: max-height 2s ease, padding 2s ease, opacity 2s ease, transform 2s ease;
}

.pendrive-faq__item[open] > .pendrive-faq__content {
    padding: 14px 16px;
    max-height: 2000px;
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .pendrive-faq__content {
        transition: none;
        transform: none;
    }
}

.pendrive-flip {
    margin-top: 16px;
    position: relative;
    width: min(980px, 100%);
    margin-left: auto;
    margin-right: auto;
    height: clamp(240px, 42vw, 480px);
    perspective: 1200px;
}

.pendrive-flip::before,
.pendrive-flip::after {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: var(--pendrive-solid-border);
    pointer-events: none;
    z-index: 1;
}

.pendrive-flip::before {
    left: 0;
}

.pendrive-flip::after {
    right: 0;
}

.pendrive-flip__stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.pendrive-flip__item {
    appearance: none;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-media);
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.72);
    width: min(520px, 82%);
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 520ms ease, filter 520ms ease;
    box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.14), inset -2px -2px 0 rgba(0, 0, 0, 0.22);
    --pendrive-flip-cut: 22px;
    clip-path: polygon(
        0 0,
        calc(100% - var(--pendrive-flip-cut)) 0,
        100% var(--pendrive-flip-cut),
        100% 100%,
        var(--pendrive-flip-cut) 100%,
        0 calc(100% - var(--pendrive-flip-cut))
    );
}

body[data-theme="light"] .pendrive-flip__item {
    box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.75), inset -2px -2px 0 rgba(0, 0, 0, 0.12);
}

.pendrive-flip__item::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 55%),
        linear-gradient(315deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 52%);
    opacity: 0.9;
    z-index: 1;
}

.pendrive-flip__item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow:
        inset 3px 3px 0 rgba(255, 255, 255, 0.22),
        inset -3px -3px 0 rgba(0, 0, 0, 0.28),
        0 0 0 1px var(--pendrive-solid-border);
}

.pendrive-flip__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--pendrive-solid-media);
    display: block;
    position: relative;
    z-index: 0;
}

.pendrive-flip__item.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateZ(120px) scale(1);
    z-index: 4;
}

.pendrive-flip__item.is-prev {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateX(-58%) rotateY(36deg) translateZ(20px) scale(0.88);
    z-index: 3;
    filter: saturate(0.95);
}

.pendrive-flip__item.is-next {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateX(58%) rotateY(-36deg) translateZ(20px) scale(0.88);
    z-index: 3;
    filter: saturate(0.95);
}

.pendrive-flip__item.is-far-prev {
    opacity: 0.55;
    transform: translate(-50%, -50%) translateX(-100%) rotateY(48deg) translateZ(-40px) scale(0.74);
    z-index: 2;
}

.pendrive-flip__item.is-far-next {
    opacity: 0.55;
    transform: translate(-50%, -50%) translateX(100%) rotateY(-48deg) translateZ(-40px) scale(0.74);
    z-index: 2;
}

.pendrive-flip__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
    z-index: 6;
    display: none;
}

.pendrive-flip__nav--prev {
    left: 10px;
}

.pendrive-flip__nav--next {
    right: 10px;
}

.pendrive-flip__nav:hover {
    transform: translateY(-50%) scale(1.05);
}

.pendrive-flip__nav:active {
    transform: translateY(-50%) scale(0.98);
}

@media (max-width: 720px) {
    .pendrive-flip__nav {
        display: inline-flex;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .pendrive-flip__item {
        width: min(460px, 90%);
    }

    .pendrive-flip__item.is-prev {
        transform: translate(-50%, -50%) translateX(-52%) rotateY(28deg) translateZ(10px) scale(0.86);
    }

    .pendrive-flip__item.is-next {
        transform: translate(-50%, -50%) translateX(52%) rotateY(-28deg) translateZ(10px) scale(0.86);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pendrive-flip__item {
        transition: none;
    }

    .pendrive-flip__nav {
        transition: none;
    }
}

.pendrive-hero__images {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.pendrive-hero__img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid var(--pendrive-border);
    background: var(--pendrive-solid-media);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    display: block;
}

.pendrive-section {
    margin-top: 18px;
}

.pendrive-section__inner {
    border-radius: 22px;
    border: 1px solid var(--pendrive-border);
    background: var(--pendrive-solid-surface-2);
    padding: 22px;
}

.pendrive-section[aria-label="Policy"] .pendrive-section__inner {
    border-color: var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface);
}

body[data-theme="light"] .pendrive-section__inner {
    background: var(--pendrive-solid-surface-2);
    border-color: rgba(0, 0, 0, 0.12);
}

body[data-theme="light"] .pendrive-section[aria-label="Policy"] .pendrive-section__inner {
    border-color: var(--pendrive-solid-border);
    background: var(--pendrive-solid-surface);
}

.pendrive-section__inner--no-panel {
    background: transparent;
    border: 0;
}

body[data-theme="light"] .pendrive-section__inner--no-panel {
    background: transparent;
    border: 0;
}

.pendrive-section__inner--clean {
    background: transparent;
    border: 0;
    padding: 0;
}

body[data-theme="light"] .pendrive-section__inner--clean {
    background: transparent;
    border: 0;
}

.pendrive-h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.2px;
    font-weight: 900;
}

.pendrive-policy {
    margin-top: 16px;
}

.pendrive-policy__top {
    display: grid;
    grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.pendrive-policy__media {
    border-radius: 18px;
    border: 1px solid var(--pendrive-solid-border);
    background: var(--pendrive-solid-media);
    overflow: hidden;
}

.pendrive-policy__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.pendrive-policy__intro,
.pendrive-policy__rest {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.pendrive-policy__rest {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--pendrive-solid-border);
}

.pendrive-policy__p {
    margin: 0 0 12px;
}

.pendrive-policy__p:last-child {
    margin-bottom: 0;
}

.pendrive-p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.pendrive-cards {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pendrive-card {
    border-radius: 18px;
    border: 1px solid var(--pendrive-border);
    background-color: var(--pendrive-solid-surface);
    background-image: url("/frontend/assets/img/pendrvi/TOOLS%20ICON/CARD_BC.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    padding: 14px 14px 14px 54px;
}

body[data-theme="light"] .pendrive-card {
    background-color: var(--pendrive-solid-surface);
    background-image: url("/frontend/assets/img/pendrvi/TOOLS%20ICON/CARD_BC.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.pendrive-card__title {
    font-weight: 900;
    font-size: 14px;
    color: #0f0f0f;
    text-shadow: none;
}

.pendrive-card__text {
    margin-top: 6px;
    color: #1f1f1f;
    font-size: 13px;
    line-height: 1.55;
    text-shadow: none;
}

.pendrive-card::after {
    content: "\2192";
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%) translateX(10px);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #0f0f0f;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.pendrive-card:hover::after,
.pendrive-card:focus-within::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.pendrive-tools {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.pendrive-tool {
    border-radius: 18px;
    border: 1px solid var(--pendrive-border);
    background-color: var(--pendrive-solid-surface);
    background-image: url("/frontend/assets/img/pendrvi/TOOLS%20ICON/CARD_BC.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
    padding: 14px 14px 14px 54px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pendrive-tool::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%) translateX(10px);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #0f0f0f;
    background: #ffffff;
    background-image: var(--tool-icon);
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.pendrive-tool:hover::after,
.pendrive-tool:focus-within::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.pendrive-tool__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--pendrive-border);
    background: var(--pendrive-solid-media);
    padding: 8px;
}

body[data-theme="light"] .pendrive-tool__icon {
    background: var(--pendrive-solid-media);
    border-color: rgba(0, 0, 0, 0.12);
}

.pendrive-tool__title {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #0f0f0f;
    text-shadow: none;
}

.pendrive-tool__text {
    color: #1f1f1f;
    font-size: 13px;
    line-height: 1.55;
    text-shadow: none;
}

.pendrive-gallery {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pendrive-gallery__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--pendrive-border);
    background: var(--pendrive-solid-media);
    display: block;
}

.pendrive-callout {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    background: var(--pendrive-solid-surface);
    padding: 14px;
}

.pendrive-callout__title {
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 12px;
}

.pendrive-callout__text {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 980px) {
    .pendrive-hero__grid {
        grid-template-columns: 1fr;
    }

    .pendrive-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pendrive-cards {
        grid-template-columns: 1fr;
    }

    .pendrive-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pendrive-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .pendrive-hero__grid {
        padding: 18px;
    }

    .pendrive-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pendrive-order {
        width: 100%;
    }

    .pendrive-buy {
        width: 100%;
        transition: none;
        transform: none;
    }

    .pendrive-buy:hover {
        transform: none;
        width: 100%;
    }

    .pendrive-buy:hover .pendrive-buy__left {
        width: 120px;
    }

    .pendrive-price {
        flex-wrap: wrap;
        gap: 6px 10px;
    }

    .pendrive-price__value {
        font-size: 20px;
        white-space: nowrap;
    }

    .pendrive-price__note {
        flex-basis: 100%;
        font-size: 12px;
        line-height: 1.35;
    }

    .pendrive-card,
    .pendrive-tool {
        padding: 14px;
    }

    .pendrive-card::after,
    .pendrive-tool::after {
        display: none;
    }

    .pendrive-section__inner {
        padding: 18px;
    }

    .pendrive-badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .pendrive-badge__value {
        font-size: 18px;
    }

    .pendrive-badge__label {
        font-size: 11px;
    }

    .pendrive-gallery {
        grid-template-columns: 1fr;
    }

    .pendrive-tools {
        grid-template-columns: 1fr;
    }

    .pendrive-gallery__img {
        height: auto;
    }
}
