.dpt-container {
    font-family: var(--e-global-typography-primary-font-family, sans-serif);
    color: #fff;
    padding: 20px;
    background-color: #0b0f19;
}
.dpt-header-main {
    text-align: center;
    margin-bottom: 50px;
}
.dpt-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}
.dpt-highlight {
    color: #00E6A7;
}
.dpt-subtitle {
    color: #a0aec0;
    font-size: 16px;
}
.dpt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
.dpt-card {
    background-color: #151a28;
    border: 1px solid #2d3748;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.dpt-featured {
    border-color: #00E6A7;
    box-shadow: 0 0 30px rgba(0, 230, 167, 0.1);
}
.dpt-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00E6A7;
    color: #0b0f19;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dpt-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #1f2739;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #a0aec0;
}
.dpt-icon-wrapper i {
    font-size: 24px;
}
.dpt-icon-wrapper svg {
    width: 24px;
    height: 24px;
}
.dpt-icon-featured {
    background-color: #0b2420;
    color: #00E6A7;
}
.dpt-header {
    margin-bottom: 30px;
}
.dpt-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
}
.dpt-desc {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 65px;
}
.dpt-price-wrap {
    display: flex;
    align-items: flex-start;
}
.dpt-currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}
.dpt-price {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}
.dpt-meta-box {
    background-color: #111520;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}
.dpt-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2d3748;
}
.dpt-meta-val {
    font-weight: 700;
    color: #fff;
}
.dpt-meta-col {
    display: flex;
    flex-direction: column;
    color: #a0aec0;
    font-size: 14px;
    gap: 10px;
}
.dpt-toggle-wrap {
    display: flex;
    gap: 10px;
}
.dpt-toggle-btn {
    flex: 1;
    background: transparent;
    border: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.dpt-toggle-btn:hover {
    color: #fff;
}
.dpt-toggle-btn.active {
    border-color: #00E6A7;
    color: #00E6A7;
}
.dpt-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}
.dpt-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #e2e8f0;
}
.dpt-check-icon {
    margin-right: 12px;
    display: flex;
    color: #00E6A7;
}
.dpt-btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
    text-decoration: none;
}
.dpt-btn-outline {
    background: #0b0f19;
    color: #fff;
}
.dpt-btn-outline:hover {
    background: #1f2739;
    color: #fff;
}
.dpt-btn-primary {
    background: #00E6A7;
    color: #0b0f19;
}
.dpt-btn-primary:hover {
    background: #00c78f;
    color: #0b0f19;
}
.dpt-footer {
    text-align: center;
    margin-top: 40px;
    color: #a0aec0;
    font-size: 14px;
}
