:root {
    --dp-ink: #171434;
    --dp-muted: #6f6c82;
    --dp-line: rgba(49, 43, 93, 0.12);
    --dp-violet: #7c3aed;
    --dp-magenta: #d60ad7;
    --dp-blue: #2563eb;
    --dp-cyan: #39c6ed;
    --dp-soft: #f6f7fc;
    --dp-white: #fff;
    --dp-shadow: 0 24px 60px rgba(34, 28, 82, 0.12);
}

.digital-products-page {
    background: var(--dp-white);
    color: var(--dp-ink);
    overflow: clip;
}

.dp-shell {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.dp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--dp-violet);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.dp-eyebrow::before {
    width: 8px;
    height: 8px;
    border: 3px solid rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    background: currentColor;
    box-sizing: content-box;
    content: "";
}

.dp-eyebrow--light {
    color: #fff;
}

.dp-eyebrow--light::before {
    border-color: rgba(255, 255, 255, 0.22);
}

.digital-products-hero {
    position: relative;
    min-height: clamp(630px, 78vh, 780px);
    padding: clamp(208px, 19vw, 245px) 0 clamp(88px, 9vw, 122px);
    isolation: isolate;
    background:
        radial-gradient(circle at 80% 28%, rgba(70, 210, 255, 0.28), transparent 28%),
        radial-gradient(circle at 14% 74%, rgba(255, 20, 211, 0.35), transparent 34%),
        linear-gradient(118deg, #d30acd 0%, #7c2fe7 44%, #245fe8 100%);
}

.digital-products-hero::before,
.digital-products-hero::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.digital-products-hero::before {
    width: 520px;
    height: 520px;
    right: -220px;
    bottom: -310px;
}

.digital-products-hero::after {
    width: 280px;
    height: 280px;
    left: -170px;
    top: 160px;
}

.digital-products-hero__grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.42;
    background-image: radial-gradient(rgba(255, 255, 255, 0.42) 1.25px, transparent 1.25px);
    background-size: 18px 18px;
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.2) 45%, #000 100%);
    pointer-events: none;
}

.digital-products-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    gap: clamp(56px, 8vw, 118px);
    align-items: center;
}

.digital-products-hero__copy {
    max-width: 710px;
}

.digital-products-hero__copy h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.digital-products-hero__copy p {
    max-width: 700px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.72;
}

.dp-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.dp-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.dp-button:hover,
.dp-button:focus-visible {
    transform: translateY(-3px);
}

.dp-button:hover svg,
.dp-button:focus-visible svg {
    transform: translateX(3px);
}

.dp-button--hero {
    color: #24164c;
    background: #fff;
    box-shadow: 0 18px 34px rgba(37, 17, 93, 0.22);
}

.dp-button--hero:hover,
.dp-button--hero:focus-visible {
    color: #201442;
    background: #f7f5ff;
    box-shadow: 0 23px 42px rgba(37, 17, 93, 0.28);
}

.digital-products-orbit {
    position: relative;
    width: min(100%, 500px);
    aspect-ratio: 1;
    justify-self: end;
}

.digital-products-orbit__glow {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: rgba(84, 223, 255, 0.38);
    filter: blur(54px);
}

.digital-products-orbit__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.05);
}

.digital-products-orbit__ring::before,
.digital-products-orbit__ring::after {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 4px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: #fff;
    box-sizing: content-box;
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.66);
    content: "";
}

.digital-products-orbit__ring--outer {
    inset: 2%;
    animation: dp-ring-breathe 8s ease-in-out infinite;
}

.digital-products-orbit__ring--outer::before {
    left: 9%;
    top: 18%;
}

.digital-products-orbit__ring--outer::after {
    right: 2%;
    bottom: 34%;
}

.digital-products-orbit__ring--inner {
    inset: 18%;
    border-style: dashed;
    animation: dp-ring-breathe 6s ease-in-out -3s infinite;
}

.digital-products-orbit__ring--inner::before {
    left: 1%;
    bottom: 32%;
}

.digital-products-orbit__ring--inner::after {
    right: 8%;
    top: 17%;
}

