/* English commerce-page content sourced from Opplex IPTV (1).docx. */
.doc-commerce {
    --dc-accent: #df0303;
    --dc-accent-dark: #a90000;
    --dc-ink: #101828;
    --dc-muted: #526079;
    --dc-line: #e4e9f1;
    --dc-soft: #f5f7fb;
    --dc-dark: #101828;
    --dc-white: #fff;
    color: var(--dc-ink);
    background: var(--dc-white);
}

.doc-commerce *,
.doc-commerce *::before,
.doc-commerce *::after {
    box-sizing: border-box;
}

.dc-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 7vw, 92px) 0 clamp(58px, 8vw, 108px);
    background:
        radial-gradient(circle at 92% 14%, rgba(223, 3, 3, .15), transparent 34%),
        linear-gradient(145deg, #fff 0%, #f7f8fc 58%, #fff1f1 100%);
}

.dc-hero::after {
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border: 52px solid rgba(223, 3, 3, .055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.dc-hero--compact .dc-hero__content {
    max-width: 980px;
}

.dc-hero--reseller {
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 91, 91, .2), transparent 31%),
        linear-gradient(135deg, #fff 0%, #f8f9fc 60%, #fff0f0 100%);
}

.dc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.dc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--dc-accent-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.dc-eyebrow::before {
    width: 20px;
    height: 3px;
    border-radius: 999px;
    background: var(--dc-accent);
    content: "";
}

.dc-title,
.dc-section h2,
.dc-trial h2,
.dc-payment-panel h2 {
    margin: 0;
    color: var(--dc-ink);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.dc-title {
    max-width: 1050px;
    font-size: clamp(2.1rem, 5vw, 4.35rem);
}

.dc-lead,
.dc-prose--lead {
    max-width: 900px;
    margin-top: 22px;
    color: var(--dc-muted);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.8;
}

.dc-lead {
    margin-bottom: 0;
}

.dc-prose p {
    margin: 0 0 14px;
    color: var(--dc-muted);
    line-height: 1.8;
}

.dc-prose p:last-child {
    margin-bottom: 0;
}

.dc-prose--centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dc-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.dc-feature-card,
.dc-content-card,
.dc-plan-card,
.dc-review-card,
.dc-conversion-card {
    border: 1px solid var(--dc-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 32px rgba(16, 24, 40, .065);
}

.dc-feature-card {
    padding: 26px 22px;
}

.dc-feature-card__icon,
.dc-content-card__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
    border-radius: 13px;
    color: var(--dc-white);
    background: linear-gradient(135deg, var(--dc-accent), var(--dc-accent-dark));
    box-shadow: 0 10px 20px rgba(223, 3, 3, .22);
    font-size: 1.05rem;
}

.dc-feature-card h2,
.dc-content-card h3,
.dc-step-card h3,
.dc-plan-card h3,
.dc-note h3 {
    margin: 0 0 9px;
    color: var(--dc-ink);
    font-weight: 750;
    line-height: 1.3;
}

.dc-feature-card h2 {
    font-size: 1.08rem;
}

.dc-feature-card p,
.dc-content-card p,
.dc-step-card p,
.dc-plan-card p,
.dc-note p,
.dc-section__header p {
    margin: 0;
    color: var(--dc-muted);
    line-height: 1.72;
}

.dc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.dc-actions--centered {
    justify-content: center;
}

.dc-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.dc-button--primary {
    color: var(--dc-white) !important;
    background: linear-gradient(135deg, var(--dc-accent), var(--dc-accent-dark));
    box-shadow: 0 12px 24px rgba(223, 3, 3, .22);
}

.dc-button--secondary {
    border-color: #cfd6e2;
    color: var(--dc-ink) !important;
    background: var(--dc-white);
}

.dc-button--light {
    color: var(--dc-accent-dark) !important;
    background: var(--dc-white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .17);
}

.dc-button:hover {
    transform: translateY(-2px);
}

.dc-button--primary:hover {
    box-shadow: 0 17px 31px rgba(223, 3, 3, .3);
}

.dc-button:focus-visible {
    outline: 3px solid #111827;
    outline-offset: 3px;
}

.dc-section {
    padding: clamp(54px, 7vw, 88px) 0;
}

.dc-section--soft {
    background: var(--dc-soft);
}

.dc-section--dark {
    color: rgba(255, 255, 255, .86);
    background:
        radial-gradient(circle at 90% 12%, rgba(223, 3, 3, .3), transparent 30%),
        var(--dc-dark);
}

.dc-section--dark h2,
.dc-section--dark .dc-eyebrow {
    color: var(--dc-white);
}

.dc-section--dark .dc-eyebrow::before {
    background: #ff6262;
}

.dc-section__header {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.dc-section__header h2,
.dc-split h2,
.dc-payment-panel h2,
.dc-trial h2 {
    font-size: clamp(1.75rem, 3.3vw, 3rem);
}

.dc-section__header p {
    max-width: 820px;
    margin: 15px auto 0;
}

.dc-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dc-step-card {
    display: flex;
    gap: 18px;
    padding: 27px 24px;
    border: 1px solid var(--dc-line);
    border-radius: 18px;
    background: var(--dc-white);
}

.dc-step-card__number {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dc-white);
    background: var(--dc-accent);
    font-size: .95rem;
    font-weight: 800;
}

.dc-device-line {
    max-width: 920px;
    margin: 28px auto 0;
    padding: 14px 19px;
    border: 1px solid #d8dee9;
    border-radius: 12px;
    color: #38455a;
    background: #fff;
    font-weight: 650;
    line-height: 1.6;
    text-align: center;
}

.dc-content-grid,
.dc-plan-grid,
.dc-review-grid {
    display: grid;
    gap: 20px;
}

.dc-content-grid--four,
.dc-plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dc-content-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dc-content-card {
    position: relative;
    min-height: 100%;
    padding: 27px 23px;
}

.dc-content-card__check {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    font-size: .85rem;
}

.dc-content-card--numbered {
    overflow: hidden;
    padding-top: 62px;
}

.dc-content-card__number,
.dc-plan-card__number {
    color: rgba(223, 3, 3, .16);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.dc-content-card__number {
    position: absolute;
    top: 17px;
    right: 20px;
}

.dc-split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.dc-split__intro p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    line-height: 1.75;
}

.dc-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dc-check-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .06);
    line-height: 1.55;
}