.digital-products-orbit__chip {
    position: absolute;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    color: #fff;
    background: rgba(38, 32, 118, 0.48);
    box-shadow: 0 13px 30px rgba(30, 20, 83, 0.22);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.digital-products-orbit__chip--wordpress {
    left: 0;
    top: 51%;
}

.digital-products-orbit__chip--prestashop {
    right: 4%;
    top: 13%;
}

.digital-products-orbit__chip--windows {
    right: -3%;
    bottom: 25%;
}

.digital-products-orbit__chip--hosting {
    left: -4%;
    top: 17%;
}

.digital-products-orbit__core {
    position: absolute;
    inset: 31%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 30%;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
        rgba(57, 49, 160, 0.54);
    box-shadow:
        0 30px 70px rgba(30, 20, 83, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    animation: dp-core-float 5s ease-in-out infinite;
}

.digital-products-orbit__core svg {
    width: 72px;
    height: 72px;
    fill: rgba(255, 255, 255, 0.08);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.digital-products-orbit__core span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.digital-products-orbit__spark {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 18px #fff;
    animation: dp-spark 3s ease-in-out infinite;
}

.digital-products-orbit__spark--one {
    left: 18%;
    top: 7%;
}

.digital-products-orbit__spark--two {
    right: 8%;
    bottom: 15%;
    animation-delay: -1s;
}

.digital-products-orbit__spark--three {
    left: 15%;
    bottom: 12%;
    animation-delay: -2s;
}

@keyframes dp-ring-breathe {
    0%, 100% { opacity: 0.72; transform: scale(0.985); }
    50% { opacity: 1; transform: scale(1.015); }
}

@keyframes dp-core-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes dp-spark {
    0%, 100% { opacity: 0.35; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.3); }
}

.dp-catalog {
    position: relative;
    padding: clamp(86px, 9vw, 132px) 0 clamp(96px, 10vw, 148px);
    background:
        radial-gradient(circle at 6% 13%, rgba(124, 58, 237, 0.055), transparent 26%),
        linear-gradient(#fff, #fff);
}

.dp-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: clamp(38px, 7vw, 100px);
    align-items: end;
    margin-bottom: 48px;
}

.dp-section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--dp-ink);
    font-size: clamp(36px, 4.6vw, 58px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.dp-section-heading > p {
    margin: 0 0 5px;
    color: var(--dp-muted);
    font-size: 16px;
    line-height: 1.78;
}

.dp-filter-panel {
    position: sticky;
    z-index: 20;
    top: 88px;
    margin: 0 0 42px;
    padding: 18px 20px 14px;
    border: 1px solid rgba(65, 52, 128, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 55px rgba(43, 33, 93, 0.12);
    backdrop-filter: blur(20px);
}

.dp-filters {
    display: grid;
    grid-template-columns: minmax(210px, 1.55fr) repeat(5, minmax(120px, 1fr));
    gap: 12px;
}

.dp-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    color: #4f4a68;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dp-field select,
.dp-field input {
    width: 100%;
    min-height: 47px;
    border: 1px solid #e3e1ee;
    border-radius: 12px;
    outline: none;
    color: var(--dp-ink);
    background-color: #f8f8fc;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.dp-field select {
    padding: 0 34px 0 13px;
    cursor: pointer;
}

.dp-field input {
    padding: 0 13px 0 42px;
}

.dp-field input::placeholder {
    color: #9793a7;
    opacity: 1;
}

.dp-field select:focus,
.dp-field input:focus {
    border-color: rgba(124, 58, 237, 0.58);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.09);
}

.dp-field__control {
    position: relative;
    display: block;
}

.dp-field__control svg {
    position: absolute;
    z-index: 1;
    width: 19px;
    height: 19px;
    left: 14px;
    top: 50%;
    fill: none;
    stroke: #79748d;
    stroke-linecap: round;
    stroke-width: 1.8;
    transform: translateY(-50%);
    pointer-events: none;
}

.dp-filter-panel__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid rgba(49, 43, 93, 0.08);
}

.dp-results-count {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: var(--dp-muted);
    font-size: 12px;
    font-weight: 700;
}

.dp-results-count strong {
    color: var(--dp-ink);
    font-size: 19px;
    line-height: 1;
}

.dp-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border: 0;
    color: var(--dp-violet);
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.dp-clear-filters svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.dp-clear-filters:disabled {
    color: #aaa6b8;
    cursor: default;
}

.dp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.dp-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--dp-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(42, 35, 82, 0.07);
    transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.dp-product-card::after {
    position: absolute;
    width: 120px;
    height: 120px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.11);
    filter: blur(4px);
    content: "";
    pointer-events: none;
    transition: transform 260ms ease, background-color 260ms ease;
}

.dp-product-card:hover,
.dp-product-card:focus-within {
    border-color: rgba(124, 58, 237, 0.26);
    box-shadow: 0 26px 60px rgba(42, 35, 82, 0.15);
    transform: translateY(-8px);
}

.dp-product-card:hover::after,
.dp-product-card:focus-within::after {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.22);
}

.dp-product-card__media {
    display: block;
    margin: 14px 14px 0;
    overflow: hidden;
    border: 1px solid rgba(58, 50, 111, 0.1);
    border-radius: 18px;
    color: inherit;
    background: linear-gradient(145deg, #f7f6fb, #eff1fb);
    text-decoration: none;
}

.dp-product-card__media-top {
    display: flex;
    height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(58, 50, 111, 0.08);
    background: rgba(255, 255, 255, 0.76);
}

.dp-product-card__dots {
    display: inline-flex;
    gap: 5px;
}

.dp-product-card__dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e356d4;
}

.dp-product-card__dots i:nth-child(2) {
    background: #8e6de9;
}

.dp-product-card__dots i:nth-child(3) {
    background: #50c7de;
}

.dp-product-card__category {
    overflow: hidden;
    color: #5f5877;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.dp-product-card__image {
    position: relative;
    display: flex;
    aspect-ratio: 16 / 10;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.dp-product-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 75%, rgba(26, 21, 55, 0.07));
    content: "";
    pointer-events: none;
}

.dp-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dp-product-card:hover .dp-product-card__img,
.dp-product-card:focus-within .dp-product-card__img {
    transform: scale(1.02);
}

.dp-product-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(124, 58, 237, 0.7);
    background: linear-gradient(135deg, rgba(214, 10, 215, 0.08), rgba(37, 99, 235, 0.09));
}

.dp-product-card__placeholder svg {
    width: 70px;
    height: 70px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.dp-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 24px 24px;
}

.dp-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dp-status {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.dp-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px currentColor;
    opacity: 0.74;
}

.dp-status--available {
    border-color: rgba(15, 139, 98, 0.16);
    color: #0b815d;
    background: #eefaf5;
}

.dp-status--free {
    border-color: rgba(37, 99, 235, 0.16);
    color: #2563eb;
    background: #eff5ff;
}

.dp-status--soon {
    border-color: rgba(187, 103, 0, 0.18);
    color: #a15a04;
    background: #fff7e9;
}

.dp-product-card__number {
    color: #b4afc2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.dp-product-card h3 {
    min-height: 2.35em;
    margin: 0 0 13px;
    color: var(--dp-ink);
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.17;
}

.dp-product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 180ms ease;
}

.dp-product-card h3 a:hover,
.dp-product-card h3 a:focus-visible {
    color: var(--dp-blue);
}

.dp-product-card__description {
    display: -webkit-box;
    min-height: 4.95em;
    margin: 0 0 18px;
    overflow: hidden;
    color: var(--dp-muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.dp-product-card__compatibility {
    display: flex;
    min-height: 42px;
    align-items: flex-start;
    gap: 9px;
    margin: 0 0 21px;
    color: #5f5974;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.55;
}

.dp-product-card__compatibility svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--dp-violet);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.dp-product-card__footer {
    display: grid;
    grid-template-columns: minmax(95px, auto) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: auto;
    padding-top: 19px;
    border-top: 1px solid rgba(49, 43, 93, 0.1);
}

.dp-product-card__price {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.dp-product-card__price small {
    color: #8b869c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dp-product-card__price strong {
    color: var(--dp-ink);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.2;
}

.dp-product-card__primary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(110deg, var(--dp-violet), var(--dp-blue));
    box-shadow: 0 11px 22px rgba(87, 54, 200, 0.21);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.dp-product-card__primary svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.dp-product-card__primary:hover,
.dp-product-card__primary:focus-visible {
    color: #fff;
    box-shadow: 0 14px 28px rgba(87, 54, 200, 0.29);
    filter: saturate(1.12);
    transform: translateY(-2px);
}

.dp-product-card__primary:hover svg,
.dp-product-card__primary:focus-visible svg {
    transform: translateX(3px);
}

.dp-product-card__install {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    gap: 7px;
    margin-top: 14px;
    color: #69627d;
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
    transition: color 180ms ease;
}

.dp-product-card__install svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
}

.dp-product-card__install:hover,
.dp-product-card__install:focus-visible {
    color: var(--dp-violet);
}

.dp-product-card__install:hover svg,
.dp-product-card__install:focus-visible svg {
    transform: translateY(2px);
}

.dp-empty-state {
    max-width: 540px;
    margin: 36px auto 0;
    padding: 50px 32px;
    border: 1px dashed rgba(124, 58, 237, 0.28);
    border-radius: 24px;
    text-align: center;
    background: #faf9fe;
}

.dp-empty-state > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 18px;
    color: var(--dp-violet);
    background: rgba(124, 58, 237, 0.1);
}