.dc-check-list .fa {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #ff6666;
}

.dc-review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dc-review-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 24px;
}

.dc-review-card blockquote {
    margin: 0;
}

.dc-review-card blockquote p {
    margin: 0;
    color: #344054;
    line-height: 1.7;
}

.dc-review-card__quote {
    display: block;
    height: 35px;
    color: var(--dc-accent);
    font-family: Georgia, serif;
    font-size: 3.3rem;
    line-height: 1;
}

.dc-review-card figcaption {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.dc-review-card figcaption img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.dc-review-card figcaption span {
    display: grid;
    gap: 2px;
}

.dc-review-card figcaption strong {
    color: var(--dc-ink);
}

.dc-review-card figcaption small {
    color: var(--dc-muted);
}

.dc-trial {
    padding: clamp(50px, 7vw, 84px) 0;
    background: var(--dc-soft);
}

.dc-trial__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 38px;
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 24px;
    color: rgba(255, 255, 255, .82);
    background:
        radial-gradient(circle at 95% 0%, rgba(255, 255, 255, .13), transparent 35%),
        linear-gradient(135deg, var(--dc-accent-dark), #d90d0d);
    box-shadow: 0 22px 45px rgba(169, 0, 0, .2);
}

.dc-trial .dc-eyebrow,
.dc-trial h2 {
    color: var(--dc-white);
}

.dc-trial .dc-eyebrow::before {
    background: var(--dc-white);
}

.dc-trial p {
    max-width: 800px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

.dc-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.dc-chip-list li {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    font-size: .85rem;
    font-weight: 700;
}

.dc-plan-card {
    position: relative;
    overflow: hidden;
    padding: 26px 22px;
}

.dc-plan-card__number {
    display: block;
    margin-bottom: 12px;
}

.dc-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 25px;
    align-items: center;
    margin-top: 28px;
    padding: 25px 27px;
    border: 1px solid #f0c5c5;
    border-radius: 16px;
    background: #fff7f7;
}

.dc-payment-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(26px, 5vw, 48px);
    border: 1px solid var(--dc-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .08);
}

.dc-payment-panel__icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: var(--dc-accent);
    font-size: 1.25rem;
}

.dc-payment-panel .dc-prose {
    margin-top: 17px;
}

.dc-conversion-label,
.dc-section-note {
    margin: 25px 0 14px;
    color: var(--dc-ink);
    font-weight: 750;
    text-align: center;
}

.dc-conversion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
    max-width: 900px;
    margin: 0 auto;
}

.dc-conversion-card {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 23px;
    text-align: center;
}

.dc-conversion-card dt {
    color: var(--dc-accent-dark);
    font-size: 1.15rem;
    font-weight: 850;
}

.dc-conversion-card dd {
    margin: 0;
    color: var(--dc-muted);
    font-weight: 700;
}

.dc-section-note {
    margin-bottom: 0;
    color: var(--dc-accent-dark);
}

@media (max-width: 1199px) {
    .dc-feature-grid,
    .dc-content-grid--four,
    .dc-plan-grid,
    .dc-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .dc-step-grid,
    .dc-content-grid--three {
        grid-template-columns: 1fr;
    }

    .dc-split {
        grid-template-columns: 1fr;
    }

    .dc-trial__panel,
    .dc-note {
        grid-template-columns: 1fr;
    }

    .dc-trial__panel > .dc-button,
    .dc-note > .dc-button {
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .dc-hero {
        padding: 45px 0 58px;
    }

    .dc-feature-grid,
    .dc-content-grid--four,
    .dc-plan-grid,
    .dc-review-grid,
    .dc-check-list,
    .dc-conversion-grid {
        grid-template-columns: 1fr;
    }

    .dc-actions,
    .dc-actions .dc-button,
    .dc-trial__panel > .dc-button,
    .dc-note > .dc-button {
        width: 100%;
    }

    .dc-step-card,
    .dc-payment-panel {
        grid-template-columns: 1fr;
    }

    .dc-step-card {
        display: grid;
    }

    .dc-payment-panel__icon {
        width: 50px;
        height: 50px;
    }

    .dc-trial__panel {
        padding: 28px 21px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .doc-commerce .dc-button {
        transition: none;
    }

    .doc-commerce .dc-button:hover {
        transform: none;
    }
}