.dp-empty-state svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.dp-empty-state h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.dp-empty-state p {
    margin: 0 0 20px;
    color: var(--dp-muted);
    line-height: 1.65;
}

.dp-empty-state button {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--dp-violet);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
}

.dp-assurance {
    position: relative;
    padding: 0 0 clamp(96px, 10vw, 148px);
    background:
        radial-gradient(circle at 96% 8%, rgba(51, 114, 232, 0.08), transparent 26%),
        linear-gradient(180deg, #f7f8fc 0%, #fff 82%);
}

.dp-trust-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 clamp(82px, 9vw, 124px);
    border: 1px solid var(--dp-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--dp-shadow);
    transform: translateY(-38px);
}

.dp-trust-item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
}

.dp-trust-item + .dp-trust-item {
    border-left: 1px solid var(--dp-line);
}

.dp-trust-item > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 14px;
    color: var(--dp-violet);
    background: linear-gradient(145deg, rgba(214, 10, 215, 0.1), rgba(37, 99, 235, 0.1));
}

.dp-trust-item svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.dp-trust-item div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.dp-trust-item strong {
    color: var(--dp-ink);
    font-size: 13px;
}

.dp-trust-item small {
    overflow: hidden;
    color: var(--dp-muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dp-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.7fr);
    gap: clamp(44px, 7vw, 94px);
    align-items: start;
}

.dp-section-heading--faq {
    display: block;
    margin-bottom: 34px;
}

.dp-section-heading--faq h2 {
    max-width: 710px;
    font-size: clamp(34px, 4vw, 52px);
}

.dp-faq__items {
    border-top: 1px solid var(--dp-line);
}

.dp-faq-item {
    border-bottom: 1px solid var(--dp-line);
}

.dp-faq-item summary {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 4px;
    color: var(--dp-ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
}

.dp-faq-item summary::-webkit-details-marker {
    display: none;
}

.dp-faq-item summary i {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.07);
}

.dp-faq-item summary i::before,
.dp-faq-item summary i::after {
    position: absolute;
    width: 12px;
    height: 2px;
    left: 50%;
    top: 50%;
    border-radius: 2px;
    background: var(--dp-violet);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.dp-faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.dp-faq-item[open] summary {
    color: var(--dp-violet);
}

.dp-faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.dp-faq-item__answer {
    overflow: hidden;
}

.dp-faq-item__answer p {
    max-width: 720px;
    margin: -4px 58px 24px 4px;
    color: var(--dp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.dp-install-card {
    position: sticky;
    top: 118px;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 95% 3%, rgba(77, 211, 255, 0.42), transparent 35%),
        radial-gradient(circle at 7% 94%, rgba(235, 33, 220, 0.36), transparent 36%),
        linear-gradient(145deg, #241753, #28399c 58%, #245fdc);
    box-shadow: 0 30px 70px rgba(31, 28, 91, 0.25);
}

.dp-install-card::before {
    position: absolute;
    width: 250px;
    height: 250px;
    right: -148px;
    bottom: -158px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 50%;
    content: "";
}

.dp-install-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.dp-install-card__icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.dp-install-card__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.dp-install-card h2 {
    margin: 0 0 18px;
    color: #fff !important;
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.dp-install-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.72;
}

.dp-install-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.dp-install-card li {
    position: relative;
    padding-left: 23px;
}

.dp-install-card li::before {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    top: 1px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: #fff;
    content: "✓";
    font-size: 9px;
    line-height: 13px;
    text-align: center;
}

.dp-button--light {
    position: relative;
    color: #22164d;
    background: #fff;
    box-shadow: 0 18px 35px rgba(19, 15, 65, 0.25);
}

.dp-button--light:hover,
.dp-button--light:focus-visible {
    color: #22164d;
    background: #f7f5ff;
}

[data-product-card][hidden],
.dp-empty-state[hidden] {
    display: none !important;
}

.dp-product-grid.is-updating .dp-product-card:not([hidden]) {
    animation: dp-card-enter 280ms ease both;
}

@keyframes dp-card-enter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
    .digital-products-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
        gap: 40px;
    }

    .dp-filters {
        grid-template-columns: minmax(220px, 1.6fr) repeat(2, minmax(150px, 1fr));
    }

    .dp-trust-item {
        padding: 21px 16px;
    }

    .dp-trust-item > span {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

@media (max-width: 980px) {
    .digital-products-hero {
        min-height: auto;
        padding-top: 205px;
    }

    .digital-products-hero__inner {
        grid-template-columns: 1fr;
    }

    .digital-products-hero__copy {
        max-width: 760px;
    }

    .digital-products-orbit {
        width: min(74vw, 460px);
        justify-self: center;
    }

    .dp-section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dp-section-heading > p {
        max-width: 720px;
    }

    .dp-filter-panel {
        position: relative;
        top: auto;
    }

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

    .dp-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dp-trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--dp-line);
    }

    .dp-trust-item:nth-child(4) {
        border-top: 1px solid var(--dp-line);
    }

    .dp-faq-layout {
        grid-template-columns: 1fr;
    }

    .dp-install-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 720px) {
    .dp-shell {
        width: min(100% - 30px, 1240px);
    }

    .digital-products-hero {
        padding: 170px 0 80px;
    }

    .digital-products-hero__copy h1 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .digital-products-hero__copy p {
        margin: 23px 0 30px;
        font-size: 16px;
        line-height: 1.65;
    }

    .digital-products-orbit {
        width: min(94vw, 410px);
        margin-top: 8px;
    }

    .digital-products-orbit__chip {
        min-height: 32px;
        padding: 0 11px;
        font-size: 9px;
    }

    .digital-products-orbit__core span {
        font-size: 8px;
    }

    .dp-catalog {
        padding-top: 78px;
    }

    .dp-section-heading {
        margin-bottom: 34px;
    }

    .dp-section-heading h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .dp-filter-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .dp-filters {
        grid-template-columns: 1fr;
    }

    .dp-field select,
    .dp-field input {
        min-height: 50px;
        font-size: 14px;
    }

    .dp-filter-panel__status {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .dp-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dp-product-card {
        border-radius: 22px;
    }

    .dp-product-card h3 {
        min-height: auto;
        font-size: 24px;
    }

    .dp-product-card__description {
        min-height: auto;
    }

    .dp-trust-strip {
        grid-template-columns: 1fr;
        margin-bottom: 66px;
        transform: translateY(-28px);
    }

    .dp-trust-item + .dp-trust-item,
    .dp-trust-item:nth-child(3),
    .dp-trust-item:nth-child(4) {
        border-top: 1px solid var(--dp-line);
        border-left: 0;
    }

    .dp-faq-item summary {
        min-height: 76px;
        font-size: 15px;
    }

    .dp-faq-item__answer p {
        margin-right: 4px;
    }

    .dp-install-card {
        padding: 30px 25px;
        border-radius: 24px;
    }
}

@media (max-width: 430px) {
    .digital-products-orbit {
        width: 100%;
    }

    .digital-products-orbit__ring--outer {
        inset: 4%;
    }

    .digital-products-orbit__core {
        inset: 30%;
    }

    .digital-products-orbit__core svg {
        width: 54px;
        height: 54px;
    }

    .dp-product-card__body {
        padding: 20px;
    }

    .dp-product-card__footer {
        grid-template-columns: 1fr;
    }

    .dp-product-card__primary {
        width: 100%;
    }

    .dp-product-card__install {
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .digital-products-orbit__ring,
    .digital-products-orbit__chip,
    .digital-products-orbit__core,
    .digital-products-orbit__spark,
    .dp-product-grid.is-updating .dp-product-card:not([hidden]) {
        animation: none !important;
    }

    .dp-product-card,
    .dp-product-card__img,
    .dp-button,
    .dp-product-card__primary {
        scroll-behavior: auto;
        transition-duration: 0.01ms !important;
    }
}
